aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorDave Barach <dave@barachs.net>2019-03-22 08:50:29 -0400
committerDamjan Marion <dmarion@me.com>2019-03-22 17:29:43 +0000
commitb757d1a7f5800b303ea930c6b1ae6224f463de3a (patch)
tree5287f5a63d316010e24fe9f4c91e98c5a3352dab /Makefile
parentaf73eda08059f0168738d63c29ab09e0b8cf211c (diff)
add a "make test-gcov" target
add a line to "make help" Change-Id: I94c9e54832e959f35ee28adc1b37091c1473f687 Signed-off-by: Dave Barach <dave@barachs.net>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 17a69bab42d..6fba104ad96 100644
--- a/Makefile
+++ b/Makefile
@@ -194,6 +194,7 @@ help:
@echo " test-debug - build and run (basic) functional tests (debug build)"
@echo " test-all - build and run (all) functional tests"
@echo " test-all-debug - build and run (all) functional tests (debug build)"
+ @echo " test-gcov - build and run functional tests (gcov build)"
@echo " test-shell - enter shell with test environment"
@echo " test-shell-debug - enter shell with test environment (debug build)"
@echo " test-wipe - wipe files generated by unit tests"
@@ -402,6 +403,9 @@ test:
test-debug:
$(call test,vpp,vpp_debug,test)
+test-gcov:
+ $(call test,vpp,vpp_gcov,test)
+
test-all:
$(if $(filter-out $(3),retest),make -C $(BR) PLATFORM=vpp TAG=vpp vom-install,)
$(eval EXTENDED_TESTS=yes)