summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile5
-rw-r--r--test/Makefile2
2 files changed, 6 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 7007ac8a598..6dd2fc2e3fe 100644
--- a/Makefile
+++ b/Makefile
@@ -330,7 +330,7 @@ wipe-release: test-wipe $(BR)/.deps.ok
rebuild-release: wipe-release build-release
-export VPP_PYTHON_PREFIX=$(BR)/python
+export VPP_PYTHON_PREFIX ?= $(BR)/python
libexpand = $(subst $(subst ,, ),:,$(foreach lib,$(1),$(BR)/install-$(2)-native/vpp/$(lib)/$(3)))
@@ -377,6 +377,9 @@ test-shell:
test-shell-debug:
$(call test,vpp,vpp_debug,shell)
+test-dep:
+ @make -C test test-dep
+
test-doc:
@make -C test doc
diff --git a/test/Makefile b/test/Makefile
index 7984e3102da..cbeec79fa34 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -128,6 +128,8 @@ sanity: verify-no-running-vpp
ext:
make -C ext
+test-dep: verify-python-path $(PAPI_INSTALL_DONE)
+
test: verify-python-path $(PAPI_INSTALL_DONE) ext sanity reset
$(call retest-func)