Fix coverity issues in LISP
[vpp.git] / Makefile
index 59f14e3..54b0f29 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -58,6 +58,7 @@ endif
 .PHONY: help bootstrap wipe wipe-release build build-release rebuild rebuild-release
 .PHONY: run run-release debug debug-release build-vat run-vat pkg-deb pkg-rpm
 .PHONY: ctags cscope plugins plugins-release build-vpp-api
+.PHONY: test test-debug retest retest-debug
 
 help:
        @echo "Make Targets:"
@@ -75,6 +76,10 @@ help:
        @echo " run-release         - run release binary"
        @echo " debug               - run debug binary with debugger"
        @echo " debug-release       - run release binary with debugger"
+       @echo " test                - build and run functional tests"
+       @echo " test-debug          - build and run functional tests (debug build)"
+       @echo " retest              - run functional tests"
+       @echo " retest-debug        - run functional tests (debug build)"
        @echo " build-vat           - build vpp-api-test tool"
        @echo " build-vpp-api       - build vpp-api"
        @echo " run-vat             - run vpp-api-test tool"
@@ -98,6 +103,7 @@ help:
        @echo "                       startup.conf file is present"
        @echo " GDB=<path>          - gdb binary to use for debugging"
        @echo " PLATFORM=<name>     - target platform. default is vpp"
+       @echo " TEST=<name>         - only run specific test"
        @echo ""
        @echo "Current Argumernt Values:"
        @echo " V            = $(V)"
@@ -182,6 +188,37 @@ plugins-release: $(BR)/.bootstrap.ok
 build-vpp-api: $(BR)/.bootstrap.ok
        $(call make,$(PLATFORM)_debug,vpp-api-install)
 
+PYTHON_PATH=$(BR)/python
+
+define test
+       $(if $(filter-out $(3),retest),make -C $(BR) PLATFORM=$(1) TAG=$(2) vpp-api-install plugins-install vpp-install vpp-api-test-install,)
+       make -C test \
+         VPP_TEST_BIN=$(BR)/install-$(2)-native/vpp/bin/vpp \
+         VPP_TEST_API_TEST_BIN=$(BR)/install-$(2)-native/vpp-api-test/bin/vpp_api_test \
+         VPP_TEST_PLUGIN_PATH=$(BR)/install-$(2)-native/plugins/lib64/vpp_plugins \
+         LD_LIBRARY_PATH=$(BR)/install-$(2)-native/vpp-api/lib64/ \
+         WS_ROOT=$(WS_ROOT) I=$(I) V=$(V) TEST=$(TEST) PYTHON_PATH=$(PYTHON_PATH) $(3)
+endef
+
+test: bootstrap
+       $(call test,vpp_lite,vpp_lite,test)
+
+test-debug: bootstrap
+       $(call test,vpp_lite,vpp_lite_debug,test)
+
+test-doc:
+       make -C $(BR) PLATFORM=vpp_lite TAG=vpp_lite vpp-api-install plugins-install vpp-install vpp-api-test-install
+       make -C test PYTHON_PATH=$(PYTHON_PATH) LD_LIBRARY_PATH=$(BR)/install-vpp_lite-native/vpp-api/lib64/ doc
+
+test-clean:
+       make -C test clean
+
+retest:
+       $(call test,vpp_lite,vpp_lite,retest)
+
+retest-debug:
+       $(call test,vpp_lite,vpp_lite_debug,retest)
+
 STARTUP_DIR ?= $(PWD)
 ifeq ("$(wildcard $(STARTUP_CONF))","")
 define run