blob: 514cb27fc142ddd49d216a5781a95d46f005702d [file] [log] [blame]
BenoƮt Ganne9fb6d402019-04-15 15:28:21 +02001ASAN_OPTIONS?=verify_asan_link_order=0:detect_leaks=0:abort_on_error=1:unmap_shadow_on_exit=1:disable_coredump=0
2export ASAN_OPTIONS
3
Dave Wallacef0797d12019-11-15 17:29:15 -05004.PHONY: verify-env
5verify-env:
6ifndef WS_ROOT
7 $(error WS_ROOT is not set)
8endif
9ifndef BR
10 $(error BR is not set)
11endif
Klement Sekerab8c72a42018-11-08 11:21:39 +010012ifndef TEST_DIR
13 $(error TEST_DIR is not set)
Klement Sekera277b89c2016-10-28 13:20:27 +020014endif
15
Dave Wallacef0797d12019-11-15 17:29:15 -050016export TEST_BR = $(BR)/build-test
17export TEST_DOC_BR = $(TEST_BR)/doc
18export BUILD_TEST_SRC = $(TEST_BR)/src
19FAILED_DIR=/tmp/vpp-failed-unittests/
20PLUGIN_TEST_DIRS=$(shell find $(PLUGIN_SRC_DIR) -type d -name test -exec echo -n " -d {}" \;)
21CORE_TEST_DIRS=$(shell find $(WS_ROOT)/src -not \( -path $(INTERN_PLUGIN_SRC_DIR) -prune \) -type d -name test -exec echo -n " -d {}" \;)
22VPP_TEST_DIRS=$(shell ls -d $(TEST_DIR)$(PLUGIN_TEST_DIRS)$(CORE_TEST_DIRS) $(EXTERN_TESTS))
23VPP_TEST_SRC=$(shell for dir in $(VPP_TEST_DIRS) ; do ls $$dir/*.py; done)
24
Klement Sekerab93d1422017-03-02 08:16:20 +010025.PHONY: verify-no-running-vpp
26
27ifdef VPP_ZOMBIE_NOCHECK
28VPP_PIDS=
29else
30VPP_PIDS=$(shell pgrep -d, -x vpp_main)
31endif
32
Klement Sekeradb4e84c2017-08-11 10:06:15 +020033ifeq ($(DEBUG),gdb)
34FORCE_FOREGROUND=1
35else ifeq ($(DEBUG),gdbserver)
36FORCE_FOREGROUND=1
Dave Wallace24564332019-10-21 02:53:14 +000037else ifeq ($(DEBUG),gdb-all)
38FORCE_FOREGROUND=1
39else ifeq ($(DEBUG),gdbserver-all)
40FORCE_FOREGROUND=1
Klement Sekerab90be672017-10-10 06:44:05 +020041else ifeq ($(DEBUG),core)
42FORCE_FOREGROUND=1
juraj.linkes184870a2018-07-16 14:22:01 +020043else ifeq ($(STEP),yes)
44FORCE_FOREGROUND=1
45else ifeq ($(STEP),y)
46FORCE_FOREGROUND=1
47else ifeq ($(STEP),1)
48FORCE_FOREGROUND=1
Klement Sekeradb4e84c2017-08-11 10:06:15 +020049else
50FORCE_FOREGROUND=0
51endif
52
Klement Sekerabbfa5fd2018-06-27 13:54:32 +020053ifdef PROFILE_OUTPUT
54PROFILE_OUTPUT_OPTS=-o $(PROFILE_OUTPUT)
55endif
56
57ifndef PROFILE_SORT_BY
58PROFILE_SORT_BY=cumtime
59endif
60
61ifeq ($(PROFILE),1)
62PYTHON_PROFILE_OPTS=-m cProfile $(PROFILE_OUTPUT_OPTS) -s $(PROFILE_SORT_BY)
63FORCE_FOREGROUND=1
64endif
65
Klement Sekerab93d1422017-03-02 08:16:20 +010066verify-no-running-vpp:
67 @if [ "$(VPP_PIDS)" != "" ]; then \
68 echo; \
69 echo "*** Existing vpp processes detected (PID(s): $(VPP_PIDS)). Running tests under these conditions is not supported. ***"; \
70 echo; \
71 ps -fp $(VPP_PIDS);\
72 echo; \
73 false; \
74 fi
75
Klement Sekera993e0ed2017-03-16 09:14:59 +010076UNITTEST_EXTRA_OPTS=
77UNITTEST_FAILFAST_OPTS=
Klement Sekeraacb9b8e2017-02-14 02:55:31 +010078
79ifeq ($(FAILFAST),1)
Klement Sekera993e0ed2017-03-16 09:14:59 +010080UNITTEST_EXTRA_OPTS=-f
81endif
82
83ifneq ($(EXTERN_TESTS),)
84UNITTEST_EXTRA_OPTS=$(UNITTEST_FAILFAST_OPTS) -d $(EXTERN_TESTS)
Klement Sekeraacb9b8e2017-02-14 02:55:31 +010085endif
86
Dave Wallacef0797d12019-11-15 17:29:15 -050087VENV_PATH=$(TEST_BR)/venv
Klement Sekerab8c72a42018-11-08 11:21:39 +010088
Klement Sekeraebbaf552018-02-17 13:41:33 +010089ifeq ($(TEST_DEBUG),1)
Dave Wallacef0797d12019-11-15 17:29:15 -050090VENV_RUN_DIR:=$(VENV_PATH)/run-debug
Klement Sekeraebbaf552018-02-17 13:41:33 +010091else
Dave Wallacef0797d12019-11-15 17:29:15 -050092VENV_RUN_DIR:=$(VENV_PATH)/run
Klement Sekeraebbaf552018-02-17 13:41:33 +010093endif
94
vagrant937bf302017-04-07 01:48:47 +000095ifeq ($(PYTHON),)
Ole Troan6e6ad642020-02-04 13:28:13 +010096PYTHON_INTERP=python3
vagrant937bf302017-04-07 01:48:47 +000097else
98PYTHON_INTERP=$(PYTHON)
99endif
100
Aloys Augustin28fa8cb2019-06-21 17:04:29 +0200101PYTHON_VERSION=$(shell $(PYTHON_INTERP) -c 'import sys; print(sys.version_info.major)')
Aloys Augustinef29fa42020-05-25 18:07:24 +0200102PIP_VERSION=20.1.1
103# Keep in sync with requirements.txt
104PIP_TOOLS_VERSION=5.1.2
Aloys Augustin28fa8cb2019-06-21 17:04:29 +0200105PYTHON_DEPENDS=requirements-$(PYTHON_VERSION).txt
Ole Troan6e6ad642020-02-04 13:28:13 +0100106SCAPY_SOURCE=$(shell find $(VENV_PATH)/lib/python* -name site-packages)
Dave Wallacef0797d12019-11-15 17:29:15 -0500107BUILD_COV_DIR=$(TEST_BR)/coverage
Aloys Augustin28fa8cb2019-06-21 17:04:29 +0200108
Aloys Augustinef29fa42020-05-25 18:07:24 +0200109PIP_TOOLS_INSTALL_DONE=$(VENV_RUN_DIR)/pip-tools-install-$(PYTHON_VERSION)-$(PIP_TOOLS_VERSION).done
110PIP_INSTALL_DONE=$(VENV_RUN_DIR)/pip-install-$(PYTHON_VERSION)-$(PIP_VERSION).done
Dave Wallacef0797d12019-11-15 17:29:15 -0500111PIP_PATCH_DONE=$(VENV_RUN_DIR)/pip-patch-$(PYTHON_VERSION).done
112PAPI_INSTALL_DONE=$(VENV_RUN_DIR)/papi-install-$(PYTHON_VERSION).done
113PAPI_PYTHON_SRC_DIR=$(WS_ROOT)/src/vpp-api/python
114PAPI_WIPE_DIST=$(WS_ROOT)/src/vpp-api/vapi/__pycache__ \
115 $(PAPI_PYTHON_SRC_DIR)/build \
116 $(PAPI_PYTHON_SRC_DIR)/vpp_papi.egg-info \
117 $(PAPI_PYTHON_SRC_DIR)/vpp_papi/__pycache__
Aloys Augustin28fa8cb2019-06-21 17:04:29 +0200118
Aloys Augustin28fa8cb2019-06-21 17:04:29 +0200119$(PIP_TOOLS_INSTALL_DONE):
120 @rm -rf $(VENV_PATH)
Dave Wallacef0797d12019-11-15 17:29:15 -0500121 @mkdir -p $(VENV_RUN_DIR)
Klement Sekerab8c72a42018-11-08 11:21:39 +0100122 @virtualenv $(VENV_PATH) -p $(PYTHON_INTERP)
Aloys Augustin8adb92b2019-07-23 15:19:28 +0200123 # pip version pinning
124 @bash -c "source $(VENV_PATH)/bin/activate && \
125 $(PYTHON_INTERP) -m pip install pip===$(PIP_VERSION)"
Aloys Augustin28fa8cb2019-06-21 17:04:29 +0200126 @bash -c "source $(VENV_PATH)/bin/activate && \
127 $(PYTHON_INTERP) -m pip install pip-tools===$(PIP_TOOLS_VERSION)"
128 @touch $@
129
Aloys Augustin8eca60d2020-06-24 11:33:20 +0200130$(PYTHON_DEPENDS): requirements.txt
Aloys Augustin28fa8cb2019-06-21 17:04:29 +0200131 @bash -c "source $(VENV_PATH)/bin/activate && \
132 CUSTOM_COMPILE_COMMAND='make test-refresh-deps (or update requirements.txt)' \
133 $(PYTHON_INTERP) -m piptools compile -q --generate-hashes requirements.txt --output-file $@"
134
Aloys Augustin8eca60d2020-06-24 11:33:20 +0200135$(PIP_INSTALL_DONE): $(PIP_TOOLS_INSTALL_DONE) $(PYTHON_DEPENDS)
Aloys Augustin28fa8cb2019-06-21 17:04:29 +0200136 @bash -c "source $(VENV_PATH)/bin/activate && \
137 $(PYTHON_INTERP) -m piptools sync $(PYTHON_DEPENDS)"
Neale Ranns177bbdc2016-11-15 09:46:51 +0000138 @touch $@
139
Klement Sekera9f9d07b2016-12-12 09:20:50 +0100140$(PIP_PATCH_DONE): $(PIP_INSTALL_DONE)
Neale Ranns177bbdc2016-11-15 09:46:51 +0000141 @echo --- patching ---
Dave Wallace6f692d62017-01-26 21:07:10 -0500142 @sleep 1 # Ensure python recompiles patched *.py files -> *.pyc
snaramre5d4b8912019-12-13 23:39:35 +0000143 for f in $(CURDIR)/patches/scapy-2.4.3/*.patch ; do \
Neale Ranns177bbdc2016-11-15 09:46:51 +0000144 echo Applying patch: $$(basename $$f) ; \
Aloys Augustin28fa8cb2019-06-21 17:04:29 +0200145 patch --forward -p1 -d $(SCAPY_SOURCE) < $$f ; \
146 retCode=$$?; \
Aloys Augustin8eca60d2020-06-24 11:33:20 +0200147 [ $$retCode -gt 1 ] && exit $$retCode; \
Aloys Augustin28fa8cb2019-06-21 17:04:29 +0200148 done; \
149 touch $@
Neale Ranns177bbdc2016-11-15 09:46:51 +0000150
Klement Sekera9f9d07b2016-12-12 09:20:50 +0100151$(PAPI_INSTALL_DONE): $(PIP_PATCH_DONE)
Dave Wallacef0797d12019-11-15 17:29:15 -0500152 @bash -c "source $(VENV_PATH)/bin/activate && $(PYTHON_INTERP) -m pip install -e $(PAPI_PYTHON_SRC_DIR)"
Neale Ranns177bbdc2016-11-15 09:46:51 +0000153 @touch $@
154
Dave Wallacef0797d12019-11-15 17:29:15 -0500155.PHONY: refresh-deps
Aloys Augustin28fa8cb2019-06-21 17:04:29 +0200156refresh-deps: clean-deps $(PYTHON_DEPENDS)
157
Dave Wallacef0797d12019-11-15 17:29:15 -0500158.PHONY: clean-deps
Aloys Augustin28fa8cb2019-06-21 17:04:29 +0200159clean-deps:
160 @rm -f $(PYTHON_DEPENDS)
161
Dave Wallacef0797d12019-11-15 17:29:15 -0500162INTERN_PLUGIN_SRC_DIR=$(WS_ROOT)/src/plugins
Dave Wallacea43c93f2019-08-22 00:32:29 +0000163ifneq ($(EXTERN_PLUGIN_SRC_DIR),)
164PLUGIN_SRC_DIR=$(EXTERN_PLUGIN_SRC_DIR)
165else
Dave Wallacef0797d12019-11-15 17:29:15 -0500166PLUGIN_SRC_DIR=$(INTERN_PLUGIN_SRC_DIR)
Dave Wallacea43c93f2019-08-22 00:32:29 +0000167endif
Dave Wallacea43c93f2019-08-22 00:32:29 +0000168
Juraj Sloboda0279b292016-11-16 19:50:24 +0100169define retest-func
Dave Wallacef0797d12019-11-15 17:29:15 -0500170@env FORCE_FOREGROUND=$(FORCE_FOREGROUND) FAILED_DIR=$(FAILED_DIR) VENV_PATH=$(VENV_PATH) scripts/setsid_wrapper.sh $(FORCE_FOREGROUND) $(VENV_PATH)/bin/activate $(PYTHON_INTERP) $(PYTHON_PROFILE_OPTS) $(BUILD_TEST_SRC)/run_tests.py -d $(BUILD_TEST_SRC) $(UNITTEST_EXTRA_OPTS) || env FAILED_DIR=$(FAILED_DIR) COMPRESS_FAILED_TEST_LOGS=$(COMPRESS_FAILED_TEST_LOGS) scripts/compress_failed.sh
Juraj Sloboda0279b292016-11-16 19:50:24 +0100171endef
172
Klement Sekerac160ae02017-03-09 08:20:13 +0100173.PHONY: sanity
174
Klement Sekera41a9e512017-10-17 07:59:31 +0200175ifeq ($(SANITY),no)
176SANITY_IMPORT_VPP_PAPI_CMD=true
177SANITY_RUN_VPP_CMD=true
178else
Dave Wallacef0797d12019-11-15 17:29:15 -0500179SANITY_IMPORT_VPP_PAPI_CMD=source $(VENV_PATH)/bin/activate && $(PYTHON_INTERP) $(BUILD_TEST_SRC)/sanity_import_vpp_papi.py
180SANITY_RUN_VPP_CMD=source $(VENV_PATH)/bin/activate && PYTHONPATH=$(BUILD_TEST_SRC) $(PYTHON_INTERP) $(BUILD_TEST_SRC)/sanity_run_vpp.py
Klement Sekera41a9e512017-10-17 07:59:31 +0200181endif
182
juraj.linkes184870a2018-07-16 14:22:01 +0200183ifndef TEST_JOBS
184PARALLEL_ILLEGAL=0
185else ifeq ($(FORCE_FOREGROUND),0)
186PARALLEL_ILLEGAL=0
187else ifeq ($(TEST_JOBS),auto)
188PARALLEL_ILLEGAL=0
189else ifeq ($(TEST_JOBS),1)
190PARALLEL_ILLEGAL=0
191else
192PARALLEL_ILLEGAL=1
193endif
194
Dave Wallacef0797d12019-11-15 17:29:15 -0500195sanity: test-dep verify-no-running-vpp
Klement Sekerada387152018-01-24 13:41:50 +0100196 @sys_req/dev_shm_size.sh
juraj.linkes184870a2018-07-16 14:22:01 +0200197 @bash -c "test $(PARALLEL_ILLEGAL) -eq 0 ||\
198 (echo \"*******************************************************************\" &&\
199 echo \"* Sanity check failed, TEST_JOBS is not 1 or 'auto' and DEBUG, STEP or PROFILE is set\" &&\
200 echo \"*******************************************************************\" &&\
201 false)"
Klement Sekera41a9e512017-10-17 07:59:31 +0200202 @bash -c "$(SANITY_IMPORT_VPP_PAPI_CMD) ||\
Klement Sekerac160ae02017-03-09 08:20:13 +0100203 (echo \"*******************************************************************\" &&\
204 echo \"* Sanity check failed, cannot import vpp_papi\" &&\
205 echo \"* to debug: \" &&\
206 echo \"* 1. enter test shell: make test-shell\" &&\
207 echo \"* 2. execute debugger: gdb python -ex 'run sanity_import_vpp_papi.py'\" &&\
208 echo \"*******************************************************************\" &&\
209 false)"
Klement Sekera41a9e512017-10-17 07:59:31 +0200210 @bash -c "$(SANITY_RUN_VPP_CMD) ||\
Klement Sekera3747c752017-04-10 06:30:17 +0200211 (echo \"*******************************************************************\" &&\
212 echo \"* Sanity check failed, cannot run vpp\" &&\
213 echo \"*******************************************************************\" &&\
214 false)"
Klement Sekerac160ae02017-03-09 08:20:13 +0100215
Dave Wallacef0797d12019-11-15 17:29:15 -0500216.PHONY: ext-test-apps
217ext-test-apps:
218 make -C ext test-apps
Klement Sekera8f2a4ea2017-05-04 06:15:18 +0200219
Dave Wallacef0797d12019-11-15 17:29:15 -0500220$(BUILD_TEST_SRC): verify-env
221 @mkdir -p $@
Neale Ranns02da9262021-01-08 08:43:14 +0000222 @for file in $(VPP_TEST_SRC); do if [ ! -L $$file ] && [ ! -e $(BUILD_TEST_SRC)/$$(basename $$file) ] ; then ln -s $$file $(BUILD_TEST_SRC) ; fi ; done
Ed Kern56ccc232018-04-02 16:42:48 -0600223
Dave Wallacef0797d12019-11-15 17:29:15 -0500224$(FAILED_DIR): reset
225 @mkdir -p $@
226
227.PHONY: test-dep
228test-dep: $(BUILD_TEST_SRC) $(PAPI_INSTALL_DONE) $(FAILED_DIR)
229
230.PHONY: test
231test: test-dep ext-test-apps sanity
Juraj Sloboda0279b292016-11-16 19:50:24 +0100232 $(call retest-func)
Klement Sekeraf62ae122016-10-11 11:47:09 +0200233
Dave Wallacef0797d12019-11-15 17:29:15 -0500234.PHONY: retest
235retest: verify-env sanity $(FAILED_DIR)
Juraj Sloboda0279b292016-11-16 19:50:24 +0100236 $(call retest-func)
Klement Sekeraf62ae122016-10-11 11:47:09 +0200237
Dave Wallacef0797d12019-11-15 17:29:15 -0500238.PHONY: shell
239shell: test-dep
Klement Sekerab8c72a42018-11-08 11:21:39 +0100240 @echo "source $(VENV_PATH)/bin/activate;\
Dave Wallacef0797d12019-11-15 17:29:15 -0500241 cd $(BUILD_TEST_SRC);\
242 export PYTHONPATH=$(BUILD_TEST_SRC);\
Paul Vinciguerrac701e572019-12-19 16:09:43 -0500243 export RND_SEED=$(RND_SEED);\
Klement Sekeraa86e2892017-03-09 08:01:52 +0100244 echo '***';\
Dave Wallacef0797d12019-11-15 17:29:15 -0500245 echo PYTHONPATH=$(BUILD_TEST_SRC);\
Paul Vinciguerrac701e572019-12-19 16:09:43 -0500246 echo RND_SEED=$(RND_SEED);\
Klement Sekera593635d2019-02-07 19:56:50 +0100247 echo VPP_BUILD_DIR=$(VPP_BUILD_DIR);\
248 echo VPP_BIN=$(VPP_BIN);\
249 echo VPP_PLUGIN_PATH=$(VPP_PLUGIN_PATH);\
Dave Barach7d31ab22019-05-08 19:18:18 -0400250 echo VPP_TEST_PLUGIN_PATH=$(VPP_TEST_PLUGIN_PATH);\
Klement Sekera593635d2019-02-07 19:56:50 +0100251 echo VPP_INSTALL_PATH=$(VPP_INSTALL_PATH);\
Klement Sekera47e275b2017-03-21 08:21:25 +0100252 echo EXTERN_TESTS=$(EXTERN_TESTS);\
253 echo EXTERN_PLUGINS=$(EXTERN_PLUGINS);\
Klement Sekeracd6cb982017-05-11 06:55:32 +0200254 echo EXTERN_COV_DIR=$(EXTERN_COV_DIR);\
Klement Sekeraa86e2892017-03-09 08:01:52 +0100255 echo LD_LIBRARY_PATH=$(LD_LIBRARY_PATH);\
256 echo '***';\
257 exec </dev/tty" | bash -i
258
Dave Wallacef0797d12019-11-15 17:29:15 -0500259.PHONY: reset
Neale Ranns177bbdc2016-11-15 09:46:51 +0000260reset:
Klement Sekeraf62ae122016-10-11 11:47:09 +0200261 @rm -f /dev/shm/vpp-unittest-*
262 @rm -rf /tmp/vpp-unittest-*
Dave Wallacef0797d12019-11-15 17:29:15 -0500263 @rm -f /tmp/api_post_mortem.*
Klement Sekerab8c72a42018-11-08 11:21:39 +0100264 @rm -rf $(FAILED_DIR)
Klement Sekeraf62ae122016-10-11 11:47:09 +0200265
Dave Wallacef0797d12019-11-15 17:29:15 -0500266.PHONY: wipe
Neale Ranns177bbdc2016-11-15 09:46:51 +0000267wipe: reset
Klement Sekeraa61d1252017-09-27 06:48:44 +0200268 @make -C ext clean
Klement Sekerab8c72a42018-11-08 11:21:39 +0100269 @rm -rf $(VENV_PATH)
Neale Ranns02da9262021-01-08 08:43:14 +0000270 @rm -rf $(patsubst %,%/__pycache__, $(VPP_TEST_DIRS))
271 @rm -rf $(BUILD_TEST_SRC)
Neale Ranns177bbdc2016-11-15 09:46:51 +0000272
Aloys Augustin1f2e1462020-04-07 15:43:33 +0200273$(TEST_DOC_BR): $(PIP_INSTALL_DONE)
Dave Wallacef0797d12019-11-15 17:29:15 -0500274 @mkdir -p $@
Dave Wallacef0797d12019-11-15 17:29:15 -0500275 @bash -c "source $(VENV_PATH)/bin/activate && make -C doc html"
276
277.PHONY: doc
278doc: $(BUILD_TEST_SRC) $(PIP_PATCH_DONE) $(TEST_DOC_BR)
279 @echo
280 @echo "Test Documentation URL: $(TEST_DOC_BR)/html/index.html"
281 @echo "Run 'make test-wipe-doc test-doc' to rebuild the test docs"
282 @echo
Klement Sekera277b89c2016-10-28 13:20:27 +0200283
Klement Sekera9f9d07b2016-12-12 09:20:50 +0100284.PHONY: wipe-doc
Klement Sekera277b89c2016-10-28 13:20:27 +0200285wipe-doc:
Dave Wallacef0797d12019-11-15 17:29:15 -0500286 @rm -rf $(TEST_DOC_BR)
Klement Sekera277b89c2016-10-28 13:20:27 +0200287
Dave Wallacef0797d12019-11-15 17:29:15 -0500288$(BUILD_COV_DIR):
289 @mkdir -p $@
290
291.PHONY: cov
292cov: wipe-cov test-dep ext $(BUILD_COV_DIR)
Klement Sekera593635d2019-02-07 19:56:50 +0100293 @lcov --zerocounters --directory $(VPP_BUILD_DIR)
Klement Sekeracd6cb982017-05-11 06:55:32 +0200294 @test -z "$(EXTERN_COV_DIR)" || lcov --zerocounters --directory $(EXTERN_COV_DIR)
Juraj Sloboda0279b292016-11-16 19:50:24 +0100295 $(call retest-func)
Klement Sekera593635d2019-02-07 19:56:50 +0100296 @lcov --capture --directory $(VPP_BUILD_DIR) --output-file $(BUILD_COV_DIR)/coverage.info
Klement Sekeracd6cb982017-05-11 06:55:32 +0200297 @test -z "$(EXTERN_COV_DIR)" || lcov --capture --directory $(EXTERN_COV_DIR) --output-file $(BUILD_COV_DIR)/extern-coverage.info
Juraj Sloboda0279b292016-11-16 19:50:24 +0100298 @genhtml $(BUILD_COV_DIR)/coverage.info --output-directory $(BUILD_COV_DIR)/html
Klement Sekeracd6cb982017-05-11 06:55:32 +0200299 @test -z "$(EXTERN_COV_DIR)" || genhtml $(BUILD_COV_DIR)/extern-coverage.info --output-directory $(BUILD_COV_DIR)/extern-html
Juraj Sloboda0279b292016-11-16 19:50:24 +0100300 @echo
301 @echo "Build finished. Code coverage report is in $(BUILD_COV_DIR)/html/index.html"
Klement Sekeracd6cb982017-05-11 06:55:32 +0200302 @test -z "$(EXTERN_COV_DIR)" || echo "Code coverage report for out-of-tree objects is in $(BUILD_COV_DIR)/extern-html/index.html"
Juraj Sloboda0279b292016-11-16 19:50:24 +0100303
Klement Sekera9f9d07b2016-12-12 09:20:50 +0100304.PHONY: wipe-cov
Juraj Sloboda0279b292016-11-16 19:50:24 +0100305wipe-cov: wipe
306 @rm -rf $(BUILD_COV_DIR)
307
Dave Wallacef0797d12019-11-15 17:29:15 -0500308.PHONY: wipe-papi
309wipe-papi:
310 @rm -rf $(PAPI_INSTALL_DONE) $(PAPI_WIPE_DIST)
Paul Vinciguerra2648e442019-07-09 16:49:46 -0400311
Dave Wallacef0797d12019-11-15 17:29:15 -0500312.PHONY: wipe-all
313wipe-all: wipe wipe-papi wipe-doc wipe-cov
314 @rm -rf $(TEST_BR)
Paul Vinciguerra2648e442019-07-09 16:49:46 -0400315
Klement Sekera72715ee2017-01-17 10:37:05 +0100316.PHONY: checkstyle
Dave Wallacef0797d12019-11-15 17:29:15 -0500317checkstyle: $(BUILD_TEST_SRC) $(PIP_INSTALL_DONE)
Ole Troan4aacc012019-10-23 11:47:33 +0200318 @bash -c "source $(VENV_PATH)/bin/activate &&\
319 $(PYTHON_INTERP) -m pip install pycodestyle"
Klement Sekerab8c72a42018-11-08 11:21:39 +0100320 @bash -c "source $(VENV_PATH)/bin/activate &&\
Dave Wallacef0797d12019-11-15 17:29:15 -0500321 pycodestyle --show-source --ignore=W504,E126,E241,E226,E305,E704,E741,E722 -v $(BUILD_TEST_SRC)/*.py ||\
Klement Sekera72715ee2017-01-17 10:37:05 +0100322 (echo \"*******************************************************************\" &&\
323 echo \"* Test framework PEP8 compliance check FAILED \" &&\
324 echo \"*******************************************************************\" &&\
325 false)"
326 @echo "*******************************************************************"
327 @echo "* Test framework PEP8 compliance check passed"
328 @echo "*******************************************************************"
329
Dave Wallacef0797d12019-11-15 17:29:15 -0500330.PHONY: help
Klement Sekera277b89c2016-10-28 13:20:27 +0200331help:
332 @echo "Running tests:"
333 @echo ""
Dave Wallacef0797d12019-11-15 17:29:15 -0500334 @echo " test - build and run (basic) functional tests"
335 @echo " test-debug - build and run (basic) functional tests (debug build)"
336 @echo " test-all - build and run functional and extended tests"
337 @echo " test-all-debug - build and run functional and extended tests (debug build)"
338 @echo " retest - run functional tests"
339 @echo " retest-debug - run functional tests (debug build)"
340 @echo " retest-all - run functional and extended tests"
341 @echo " retest-all-debug - run functional and extended tests (debug build)"
342 @echo " test-cov - generate code coverage report for test framework"
343 @echo " test-gcov - build and run functional tests (gcov build)"
344
345 @echo " test-wipe - wipe (temporary) files generated by unit tests"
346 @echo " test-wipe-cov - wipe code coverage report for test framework"
347 @echo " test-wipe-doc - wipe documentation for test framework"
348 @echo " test-wipe-papi - rebuild vpp_papi sources"
349 @echo " test-wipe-all - wipe (temporary) files generated by unit tests, docs, and coverage"
350 @echo " test-shell - enter shell with test environment"
351 @echo " test-shell-debug - enter shell with test environment (debug build)"
352 @echo " test-checkstyle - check PEP8 compliance for test framework"
353 @echo " test-refresh-deps - refresh the Python dependencies for the tests"
Klement Sekera277b89c2016-10-28 13:20:27 +0200354 @echo ""
355 @echo "Arguments controlling test runs:"
Dave Wallacef0797d12019-11-15 17:29:15 -0500356 @echo " V=[0|1|2] - set test verbosity level"
357 @echo " 0=ERROR, 1=INFO, 2=DEBUG"
358 @echo " TEST_JOBS=[<n>|auto] - use <n> parallel processes for test execution or automatic discovery of maximum acceptable processes (default: 1)"
359 @echo " CACHE_OUTPUT=[0|1] - cache VPP stdout/stderr and log as one block after test finishes (default: 1)"
360 @echo " FAILFAST=[0|1] - fail fast if 1, complete all tests if 0"
361 @echo " TIMEOUT=<timeout> - fail test suite if any single test takes longer than <timeout> (in seconds) to finish (default: 600)"
362 @echo " RETRIES=<n> - retry failed tests <n> times"
363 @echo " DEBUG=<type> - set VPP debugging kind"
364 @echo " DEBUG=core - detect coredump and load it in gdb on crash"
365 @echo " DEBUG=gdb - allow easy debugging by printing VPP PID"
366 @echo " and waiting for user input before running"
367 @echo " and tearing down a testcase"
368 @echo " DEBUG=gdbserver - run gdb inside a gdb server, otherwise"
369 @echo " same as above"
370 @echo " STEP=[yes|no] - ease debugging by stepping through a testcase"
371 @echo " SANITY=[yes|no] - perform sanity import of vpp-api/sanity vpp run before running tests (default: yes)"
372 @echo " EXTENDED_TESTS=[1|y] - used by '[re]test-all' & '[re]test-all-debug' to run extended tests"
373 @echo " TEST=<filter> - filter the set of tests:"
374 @echo " by file-name - only run tests from specified file, e.g. TEST=test_bfd selects all tests from test_bfd.py"
375 @echo " by file-suffix - same as file-name, but 'test_' is omitted e.g. TEST=bfd selects all tests from test_bfd.py"
376 @echo " by wildcard - wildcard filter is <file>.<class>.<test function>, each can be replaced by '*'"
377 @echo " e.g. TEST='test_bfd.*.*' is equivalent to above example of filter by file-name"
378 @echo " TEST='bfd.*.*' is equivalent to above example of filter by file-suffix"
379 @echo " TEST='bfd.BFDAPITestCase.*' selects all tests from test_bfd.py which are part of BFDAPITestCase class"
380 @echo " TEST='bfd.BFDAPITestCase.test_add_bfd' selects a single test named test_add_bfd from test_bfd.py/BFDAPITestCase"
381 @echo " TEST='*.*.test_add_bfd' selects all test functions named test_add_bfd from all files/classes"
Klement Sekera277b89c2016-10-28 13:20:27 +0200382 @echo ""
Ray Kinsella4830e4f2020-03-10 14:35:32 +0000383 @echo " VARIANT=<variant> - specify which march node variant to unit test"
Ray Kinsellaf9c8fe42020-08-14 15:27:10 +0100384 @echo " e.g. VARIANT=skx test the skx march variants"
385 @echo " e.g. VARIANT=icl test the icl march variants"
Ray Kinsella4830e4f2020-03-10 14:35:32 +0000386 @echo ""
Dave Wallacef0797d12019-11-15 17:29:15 -0500387 @echo " VPP_ZOMBIE_NOCHECK=1 - skip checking for vpp (zombie) processes (CAUTION)"
388 @echo " COREDUMP_SIZE=<size> - pass <size> as unix { coredump-size <size> } argument to vpp"
389 @echo " e.g. COREDUMP_SIZE=4g"
390 @echo " COREDUMP_SIZE=unlimited"
391 @echo " COREDUMP_COMPRESS=1 - compress core files if not debugging them"
392 @echo " EXTERN_TESTS=<path> - path to out-of-tree test_<name>.py files containing test cases"
393 @echo " EXTERN_PLUGINS=<path> - path to out-of-tree plugins to be loaded by vpp under test"
394 @echo " EXTERN_COV_DIR=<path> - path to out-of-tree prefix, where source, object and .gcda files can be found for coverage report"
Klement Sekerab93d1422017-03-02 08:16:20 +0100395 @echo ""
Dave Wallacef0797d12019-11-15 17:29:15 -0500396 @echo " PROFILE=1 - enable profiling of test framework via cProfile module"
397 @echo " PROFILE_SORT_BY=opt - sort profiling report by opt - consult cProfile documentation for possible values (default: cumtime)"
398 @echo " PROFILE_OUTPUT=file - output profiling info to file - use absolute path (default: stdout)"
Klement Sekerabbfa5fd2018-06-27 13:54:32 +0200399 @echo ""
Dave Wallacef0797d12019-11-15 17:29:15 -0500400 @echo " TEST_DEBUG=1 - turn on debugging of the test framework itself (expert)"
Klement Sekeraebbaf552018-02-17 13:41:33 +0100401 @echo ""
Dave Wallacef0797d12019-11-15 17:29:15 -0500402 @echo " SKIP_AARCH64=1 - skip tests that are failing on the ARM platorm in FD.io CI"
juraj.linkes68ebc832018-11-29 09:37:08 +0100403 @echo ""
Dave Wallacef0797d12019-11-15 17:29:15 -0500404 @echo " SOCKET=1 - Communicate with VPP over Unix domain socket instead of SHM"
Ole Troan4ff09ae2019-04-15 11:27:22 +0200405 @echo ""
Dave Wallacef0797d12019-11-15 17:29:15 -0500406 @echo " RND_SEED=seed - Seed RND with given seed"
Klement Sekera45a95dd2019-11-05 11:18:25 +0000407 @echo ""
Klement Sekera277b89c2016-10-28 13:20:27 +0200408 @echo "Creating test documentation"
Dave Wallacef0797d12019-11-15 17:29:15 -0500409 @echo " test-doc - generate documentation for test framework"
410 @echo " test-wipe-doc - wipe documentation for test framework"
Juraj Sloboda0279b292016-11-16 19:50:24 +0100411 @echo ""
412 @echo "Creating test code coverage report"
Dave Wallacef0797d12019-11-15 17:29:15 -0500413 @echo " test-cov - generate code coverage report for test framework"
414 @echo " test-wipe-cov - wipe code coverage report for test framework"
Klement Sekera277b89c2016-10-28 13:20:27 +0200415 @echo ""
Klement Sekera72715ee2017-01-17 10:37:05 +0100416 @echo "Verifying code-style"
Dave Wallacef0797d12019-11-15 17:29:15 -0500417 @echo " test-checkstyle - check PEP8 compliance"
Klement Sekera72715ee2017-01-17 10:37:05 +0100418 @echo ""