diff options
author | Klement Sekera <ksekera@cisco.com> | 2018-11-15 14:27:04 +0100 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2018-11-23 15:36:15 +0000 |
commit | e61ad8d6c49d6c2fb30d29b446f6e6603c8b1de6 (patch) | |
tree | cc0f6abd0374030dc740b4caf0ddef26aebd6749 /test/Makefile | |
parent | ccfead6e12f5d5a124e1e279a5b74361e00e2de8 (diff) |
make test: remove test-ext, fix test*-all targets
build extended binaries, vom & friends when test*-all targets are run,
remove unneeded test-ext target (which is semantically same as
test-debug-all)
Change-Id: Id710e061fdc93e286a4ed91be6a0cdcf75a2dafd
Signed-off-by: Klement Sekera <ksekera@cisco.com>
Diffstat (limited to 'test/Makefile')
-rw-r--r-- | test/Makefile | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/test/Makefile b/test/Makefile index 5f456e172c4..5b4a965482c 100644 --- a/test/Makefile +++ b/test/Makefile @@ -162,14 +162,13 @@ sanity: verify-no-running-vpp .PHONY: ext ext: - make -C ext + @if [ "$(EXTENDED_TESTS)" = "yes" ]; then\ + make -C ext;\ + fi test-dep: verify-python-path $(PAPI_INSTALL_DONE) -test: verify-python-path $(PAPI_INSTALL_DONE) sanity reset - $(call retest-func) - -test-ext: verify-python-path $(PAPI_INSTALL_DONE) ext sanity reset +test: verify-python-path $(PAPI_INSTALL_DONE) ext sanity reset $(call retest-func) retest: verify-python-path sanity reset |