Klement Sekera | 277b89c | 2016-10-28 13:20:27 +0200 | [diff] [blame] | 1 | .PHONY: verify-python-path |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 2 | |
Klement Sekera | f413bef | 2017-08-15 07:09:02 +0200 | [diff] [blame] | 3 | VPP_TEST_FAILED_DIR=/tmp/vpp-failed-unittests/ |
| 4 | |
Klement Sekera | 277b89c | 2016-10-28 13:20:27 +0200 | [diff] [blame] | 5 | verify-python-path: |
| 6 | ifndef VPP_PYTHON_PREFIX |
| 7 | $(error VPP_PYTHON_PREFIX is not set) |
| 8 | endif |
| 9 | |
Klement Sekera | b93d142 | 2017-03-02 08:16:20 +0100 | [diff] [blame] | 10 | .PHONY: verify-no-running-vpp |
| 11 | |
| 12 | ifdef VPP_ZOMBIE_NOCHECK |
| 13 | VPP_PIDS= |
| 14 | else |
| 15 | VPP_PIDS=$(shell pgrep -d, -x vpp_main) |
| 16 | endif |
| 17 | |
Klement Sekera | db4e84c | 2017-08-11 10:06:15 +0200 | [diff] [blame] | 18 | ifeq ($(DEBUG),gdb) |
| 19 | FORCE_FOREGROUND=1 |
| 20 | else ifeq ($(DEBUG),gdbserver) |
| 21 | FORCE_FOREGROUND=1 |
Klement Sekera | b90be67 | 2017-10-10 06:44:05 +0200 | [diff] [blame] | 22 | else ifeq ($(DEBUG),core) |
| 23 | FORCE_FOREGROUND=1 |
Klement Sekera | db4e84c | 2017-08-11 10:06:15 +0200 | [diff] [blame] | 24 | else |
| 25 | FORCE_FOREGROUND=0 |
| 26 | endif |
| 27 | |
Klement Sekera | bbfa5fd | 2018-06-27 13:54:32 +0200 | [diff] [blame^] | 28 | ifdef PROFILE_OUTPUT |
| 29 | PROFILE_OUTPUT_OPTS=-o $(PROFILE_OUTPUT) |
| 30 | endif |
| 31 | |
| 32 | ifndef PROFILE_SORT_BY |
| 33 | PROFILE_SORT_BY=cumtime |
| 34 | endif |
| 35 | |
| 36 | ifeq ($(PROFILE),1) |
| 37 | PYTHON_PROFILE_OPTS=-m cProfile $(PROFILE_OUTPUT_OPTS) -s $(PROFILE_SORT_BY) |
| 38 | FORCE_FOREGROUND=1 |
| 39 | endif |
| 40 | |
Klement Sekera | b93d142 | 2017-03-02 08:16:20 +0100 | [diff] [blame] | 41 | verify-no-running-vpp: |
| 42 | @if [ "$(VPP_PIDS)" != "" ]; then \ |
| 43 | echo; \ |
| 44 | echo "*** Existing vpp processes detected (PID(s): $(VPP_PIDS)). Running tests under these conditions is not supported. ***"; \ |
| 45 | echo; \ |
| 46 | ps -fp $(VPP_PIDS);\ |
| 47 | echo; \ |
| 48 | false; \ |
| 49 | fi |
| 50 | |
Klement Sekera | 993e0ed | 2017-03-16 09:14:59 +0100 | [diff] [blame] | 51 | UNITTEST_EXTRA_OPTS= |
| 52 | UNITTEST_FAILFAST_OPTS= |
Klement Sekera | acb9b8e | 2017-02-14 02:55:31 +0100 | [diff] [blame] | 53 | |
| 54 | ifeq ($(FAILFAST),1) |
Klement Sekera | 993e0ed | 2017-03-16 09:14:59 +0100 | [diff] [blame] | 55 | UNITTEST_EXTRA_OPTS=-f |
| 56 | endif |
| 57 | |
| 58 | ifneq ($(EXTERN_TESTS),) |
| 59 | UNITTEST_EXTRA_OPTS=$(UNITTEST_FAILFAST_OPTS) -d $(EXTERN_TESTS) |
Klement Sekera | acb9b8e | 2017-02-14 02:55:31 +0100 | [diff] [blame] | 60 | endif |
| 61 | |
Klement Sekera | ebbaf55 | 2018-02-17 13:41:33 +0100 | [diff] [blame] | 62 | ifeq ($(TEST_DEBUG),1) |
| 63 | VPP_PYTHON_PREFIX:=$(VPP_PYTHON_PREFIX)/debug |
| 64 | PYTHON_EXTRA_DEPENDS=objgraph pympler |
| 65 | else |
| 66 | PYTHON_EXTRA_DEPENDS= |
| 67 | endif |
| 68 | |
Klement Sekera | 277b89c | 2016-10-28 13:20:27 +0200 | [diff] [blame] | 69 | PYTHON_VENV_PATH=$(VPP_PYTHON_PREFIX)/virtualenv |
Neale Ranns | 5b4a020 | 2018-05-01 05:55:59 -0700 | [diff] [blame] | 70 | PYTHON_DEPENDS=$(PYTHON_EXTRA_DEPENDS) faulthandler six scapy==2.4.0 pexpect cryptography subprocess32 cffi git+https://github.com/vpp-dev/py-lispnetworking |
vagrant | 937bf30 | 2017-04-07 01:48:47 +0000 | [diff] [blame] | 71 | SCAPY_SOURCE=$(shell find $(PYTHON_VENV_PATH) -name site-packages) |
| 72 | BUILD_COV_DIR=$(BR)/test-cov |
Klement Sekera | 277b89c | 2016-10-28 13:20:27 +0200 | [diff] [blame] | 73 | |
vagrant | 937bf30 | 2017-04-07 01:48:47 +0000 | [diff] [blame] | 74 | GET_PIP_SCRIPT=$(VPP_PYTHON_PREFIX)/get-pip.py |
Klement Sekera | 9f9d07b | 2016-12-12 09:20:50 +0100 | [diff] [blame] | 75 | PIP_INSTALL_DONE=$(VPP_PYTHON_PREFIX)/pip-install.done |
| 76 | PIP_PATCH_DONE=$(VPP_PYTHON_PREFIX)/pip-patch.done |
| 77 | PAPI_INSTALL_DONE=$(VPP_PYTHON_PREFIX)/papi-install.done |
Neale Ranns | 177bbdc | 2016-11-15 09:46:51 +0000 | [diff] [blame] | 78 | |
Klement Sekera | 9f9d07b | 2016-12-12 09:20:50 +0100 | [diff] [blame] | 79 | PAPI_INSTALL_FLAGS=$(PIP_INSTALL_DONE) $(PIP_PATCH_DONE) $(PAPI_INSTALL_DONE) |
| 80 | |
vagrant | 937bf30 | 2017-04-07 01:48:47 +0000 | [diff] [blame] | 81 | ifeq ($(PYTHON),) |
| 82 | PYTHON_INTERP=python2.7 |
| 83 | else |
| 84 | PYTHON_INTERP=$(PYTHON) |
| 85 | endif |
| 86 | |
| 87 | $(GET_PIP_SCRIPT): |
| 88 | @mkdir -p $(VPP_PYTHON_PREFIX) |
| 89 | @bash -c "cd $(VPP_PYTHON_PREFIX) && curl -O https://bootstrap.pypa.io/get-pip.py" |
| 90 | |
| 91 | $(PIP_INSTALL_DONE): $(GET_PIP_SCRIPT) |
| 92 | @virtualenv $(PYTHON_VENV_PATH) -p $(PYTHON_INTERP) |
| 93 | @bash -c "source $(PYTHON_VENV_PATH)/bin/activate && python $(GET_PIP_SCRIPT)" |
Klement Sekera | 778c276 | 2016-11-08 02:00:28 +0100 | [diff] [blame] | 94 | @bash -c "source $(PYTHON_VENV_PATH)/bin/activate && pip install $(PYTHON_DEPENDS)" |
Neale Ranns | 177bbdc | 2016-11-15 09:46:51 +0000 | [diff] [blame] | 95 | @touch $@ |
| 96 | |
Klement Sekera | 9f9d07b | 2016-12-12 09:20:50 +0100 | [diff] [blame] | 97 | $(PIP_PATCH_DONE): $(PIP_INSTALL_DONE) |
Neale Ranns | 177bbdc | 2016-11-15 09:46:51 +0000 | [diff] [blame] | 98 | @echo --- patching --- |
Dave Wallace | 6f692d6 | 2017-01-26 21:07:10 -0500 | [diff] [blame] | 99 | @sleep 1 # Ensure python recompiles patched *.py files -> *.pyc |
Neale Ranns | 2bc9402 | 2018-02-25 12:27:18 -0800 | [diff] [blame] | 100 | for f in $(CURDIR)/patches/scapy-2.4/*.patch ; do \ |
Neale Ranns | 177bbdc | 2016-11-15 09:46:51 +0000 | [diff] [blame] | 101 | echo Applying patch: $$(basename $$f) ; \ |
| 102 | patch -p1 -d $(SCAPY_SOURCE) < $$f ; \ |
| 103 | done |
| 104 | @touch $@ |
| 105 | |
Klement Sekera | 9f9d07b | 2016-12-12 09:20:50 +0100 | [diff] [blame] | 106 | $(PAPI_INSTALL_DONE): $(PIP_PATCH_DONE) |
Damjan Marion | 37d77e9 | 2016-12-28 15:14:46 +0100 | [diff] [blame] | 107 | @bash -c "source $(PYTHON_VENV_PATH)/bin/activate && cd $(WS_ROOT)/src/vpp-api/python && python setup.py install" |
Neale Ranns | 177bbdc | 2016-11-15 09:46:51 +0000 | [diff] [blame] | 108 | @touch $@ |
| 109 | |
Juraj Sloboda | 0279b29 | 2016-11-16 19:50:24 +0100 | [diff] [blame] | 110 | define retest-func |
Klement Sekera | bbfa5fd | 2018-06-27 13:54:32 +0200 | [diff] [blame^] | 111 | env VPP_TEST_FAILED_DIR=$(VPP_TEST_FAILED_DIR) scripts/setsid_wrapper.sh $(FORCE_FOREGROUND) $(PYTHON_VENV_PATH)/bin/activate python $(PYTHON_PROFILE_OPTS) run_tests.py -d $(TEST_DIR) $(UNITTEST_EXTRA_OPTS) || env VPP_TEST_FAILED_DIR=$(VPP_TEST_FAILED_DIR) COMPRESS_FAILED_TEST_LOGS=$(COMPRESS_FAILED_TEST_LOGS) scripts/compress_failed.sh |
Juraj Sloboda | 0279b29 | 2016-11-16 19:50:24 +0100 | [diff] [blame] | 112 | endef |
| 113 | |
Klement Sekera | c160ae0 | 2017-03-09 08:20:13 +0100 | [diff] [blame] | 114 | .PHONY: sanity |
| 115 | |
Klement Sekera | 41a9e51 | 2017-10-17 07:59:31 +0200 | [diff] [blame] | 116 | ifeq ($(SANITY),no) |
| 117 | SANITY_IMPORT_VPP_PAPI_CMD=true |
| 118 | SANITY_RUN_VPP_CMD=true |
| 119 | else |
| 120 | SANITY_IMPORT_VPP_PAPI_CMD=source $(PYTHON_VENV_PATH)/bin/activate && python sanity_import_vpp_papi.py |
| 121 | SANITY_RUN_VPP_CMD=source $(PYTHON_VENV_PATH)/bin/activate && python sanity_run_vpp.py |
| 122 | endif |
| 123 | |
Klement Sekera | c160ae0 | 2017-03-09 08:20:13 +0100 | [diff] [blame] | 124 | sanity: verify-no-running-vpp |
Klement Sekera | da38715 | 2018-01-24 13:41:50 +0100 | [diff] [blame] | 125 | @sys_req/dev_shm_size.sh |
Klement Sekera | 41a9e51 | 2017-10-17 07:59:31 +0200 | [diff] [blame] | 126 | @bash -c "$(SANITY_IMPORT_VPP_PAPI_CMD) ||\ |
Klement Sekera | c160ae0 | 2017-03-09 08:20:13 +0100 | [diff] [blame] | 127 | (echo \"*******************************************************************\" &&\ |
| 128 | echo \"* Sanity check failed, cannot import vpp_papi\" &&\ |
| 129 | echo \"* to debug: \" &&\ |
| 130 | echo \"* 1. enter test shell: make test-shell\" &&\ |
| 131 | echo \"* 2. execute debugger: gdb python -ex 'run sanity_import_vpp_papi.py'\" &&\ |
| 132 | echo \"*******************************************************************\" &&\ |
| 133 | false)" |
Klement Sekera | 41a9e51 | 2017-10-17 07:59:31 +0200 | [diff] [blame] | 134 | @bash -c "$(SANITY_RUN_VPP_CMD) ||\ |
Klement Sekera | 3747c75 | 2017-04-10 06:30:17 +0200 | [diff] [blame] | 135 | (echo \"*******************************************************************\" &&\ |
| 136 | echo \"* Sanity check failed, cannot run vpp\" &&\ |
| 137 | echo \"*******************************************************************\" &&\ |
| 138 | false)" |
Klement Sekera | c160ae0 | 2017-03-09 08:20:13 +0100 | [diff] [blame] | 139 | |
Klement Sekera | 8f2a4ea | 2017-05-04 06:15:18 +0200 | [diff] [blame] | 140 | .PHONY: ext |
| 141 | ext: |
| 142 | make -C ext |
| 143 | |
Ed Kern | 56ccc23 | 2018-04-02 16:42:48 -0600 | [diff] [blame] | 144 | test-dep: verify-python-path $(PAPI_INSTALL_DONE) |
| 145 | |
Klement Sekera | 8f2a4ea | 2017-05-04 06:15:18 +0200 | [diff] [blame] | 146 | test: verify-python-path $(PAPI_INSTALL_DONE) ext sanity reset |
Juraj Sloboda | 0279b29 | 2016-11-16 19:50:24 +0100 | [diff] [blame] | 147 | $(call retest-func) |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 148 | |
Klement Sekera | c160ae0 | 2017-03-09 08:20:13 +0100 | [diff] [blame] | 149 | retest: verify-python-path sanity reset |
Juraj Sloboda | 0279b29 | 2016-11-16 19:50:24 +0100 | [diff] [blame] | 150 | $(call retest-func) |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 151 | |
Klement Sekera | a86e289 | 2017-03-09 08:01:52 +0100 | [diff] [blame] | 152 | shell: verify-python-path $(PAPI_INSTALL_DONE) |
| 153 | @echo "source $(PYTHON_VENV_PATH)/bin/activate;\ |
| 154 | echo '***';\ |
| 155 | echo VPP_TEST_BUILD_DIR=$(VPP_TEST_BUILD_DIR);\ |
| 156 | echo VPP_TEST_BIN=$(VPP_TEST_BIN);\ |
| 157 | echo VPP_TEST_PLUGIN_PATH=$(VPP_TEST_PLUGIN_PATH);\ |
| 158 | echo VPP_TEST_INSTALL_PATH=$(VPP_TEST_INSTALL_PATH);\ |
Klement Sekera | 47e275b | 2017-03-21 08:21:25 +0100 | [diff] [blame] | 159 | echo EXTERN_TESTS=$(EXTERN_TESTS);\ |
| 160 | echo EXTERN_PLUGINS=$(EXTERN_PLUGINS);\ |
Klement Sekera | cd6cb98 | 2017-05-11 06:55:32 +0200 | [diff] [blame] | 161 | echo EXTERN_COV_DIR=$(EXTERN_COV_DIR);\ |
Klement Sekera | a86e289 | 2017-03-09 08:01:52 +0100 | [diff] [blame] | 162 | echo LD_LIBRARY_PATH=$(LD_LIBRARY_PATH);\ |
| 163 | echo '***';\ |
| 164 | exec </dev/tty" | bash -i |
| 165 | |
Klement Sekera | 277b89c | 2016-10-28 13:20:27 +0200 | [diff] [blame] | 166 | .PHONY: wipe doc |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 167 | |
Neale Ranns | 177bbdc | 2016-11-15 09:46:51 +0000 | [diff] [blame] | 168 | reset: |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 169 | @rm -f /dev/shm/vpp-unittest-* |
| 170 | @rm -rf /tmp/vpp-unittest-* |
Klement Sekera | f413bef | 2017-08-15 07:09:02 +0200 | [diff] [blame] | 171 | @rm -rf $(VPP_TEST_FAILED_DIR) |
| 172 | @mkdir $(VPP_TEST_FAILED_DIR) |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 173 | |
Neale Ranns | 177bbdc | 2016-11-15 09:46:51 +0000 | [diff] [blame] | 174 | wipe: reset |
Klement Sekera | a61d125 | 2017-09-27 06:48:44 +0200 | [diff] [blame] | 175 | @make -C ext clean |
Klement Sekera | 9f9d07b | 2016-12-12 09:20:50 +0100 | [diff] [blame] | 176 | @rm -rf $(PYTHON_VENV_PATH) |
| 177 | @rm -f $(PAPI_INSTALL_FLAGS) |
Neale Ranns | 177bbdc | 2016-11-15 09:46:51 +0000 | [diff] [blame] | 178 | |
Klement Sekera | 6320514 | 2017-02-03 08:18:53 +0100 | [diff] [blame] | 179 | doc: verify-python-path $(PIP_PATCH_DONE) |
vagrant | 937bf30 | 2017-04-07 01:48:47 +0000 | [diff] [blame] | 180 | @virtualenv $(PYTHON_VENV_PATH) -p $(PYTHON_INTERP) |
Klement Sekera | 6320514 | 2017-02-03 08:18:53 +0100 | [diff] [blame] | 181 | @bash -c "source $(PYTHON_VENV_PATH)/bin/activate && pip install sphinx sphinx-rtd-theme" |
Klement Sekera | 277b89c | 2016-10-28 13:20:27 +0200 | [diff] [blame] | 182 | @bash -c "source $(PYTHON_VENV_PATH)/bin/activate && make -C doc WS_ROOT=$(WS_ROOT) BR=$(BR) NO_VPP_PAPI=1 html" |
| 183 | |
Klement Sekera | 9f9d07b | 2016-12-12 09:20:50 +0100 | [diff] [blame] | 184 | .PHONY: wipe-doc |
| 185 | |
Klement Sekera | 277b89c | 2016-10-28 13:20:27 +0200 | [diff] [blame] | 186 | wipe-doc: |
| 187 | @make -C doc wipe BR=$(BR) |
| 188 | |
Klement Sekera | cae7134 | 2018-02-22 14:47:00 +0100 | [diff] [blame] | 189 | cov: wipe-cov reset ext verify-python-path $(PAPI_INSTALL_DONE) |
Juraj Sloboda | 0279b29 | 2016-11-16 19:50:24 +0100 | [diff] [blame] | 190 | @lcov --zerocounters --directory $(VPP_TEST_BUILD_DIR) |
Klement Sekera | cd6cb98 | 2017-05-11 06:55:32 +0200 | [diff] [blame] | 191 | @test -z "$(EXTERN_COV_DIR)" || lcov --zerocounters --directory $(EXTERN_COV_DIR) |
Juraj Sloboda | 0279b29 | 2016-11-16 19:50:24 +0100 | [diff] [blame] | 192 | $(call retest-func) |
| 193 | @mkdir $(BUILD_COV_DIR) |
| 194 | @lcov --capture --directory $(VPP_TEST_BUILD_DIR) --output-file $(BUILD_COV_DIR)/coverage.info |
Klement Sekera | cd6cb98 | 2017-05-11 06:55:32 +0200 | [diff] [blame] | 195 | @test -z "$(EXTERN_COV_DIR)" || lcov --capture --directory $(EXTERN_COV_DIR) --output-file $(BUILD_COV_DIR)/extern-coverage.info |
Juraj Sloboda | 0279b29 | 2016-11-16 19:50:24 +0100 | [diff] [blame] | 196 | @genhtml $(BUILD_COV_DIR)/coverage.info --output-directory $(BUILD_COV_DIR)/html |
Klement Sekera | cd6cb98 | 2017-05-11 06:55:32 +0200 | [diff] [blame] | 197 | @test -z "$(EXTERN_COV_DIR)" || genhtml $(BUILD_COV_DIR)/extern-coverage.info --output-directory $(BUILD_COV_DIR)/extern-html |
Juraj Sloboda | 0279b29 | 2016-11-16 19:50:24 +0100 | [diff] [blame] | 198 | @echo |
| 199 | @echo "Build finished. Code coverage report is in $(BUILD_COV_DIR)/html/index.html" |
Klement Sekera | cd6cb98 | 2017-05-11 06:55:32 +0200 | [diff] [blame] | 200 | @test -z "$(EXTERN_COV_DIR)" || echo "Code coverage report for out-of-tree objects is in $(BUILD_COV_DIR)/extern-html/index.html" |
Juraj Sloboda | 0279b29 | 2016-11-16 19:50:24 +0100 | [diff] [blame] | 201 | |
Klement Sekera | 9f9d07b | 2016-12-12 09:20:50 +0100 | [diff] [blame] | 202 | .PHONY: wipe-cov |
| 203 | |
Juraj Sloboda | 0279b29 | 2016-11-16 19:50:24 +0100 | [diff] [blame] | 204 | wipe-cov: wipe |
| 205 | @rm -rf $(BUILD_COV_DIR) |
| 206 | |
Klement Sekera | 72715ee | 2017-01-17 10:37:05 +0100 | [diff] [blame] | 207 | .PHONY: checkstyle |
| 208 | checkstyle: verify-python-path |
vagrant | 937bf30 | 2017-04-07 01:48:47 +0000 | [diff] [blame] | 209 | @virtualenv $(PYTHON_VENV_PATH) -p $(PYTHON_INTERP) |
Marco Varlese | 767fcb6 | 2018-02-25 11:28:52 +0100 | [diff] [blame] | 210 | @bash -c "source $(PYTHON_VENV_PATH)/bin/activate && pip install pycodestyle" |
Klement Sekera | 72715ee | 2017-01-17 10:37:05 +0100 | [diff] [blame] | 211 | @bash -c "source $(PYTHON_VENV_PATH)/bin/activate &&\ |
Chris Luke | d042194 | 2018-04-10 15:19:54 -0400 | [diff] [blame] | 212 | pycodestyle --show-source --ignore=W504,E126,E241,E226,E305,E704,E741,E722 -v $(WS_ROOT)/test/*.py ||\ |
Klement Sekera | 72715ee | 2017-01-17 10:37:05 +0100 | [diff] [blame] | 213 | (echo \"*******************************************************************\" &&\ |
| 214 | echo \"* Test framework PEP8 compliance check FAILED \" &&\ |
| 215 | echo \"*******************************************************************\" &&\ |
| 216 | false)" |
| 217 | @echo "*******************************************************************" |
| 218 | @echo "* Test framework PEP8 compliance check passed" |
| 219 | @echo "*******************************************************************" |
| 220 | |
Klement Sekera | 277b89c | 2016-10-28 13:20:27 +0200 | [diff] [blame] | 221 | help: |
| 222 | @echo "Running tests:" |
| 223 | @echo "" |
Klement Sekera | 8713493 | 2017-03-07 11:39:27 +0100 | [diff] [blame] | 224 | @echo " test - build and run (basic) functional tests" |
| 225 | @echo " test-debug - build and run (basic) functional tests (debug build)" |
| 226 | @echo " test-all - build and run (all) functional tests" |
| 227 | @echo " test-all-debug - build and run (all) functional tests (debug build)" |
Klement Sekera | 277b89c | 2016-10-28 13:20:27 +0200 | [diff] [blame] | 228 | @echo " retest - run functional tests" |
| 229 | @echo " retest-debug - run functional tests (debug build)" |
Juraj Sloboda | 0279b29 | 2016-11-16 19:50:24 +0100 | [diff] [blame] | 230 | @echo " test-wipe - wipe (temporary) files generated by unit tests" |
Klement Sekera | a86e289 | 2017-03-09 08:01:52 +0100 | [diff] [blame] | 231 | @echo " test-shell - enter shell with test environment" |
| 232 | @echo " test-shell-debug - enter shell with test environment (debug build)" |
Klement Sekera | 277b89c | 2016-10-28 13:20:27 +0200 | [diff] [blame] | 233 | @echo "" |
| 234 | @echo "Arguments controlling test runs:" |
| 235 | @echo " V=[0|1|2] - set test verbosity level" |
Klement Sekera | a3d933c | 2017-11-06 09:46:00 +0100 | [diff] [blame] | 236 | @echo " CACHE_OUTPUT=[0|1] - cache VPP stdout/stderr and log as one block after test finishes (default: 1)" |
Klement Sekera | acb9b8e | 2017-02-14 02:55:31 +0100 | [diff] [blame] | 237 | @echo " FAILFAST=[0|1] - fail fast if 1, complete all tests if 0" |
Neale Ranns | f051072 | 2018-01-31 11:35:41 -0800 | [diff] [blame] | 238 | @echo " TIMEOUT=<timeout> - fail test suite if any single test takes longer than <timeout> (in seconds) to finish" |
Klement Sekera | df2b980 | 2017-10-05 10:26:03 +0200 | [diff] [blame] | 239 | @echo " RETRIES=<n> - retry failed tests <n> times" |
Klement Sekera | 277b89c | 2016-10-28 13:20:27 +0200 | [diff] [blame] | 240 | @echo " DEBUG=<type> - set VPP debugging kind" |
| 241 | @echo " DEBUG=core - detect coredump and load it in gdb on crash" |
| 242 | @echo " DEBUG=gdb - allow easy debugging by printing VPP PID " |
| 243 | @echo " and waiting for user input before running " |
| 244 | @echo " and tearing down a testcase" |
| 245 | @echo " DEBUG=gdbserver - run gdb inside a gdb server, otherwise " |
| 246 | @echo " same as above" |
| 247 | @echo " STEP=[yes|no] - ease debugging by stepping through a testcase " |
Klement Sekera | 41a9e51 | 2017-10-17 07:59:31 +0200 | [diff] [blame] | 248 | @echo " SANITY=[yes|no] - perform sanity import of vpp-api/sanity vpp run before running tests (default: yes)" |
Dave Wallace | 05e4f9b | 2018-03-02 13:33:45 -0500 | [diff] [blame] | 249 | @echo " EXTENDED_TESTS=[1|y] - run extended tests" |
Klement Sekera | 104543f | 2017-02-03 07:29:43 +0100 | [diff] [blame] | 250 | @echo " TEST=<filter> - filter the set of tests:" |
| 251 | @echo " by file-name - only run tests from specified file, e.g. TEST=test_bfd selects all tests from test_bfd.py" |
| 252 | @echo " by file-suffix - same as file-name, but 'test_' is omitted e.g. TEST=bfd selects all tests from test_bfd.py" |
| 253 | @echo " by wildcard - wildcard filter is <file>.<class>.<test function>, each can be replaced by '*'" |
| 254 | @echo " e.g. TEST='test_bfd.*.*' is equivalent to above example of filter by file-name" |
| 255 | @echo " TEST='bfd.*.*' is equivalent to above example of filter by file-suffix" |
| 256 | @echo " TEST='bfd.BFDAPITestCase.*' selects all tests from test_bfd.py which are part of BFDAPITestCase class" |
| 257 | @echo " TEST='bfd.BFDAPITestCase.test_add_bfd' selects a single test named test_add_bfd from test_bfd.py/BFDAPITestCase" |
| 258 | @echo " TEST='*.*.test_add_bfd' selects all test functions named test_add_bfd from all files/classes" |
Klement Sekera | 277b89c | 2016-10-28 13:20:27 +0200 | [diff] [blame] | 259 | @echo "" |
Klement Sekera | b93d142 | 2017-03-02 08:16:20 +0100 | [diff] [blame] | 260 | @echo " VPP_ZOMBIE_NOCHECK=1 - skip checking for vpp (zombie) processes (CAUTION)" |
Klement Sekera | 80a7f0a | 2017-03-02 11:27:11 +0100 | [diff] [blame] | 261 | @echo " COREDUMP_SIZE=<size> - pass <size> as unix { coredump-size <size> } argument to vpp" |
| 262 | @echo " e.g. COREDUMP_SIZE=4g" |
| 263 | @echo " COREDUMP_SIZE=unlimited" |
Klement Sekera | 47e275b | 2017-03-21 08:21:25 +0100 | [diff] [blame] | 264 | @echo " EXTERN_TESTS=<path> - path to out-of-tree test_<name>.py files containing test cases" |
| 265 | @echo " EXTERN_PLUGINS=<path>- path to out-of-tree plugins to be loaded by vpp under test" |
Klement Sekera | cd6cb98 | 2017-05-11 06:55:32 +0200 | [diff] [blame] | 266 | @echo " EXTERN_COV_DIR=<path>- path to out-of-tree prefix, where source, object and .gcda files can be found for coverage report" |
Klement Sekera | b93d142 | 2017-03-02 08:16:20 +0100 | [diff] [blame] | 267 | @echo "" |
Klement Sekera | bbfa5fd | 2018-06-27 13:54:32 +0200 | [diff] [blame^] | 268 | @echo " PROFILE=1 - enable profiling of test framework via cProfile module" |
| 269 | @echo " PROFILE_SORT_BY=opt - sort profiling report by opt - consult cProfile documentation for possible values (default: cumtime)" |
| 270 | @echo " PROFILE_OUTPUT=file - output profiling info to file - use absolute path (default: stdout)" |
| 271 | @echo "" |
Klement Sekera | ebbaf55 | 2018-02-17 13:41:33 +0100 | [diff] [blame] | 272 | @echo " TEST_DEBUG=1 - turn on debugging of the test framework itself (expert)" |
| 273 | @echo "" |
Klement Sekera | 277b89c | 2016-10-28 13:20:27 +0200 | [diff] [blame] | 274 | @echo "Creating test documentation" |
| 275 | @echo " test-doc - generate documentation for test framework" |
Juraj Sloboda | 0279b29 | 2016-11-16 19:50:24 +0100 | [diff] [blame] | 276 | @echo " test-wipe-doc - wipe documentation for test framework" |
| 277 | @echo "" |
| 278 | @echo "Creating test code coverage report" |
| 279 | @echo " test-cov - generate code coverage report for test framework" |
| 280 | @echo " test-wipe-cov - wipe code coverage report for test framework" |
Klement Sekera | 277b89c | 2016-10-28 13:20:27 +0200 | [diff] [blame] | 281 | @echo "" |
Klement Sekera | 72715ee | 2017-01-17 10:37:05 +0100 | [diff] [blame] | 282 | @echo "Verifying code-style" |
| 283 | @echo " test-checkstyle - check PEP8 compliance" |
| 284 | @echo "" |