diff options
author | Pierre Pfister <ppfister@cisco.com> | 2016-10-07 16:30:03 +0100 |
---|---|---|
committer | Damjan Marion <dmarion.lists@gmail.com> | 2016-10-07 21:34:59 +0000 |
commit | cd8e318a7656c84ab1ff02090bf1616ca7513fdc (patch) | |
tree | 7dbb2877ceccc77b72687548df21710c249464f8 /Makefile | |
parent | 3ee44040c66cbe47ff292ac7fb0badccbe2afe6d (diff) |
Test Infra: Add plugin support
This patch adds plugin path to vpp commandline arguments
when 'make test' is run.
Hence, test cases can test plugins.
Change-Id: Ib90efa1f62e03b45b84533c49c7a5d040aa8cddf
Signed-off-by: Pierre Pfister <ppfister@cisco.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -192,6 +192,7 @@ define test @make -C test \ VPP_TEST_BIN=$(BR)/install-$(1)-native/vpp/bin/vpp \ VPP_TEST_API_TEST_BIN=$(BR)/install-$(1)-native/vpp-api-test/bin/vpp_api_test \ + VPP_TEST_PLUGIN_PATH=$(BR)/install-$(1)-native/plugins/lib64/vpp_plugins \ V=$(V) TEST=$(TEST) endef @@ -199,14 +200,14 @@ test: ifeq ($(OS_ID),ubuntu) @sudo -E apt-get $(CONFIRM) $(FORCE) install python-dev python-scapy endif - @make -C $(BR) PLATFORM=vpp_lite TAG=vpp_lite vpp-install vpp-api-test-install + @make -C $(BR) PLATFORM=vpp_lite TAG=vpp_lite plugins-install vpp-install vpp-api-test-install $(call test,vpp_lite) test-debug: ifeq ($(OS_ID),ubuntu) @sudo -E apt-get $(CONFIRM) $(FORCE) install python-dev python-scapy endif - @make -C $(BR) PLATFORM=vpp_lite TAG=vpp_lite_debug vpp-install vpp-api-test-install + @make -C $(BR) PLATFORM=vpp_lite TAG=vpp_lite_debug plugins-install vpp-install vpp-api-test-install $(call test,vpp_lite_debug) retest: |