blob: 82cef8389788ce1b6c9d50e131f79b1de79d0d1b [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 Wallaceeddd8e32021-05-12 21:43:59 -040016export TEST_BR = $(TEST_DIR)
Dave Wallacef0797d12019-11-15 17:29:15 -050017FAILED_DIR=/tmp/vpp-failed-unittests/
Dave Wallaceeddd8e32021-05-12 21:43:59 -040018VPP_TEST_DIRS=$(shell ls -d $(TEST_DIR) $(EXTERN_TESTS))
Dave Wallacef0797d12019-11-15 17:29:15 -050019
Klement Sekerae2636852021-03-16 12:52:12 +010020FORCE_NO_WIPE=0
Klement Sekeradb4e84c2017-08-11 10:06:15 +020021ifeq ($(DEBUG),gdb)
22FORCE_FOREGROUND=1
23else ifeq ($(DEBUG),gdbserver)
24FORCE_FOREGROUND=1
Dave Wallace24564332019-10-21 02:53:14 +000025else ifeq ($(DEBUG),gdb-all)
26FORCE_FOREGROUND=1
27else ifeq ($(DEBUG),gdbserver-all)
28FORCE_FOREGROUND=1
Klement Sekerab90be672017-10-10 06:44:05 +020029else ifeq ($(DEBUG),core)
30FORCE_FOREGROUND=1
Klement Sekerae2636852021-03-16 12:52:12 +010031else ifeq ($(DEBUG),attach)
32FORCE_FOREGROUND=1
33FORCE_NO_WIPE=1
juraj.linkes184870a2018-07-16 14:22:01 +020034else ifeq ($(STEP),yes)
35FORCE_FOREGROUND=1
36else ifeq ($(STEP),y)
37FORCE_FOREGROUND=1
38else ifeq ($(STEP),1)
39FORCE_FOREGROUND=1
Klement Sekeradb4e84c2017-08-11 10:06:15 +020040else
41FORCE_FOREGROUND=0
42endif
43
Klement Sekerabbfa5fd2018-06-27 13:54:32 +020044ifdef PROFILE_OUTPUT
45PROFILE_OUTPUT_OPTS=-o $(PROFILE_OUTPUT)
46endif
47
48ifndef PROFILE_SORT_BY
49PROFILE_SORT_BY=cumtime
50endif
51
52ifeq ($(PROFILE),1)
Klement Sekerab23ffd72021-05-31 16:08:53 +020053PYTHON_OPTS="-m cProfile $(PROFILE_OUTPUT_OPTS) -s $(PROFILE_SORT_BY)"
Klement Sekerabbfa5fd2018-06-27 13:54:32 +020054FORCE_FOREGROUND=1
55endif
56
Dave Wallaceeddd8e32021-05-12 21:43:59 -040057VENV_PATH=$(TEST_DIR)/venv
Klement Sekerab8c72a42018-11-08 11:21:39 +010058
Klement Sekeraebbaf552018-02-17 13:41:33 +010059ifeq ($(TEST_DEBUG),1)
Dave Wallacef0797d12019-11-15 17:29:15 -050060VENV_RUN_DIR:=$(VENV_PATH)/run-debug
Klement Sekeraebbaf552018-02-17 13:41:33 +010061else
Dave Wallacef0797d12019-11-15 17:29:15 -050062VENV_RUN_DIR:=$(VENV_PATH)/run
Klement Sekeraebbaf552018-02-17 13:41:33 +010063endif
64
vagrant937bf302017-04-07 01:48:47 +000065ifeq ($(PYTHON),)
Ole Troan6e6ad642020-02-04 13:28:13 +010066PYTHON_INTERP=python3
vagrant937bf302017-04-07 01:48:47 +000067else
68PYTHON_INTERP=$(PYTHON)
69endif
70
Klement Sekerab23ffd72021-05-31 16:08:53 +020071ifeq ($(V),)
72V=0
73endif
74
Aloys Augustin28fa8cb2019-06-21 17:04:29 +020075PYTHON_VERSION=$(shell $(PYTHON_INTERP) -c 'import sys; print(sys.version_info.major)')
Dave Wallacefa5aabb2022-02-05 09:27:05 -050076PIP_VERSION=22.0.3
Aloys Augustinef29fa42020-05-25 18:07:24 +020077# Keep in sync with requirements.txt
Dave Wallacefa5aabb2022-02-05 09:27:05 -050078PIP_TOOLS_VERSION=6.5.0
79PIP_SETUPTOOLS_VERSION=60.7.1
Aloys Augustin28fa8cb2019-06-21 17:04:29 +020080PYTHON_DEPENDS=requirements-$(PYTHON_VERSION).txt
Ole Troan6e6ad642020-02-04 13:28:13 +010081SCAPY_SOURCE=$(shell find $(VENV_PATH)/lib/python* -name site-packages)
Dave Wallacef0797d12019-11-15 17:29:15 -050082BUILD_COV_DIR=$(TEST_BR)/coverage
Aloys Augustin28fa8cb2019-06-21 17:04:29 +020083
Aloys Augustinef29fa42020-05-25 18:07:24 +020084PIP_TOOLS_INSTALL_DONE=$(VENV_RUN_DIR)/pip-tools-install-$(PYTHON_VERSION)-$(PIP_TOOLS_VERSION).done
85PIP_INSTALL_DONE=$(VENV_RUN_DIR)/pip-install-$(PYTHON_VERSION)-$(PIP_VERSION).done
Dave Wallacef0797d12019-11-15 17:29:15 -050086PIP_PATCH_DONE=$(VENV_RUN_DIR)/pip-patch-$(PYTHON_VERSION).done
87PAPI_INSTALL_DONE=$(VENV_RUN_DIR)/papi-install-$(PYTHON_VERSION).done
88PAPI_PYTHON_SRC_DIR=$(WS_ROOT)/src/vpp-api/python
89PAPI_WIPE_DIST=$(WS_ROOT)/src/vpp-api/vapi/__pycache__ \
90 $(PAPI_PYTHON_SRC_DIR)/build \
91 $(PAPI_PYTHON_SRC_DIR)/vpp_papi.egg-info \
92 $(PAPI_PYTHON_SRC_DIR)/vpp_papi/__pycache__
Aloys Augustin28fa8cb2019-06-21 17:04:29 +020093
Aloys Augustin28fa8cb2019-06-21 17:04:29 +020094$(PIP_TOOLS_INSTALL_DONE):
95 @rm -rf $(VENV_PATH)
Dave Wallacef0797d12019-11-15 17:29:15 -050096 @mkdir -p $(VENV_RUN_DIR)
Klement Sekera7554aef2021-03-30 19:46:06 +020097 @$(PYTHON_INTERP) -m venv $(VENV_PATH)
Aloys Augustin8adb92b2019-07-23 15:19:28 +020098 # pip version pinning
99 @bash -c "source $(VENV_PATH)/bin/activate && \
Klement Sekeraa8a9a8a2021-04-10 12:37:04 +0200100 python3 -m pip install pip===$(PIP_VERSION)"
Aloys Augustin28fa8cb2019-06-21 17:04:29 +0200101 @bash -c "source $(VENV_PATH)/bin/activate && \
Klement Sekeraa8a9a8a2021-04-10 12:37:04 +0200102 python3 -m pip install pip-tools===$(PIP_TOOLS_VERSION)"
Dave Wallacefa5aabb2022-02-05 09:27:05 -0500103 @bash -c "source $(VENV_PATH)/bin/activate && \
104 python3 -m pip install setuptools===$(PIP_SETUPTOOLS_VERSION)"
Aloys Augustin28fa8cb2019-06-21 17:04:29 +0200105 @touch $@
106
Aloys Augustin8eca60d2020-06-24 11:33:20 +0200107$(PYTHON_DEPENDS): requirements.txt
Aloys Augustin28fa8cb2019-06-21 17:04:29 +0200108 @bash -c "source $(VENV_PATH)/bin/activate && \
109 CUSTOM_COMPILE_COMMAND='make test-refresh-deps (or update requirements.txt)' \
Klement Sekeraa8a9a8a2021-04-10 12:37:04 +0200110 python3 -m piptools compile -q --generate-hashes requirements.txt --output-file $@"
Aloys Augustin28fa8cb2019-06-21 17:04:29 +0200111
Aloys Augustin8eca60d2020-06-24 11:33:20 +0200112$(PIP_INSTALL_DONE): $(PIP_TOOLS_INSTALL_DONE) $(PYTHON_DEPENDS)
Aloys Augustin28fa8cb2019-06-21 17:04:29 +0200113 @bash -c "source $(VENV_PATH)/bin/activate && \
Klement Sekeraa8a9a8a2021-04-10 12:37:04 +0200114 python3 -m piptools sync $(PYTHON_DEPENDS)"
Neale Ranns177bbdc2016-11-15 09:46:51 +0000115 @touch $@
116
Klement Sekera9f9d07b2016-12-12 09:20:50 +0100117$(PIP_PATCH_DONE): $(PIP_INSTALL_DONE)
Neale Ranns177bbdc2016-11-15 09:46:51 +0000118 @echo --- patching ---
Dave Wallace6f692d62017-01-26 21:07:10 -0500119 @sleep 1 # Ensure python recompiles patched *.py files -> *.pyc
snaramre5d4b8912019-12-13 23:39:35 +0000120 for f in $(CURDIR)/patches/scapy-2.4.3/*.patch ; do \
Neale Ranns177bbdc2016-11-15 09:46:51 +0000121 echo Applying patch: $$(basename $$f) ; \
Aloys Augustin28fa8cb2019-06-21 17:04:29 +0200122 patch --forward -p1 -d $(SCAPY_SOURCE) < $$f ; \
123 retCode=$$?; \
Aloys Augustin8eca60d2020-06-24 11:33:20 +0200124 [ $$retCode -gt 1 ] && exit $$retCode; \
Aloys Augustin28fa8cb2019-06-21 17:04:29 +0200125 done; \
126 touch $@
Neale Ranns177bbdc2016-11-15 09:46:51 +0000127
Klement Sekera9f9d07b2016-12-12 09:20:50 +0100128$(PAPI_INSTALL_DONE): $(PIP_PATCH_DONE)
Klement Sekeraa8a9a8a2021-04-10 12:37:04 +0200129 @bash -c "source $(VENV_PATH)/bin/activate && python3 -m pip install -e $(PAPI_PYTHON_SRC_DIR)"
Neale Ranns177bbdc2016-11-15 09:46:51 +0000130 @touch $@
131
Dave Wallacef0797d12019-11-15 17:29:15 -0500132.PHONY: refresh-deps
Aloys Augustin28fa8cb2019-06-21 17:04:29 +0200133refresh-deps: clean-deps $(PYTHON_DEPENDS)
134
Dave Wallacef0797d12019-11-15 17:29:15 -0500135.PHONY: clean-deps
Aloys Augustin28fa8cb2019-06-21 17:04:29 +0200136clean-deps:
137 @rm -f $(PYTHON_DEPENDS)
138
Dave Wallacef0797d12019-11-15 17:29:15 -0500139INTERN_PLUGIN_SRC_DIR=$(WS_ROOT)/src/plugins
Dave Wallacea43c93f2019-08-22 00:32:29 +0000140ifneq ($(EXTERN_PLUGIN_SRC_DIR),)
141PLUGIN_SRC_DIR=$(EXTERN_PLUGIN_SRC_DIR)
142else
Dave Wallacef0797d12019-11-15 17:29:15 -0500143PLUGIN_SRC_DIR=$(INTERN_PLUGIN_SRC_DIR)
Dave Wallacea43c93f2019-08-22 00:32:29 +0000144endif
Dave Wallacea43c93f2019-08-22 00:32:29 +0000145
Klement Sekerac160ae02017-03-09 08:20:13 +0100146.PHONY: sanity
147
juraj.linkes184870a2018-07-16 14:22:01 +0200148ifndef TEST_JOBS
149PARALLEL_ILLEGAL=0
Klement Sekerab23ffd72021-05-31 16:08:53 +0200150TEST_JOBS=1
juraj.linkes184870a2018-07-16 14:22:01 +0200151else ifeq ($(FORCE_FOREGROUND),0)
152PARALLEL_ILLEGAL=0
Klement Sekerab23ffd72021-05-31 16:08:53 +0200153else ifneq ($(findstring $(TEST_JOBS),1 auto),)
juraj.linkes184870a2018-07-16 14:22:01 +0200154PARALLEL_ILLEGAL=0
155else
156PARALLEL_ILLEGAL=1
157endif
158
Klement Sekerab23ffd72021-05-31 16:08:53 +0200159ifneq ($(DEBUG),)
160SANITY=no
161endif
162
163ifneq ($(findstring $(SANITY),0 n no),)
164SANITY_IMPORT_VPP_PAPI_CMD=true
165ARG0=
166else
167SANITY_IMPORT_VPP_PAPI_CMD=source $(VENV_PATH)/bin/activate && $(PYTHON_INTERP) sanity_import_vpp_papi.py
168ARG0=--sanity
169endif
170
171ARG1=
172ifneq ($(findstring $(FAILFAST),1 y yes),)
173ARG1=--failfast
174endif
175
176ARG2=
177ifneq ($(findstring $(EXTENDED_TESTS),1 y yes),)
178ARG2=--extended
179endif
180
181ARG3=
182ifneq ($(EXTERN_TESTS),)
183ARG3=--test-src-dir $(EXTERN_TESTS)
184endif
185
186ARG4=
187ifneq ($(findstring $(FORCE_FOREGROUND),1 y yes),)
188ARG4=--force-foreground
189endif
190
191ARG5=
192ifneq ($(findstring $(COREDUMP_COMPRESS),1 y yes),)
193ARG5=--compress-core
194endif
195
196ARG6=
197ifneq ($(findstring $(STEP),1 y yes),)
198ARG6=--step
199endif
200
201ARG7=
202ifneq ($(findstring $(TESTS_GCOV),1 y yes),)
203ARG7=--gcov
204endif
205
206ARG8=
207ifneq ($(EXTERN_PLUGINS),)
208ARG8=--extern-plugin-dir=$(EXTERN_PLUGINS)
209endif
210
211ARG9=
212ifneq ($(DEBUG),)
213ARG9=--debug=$(DEBUG)
214endif
215
216ARG10=
217ifneq ($(COREDUMP_SIZE),)
218ARG10=--coredump-size=$(COREDUMP_SIZE)
219endif
220
221ARG11=
222ifneq ($(VARIANT),)
223ARG11=--variant=$(VARIANT)
224endif
225
226ARG12=--cache-vpp-output
227ifneq ($(findstring $(CACHE_OUTPUT),0 n no),)
228ARG12=
229endif
230
231ARG13=
232ifneq ($(MAX_VPP_CPUS),)
233ARG13=--max-vpp-cpus=$(MAX_VPP_CPUS)
234endif
235
236ARG14=
237ifneq ($(TIMEOUT),)
238ARG14=--timeout=$(TIMEOUT)
239endif
240
241ARG15=
242ifneq ($(findstring $(TEST_DEBUG),1 y yes),)
243ARG15=--debug-framework
244endif
245
246ARG16=
247ifneq ($(findstring $(API_FUZZ),1 y yes),)
248ARG16=--api-fuzz=on
249endif
250
251EXTRA_ARGS=$(ARG0) $(ARG1) $(ARG2) $(ARG3) $(ARG4) $(ARG5) $(ARG6) $(ARG7) $(ARG8) $(ARG9) $(ARG10) $(ARG11) $(ARG12) $(ARG13) $(ARG14) $(ARG15) $(ARG16)
252
Klement Sekerab3fc6582022-03-10 11:47:45 +0100253RUN_TESTS_ARGS=--failed-dir=$(FAILED_DIR) --verbose=$(V) --jobs=$(TEST_JOBS) --filter=$(TEST) --retries=$(RETRIES) --venv-dir=$(VENV_PATH) --vpp-ws-dir=$(WS_ROOT) --vpp-tag=$(TAG) --rnd-seed=$(RND_SEED) --vpp-worker-count="$(VPP_WORKER_COUNT)" --keep-pcaps $(PLUGIN_PATH_ARGS) $(TEST_PLUGIN_PATH_ARGS) $(EXTRA_ARGS)
254RUN_SCRIPT_ARGS=--python-opts=$(PYTHON_OPTS)
Klement Sekerab23ffd72021-05-31 16:08:53 +0200255
256define retest-func
Klement Sekerab3fc6582022-03-10 11:47:45 +0100257@scripts/run.sh $(RUN_SCRIPT_ARGS) $(RUN_TESTS_ARGS) || env FAILED_DIR=$(FAILED_DIR) COMPRESS_FAILED_TEST_LOGS=$(COMPRESS_FAILED_TEST_LOGS) scripts/compress_failed.sh
Klement Sekerab23ffd72021-05-31 16:08:53 +0200258endef
259
Klement Sekerae2636852021-03-16 12:52:12 +0100260sanity: test-dep
juraj.linkes184870a2018-07-16 14:22:01 +0200261 @bash -c "test $(PARALLEL_ILLEGAL) -eq 0 ||\
262 (echo \"*******************************************************************\" &&\
263 echo \"* Sanity check failed, TEST_JOBS is not 1 or 'auto' and DEBUG, STEP or PROFILE is set\" &&\
264 echo \"*******************************************************************\" &&\
265 false)"
Klement Sekera41a9e512017-10-17 07:59:31 +0200266 @bash -c "$(SANITY_IMPORT_VPP_PAPI_CMD) ||\
Klement Sekerac160ae02017-03-09 08:20:13 +0100267 (echo \"*******************************************************************\" &&\
268 echo \"* Sanity check failed, cannot import vpp_papi\" &&\
269 echo \"* to debug: \" &&\
270 echo \"* 1. enter test shell: make test-shell\" &&\
271 echo \"* 2. execute debugger: gdb python -ex 'run sanity_import_vpp_papi.py'\" &&\
272 echo \"*******************************************************************\" &&\
273 false)"
274
Dave Wallacef0797d12019-11-15 17:29:15 -0500275$(FAILED_DIR): reset
276 @mkdir -p $@
277
278.PHONY: test-dep
Dave Wallaceeddd8e32021-05-12 21:43:59 -0400279test-dep: $(PAPI_INSTALL_DONE) $(FAILED_DIR)
Dave Wallacef0797d12019-11-15 17:29:15 -0500280
281.PHONY: test
Damjan Mariona2d6d352021-05-25 18:29:24 +0200282test: test-dep sanity
Juraj Sloboda0279b292016-11-16 19:50:24 +0100283 $(call retest-func)
Klement Sekeraf62ae122016-10-11 11:47:09 +0200284
Dave Wallacef0797d12019-11-15 17:29:15 -0500285.PHONY: retest
286retest: verify-env sanity $(FAILED_DIR)
Juraj Sloboda0279b292016-11-16 19:50:24 +0100287 $(call retest-func)
Klement Sekeraf62ae122016-10-11 11:47:09 +0200288
Dave Wallacef0797d12019-11-15 17:29:15 -0500289.PHONY: shell
290shell: test-dep
Klement Sekerab8c72a42018-11-08 11:21:39 +0100291 @echo "source $(VENV_PATH)/bin/activate;\
Paul Vinciguerrac701e572019-12-19 16:09:43 -0500292 export RND_SEED=$(RND_SEED);\
Klement Sekeraa86e2892017-03-09 08:01:52 +0100293 echo '***';\
Dave Wallacefd243742021-03-16 22:12:07 -0400294 echo PYTHONPATH=$(PYTHONPATH);\
Paul Vinciguerrac701e572019-12-19 16:09:43 -0500295 echo RND_SEED=$(RND_SEED);\
Klement Sekera593635d2019-02-07 19:56:50 +0100296 echo VPP_BUILD_DIR=$(VPP_BUILD_DIR);\
Klement Sekera593635d2019-02-07 19:56:50 +0100297 echo VPP_PLUGIN_PATH=$(VPP_PLUGIN_PATH);\
Dave Barach7d31ab22019-05-08 19:18:18 -0400298 echo VPP_TEST_PLUGIN_PATH=$(VPP_TEST_PLUGIN_PATH);\
Klement Sekera593635d2019-02-07 19:56:50 +0100299 echo VPP_INSTALL_PATH=$(VPP_INSTALL_PATH);\
Klement Sekera47e275b2017-03-21 08:21:25 +0100300 echo EXTERN_TESTS=$(EXTERN_TESTS);\
301 echo EXTERN_PLUGINS=$(EXTERN_PLUGINS);\
Klement Sekerab23ffd72021-05-31 16:08:53 +0200302 echo EXTERN_COV_DIR=$(EXTERN_COV_DIR);\
Klement Sekeraa86e2892017-03-09 08:01:52 +0100303 echo LD_LIBRARY_PATH=$(LD_LIBRARY_PATH);\
304 echo '***';\
305 exec </dev/tty" | bash -i
306
Dave Wallacef0797d12019-11-15 17:29:15 -0500307.PHONY: reset
Neale Ranns177bbdc2016-11-15 09:46:51 +0000308reset:
Klement Sekeraaa7a2a12021-03-18 15:22:57 +0100309 @rm -f /dev/shm/vpp-unittest-*
Klement Sekerae2636852021-03-16 12:52:12 +0100310 @if [ $(FORCE_NO_WIPE) -eq "0" ] ; then rm -rf /tmp/vpp-unittest-*; fi
Dave Wallacef0797d12019-11-15 17:29:15 -0500311 @rm -f /tmp/api_post_mortem.*
Klement Sekerab8c72a42018-11-08 11:21:39 +0100312 @rm -rf $(FAILED_DIR)
Klement Sekeraf62ae122016-10-11 11:47:09 +0200313
Dave Wallacef0797d12019-11-15 17:29:15 -0500314.PHONY: wipe
Neale Ranns177bbdc2016-11-15 09:46:51 +0000315wipe: reset
Klement Sekerab8c72a42018-11-08 11:21:39 +0100316 @rm -rf $(VENV_PATH)
Neale Ranns02da9262021-01-08 08:43:14 +0000317 @rm -rf $(patsubst %,%/__pycache__, $(VPP_TEST_DIRS))
Neale Ranns177bbdc2016-11-15 09:46:51 +0000318
Dave Wallacef0797d12019-11-15 17:29:15 -0500319$(BUILD_COV_DIR):
320 @mkdir -p $@
321
322.PHONY: cov
323cov: wipe-cov test-dep ext $(BUILD_COV_DIR)
Klement Sekera593635d2019-02-07 19:56:50 +0100324 @lcov --zerocounters --directory $(VPP_BUILD_DIR)
Klement Sekeracd6cb982017-05-11 06:55:32 +0200325 @test -z "$(EXTERN_COV_DIR)" || lcov --zerocounters --directory $(EXTERN_COV_DIR)
Juraj Sloboda0279b292016-11-16 19:50:24 +0100326 $(call retest-func)
Klement Sekera593635d2019-02-07 19:56:50 +0100327 @lcov --capture --directory $(VPP_BUILD_DIR) --output-file $(BUILD_COV_DIR)/coverage.info
Klement Sekeracd6cb982017-05-11 06:55:32 +0200328 @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 +0100329 @genhtml $(BUILD_COV_DIR)/coverage.info --output-directory $(BUILD_COV_DIR)/html
Klement Sekeracd6cb982017-05-11 06:55:32 +0200330 @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 +0100331 @echo
332 @echo "Build finished. Code coverage report is in $(BUILD_COV_DIR)/html/index.html"
Klement Sekeracd6cb982017-05-11 06:55:32 +0200333 @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 +0100334
Klement Sekera9f9d07b2016-12-12 09:20:50 +0100335.PHONY: wipe-cov
Juraj Sloboda0279b292016-11-16 19:50:24 +0100336wipe-cov: wipe
337 @rm -rf $(BUILD_COV_DIR)
338
Dave Wallacef0797d12019-11-15 17:29:15 -0500339.PHONY: wipe-papi
340wipe-papi:
341 @rm -rf $(PAPI_INSTALL_DONE) $(PAPI_WIPE_DIST)
Paul Vinciguerra2648e442019-07-09 16:49:46 -0400342
Dave Wallacef0797d12019-11-15 17:29:15 -0500343.PHONY: wipe-all
Nathan Skrzypczak9ad39c02021-08-19 11:38:06 +0200344wipe-all: wipe wipe-papi wipe-cov
Dave Wallacef0797d12019-11-15 17:29:15 -0500345 @rm -rf $(TEST_BR)
Paul Vinciguerra2648e442019-07-09 16:49:46 -0400346
Klement Sekerae0b63b22021-03-24 23:24:52 +0100347.PHONY: checkstyle-diff
Dave Wallaceeddd8e32021-05-12 21:43:59 -0400348checkstyle-diff: $(PIP_INSTALL_DONE)
Klement Sekerae0b63b22021-03-24 23:24:52 +0100349 @bash -c "source $(VENV_PATH)/bin/activate &&\
Klement Sekeraa8a9a8a2021-04-10 12:37:04 +0200350 python3 -m pip install pycodestyle"
Klement Sekerae0b63b22021-03-24 23:24:52 +0100351 @bash -c "source $(VENV_PATH)/bin/activate &&\
Klement Sekera0e95c182022-02-03 16:03:26 +0000352 cd $(WS_ROOT) && git diff --name-only --no-color --relative HEAD~1 ':!*.patch' | grep '.py$$' | xargs -I XXX \
353 pycodestyle --show-source --ignore=W504,E126,E241,E226,E305,E704,E741,E722 -v XXX ||\
Klement Sekerae0b63b22021-03-24 23:24:52 +0100354 (echo \"*********************************************************************\" &&\
355 echo \"* Test framework PEP8 compliance check FAILED (checked changed files)\" &&\
356 echo \"*********************************************************************\" &&\
357 false)"
358 @echo "*********************************************************************"
359 @echo "* Test framework PEP8 compliance check passed (checked changed files)"
360 @echo "*********************************************************************"
361
Klement Sekerae2636852021-03-16 12:52:12 +0100362.PHONY: start-gdb
363start-gdb: sanity
Klement Sekerab23ffd72021-05-31 16:08:53 +0200364 @bash -c "source $(VENV_PATH)/bin/activate && python3 -c 'from debug import start_vpp_in_gdb; start_vpp_in_gdb()' $(RUN_TESTS_ARGS)"
Klement Sekerae2636852021-03-16 12:52:12 +0100365
Klement Sekera72715ee2017-01-17 10:37:05 +0100366.PHONY: checkstyle
Dave Wallaceeddd8e32021-05-12 21:43:59 -0400367checkstyle: $(PIP_INSTALL_DONE)
Ole Troan4aacc012019-10-23 11:47:33 +0200368 @bash -c "source $(VENV_PATH)/bin/activate &&\
Klement Sekeraa8a9a8a2021-04-10 12:37:04 +0200369 python3 -m pip install pycodestyle"
Klement Sekerab8c72a42018-11-08 11:21:39 +0100370 @bash -c "source $(VENV_PATH)/bin/activate &&\
Dave Wallaceeddd8e32021-05-12 21:43:59 -0400371 pycodestyle --show-source --ignore=W504,E126,E241,E226,E305,E704,E741,E722 -v *.py ||\
Klement Sekera72715ee2017-01-17 10:37:05 +0100372 (echo \"*******************************************************************\" &&\
Klement Sekerae0b63b22021-03-24 23:24:52 +0100373 echo \"* Test framework PEP8 compliance check FAILED (checked all files)\" &&\
Klement Sekera72715ee2017-01-17 10:37:05 +0100374 echo \"*******************************************************************\" &&\
375 false)"
376 @echo "*******************************************************************"
Klement Sekerae0b63b22021-03-24 23:24:52 +0100377 @echo "* Test framework PEP8 compliance check passed (checked all files)"
Klement Sekera72715ee2017-01-17 10:37:05 +0100378 @echo "*******************************************************************"
379
Dave Wallacef0797d12019-11-15 17:29:15 -0500380.PHONY: help
Klement Sekera277b89c2016-10-28 13:20:27 +0200381help:
382 @echo "Running tests:"
383 @echo ""
Dave Wallacef0797d12019-11-15 17:29:15 -0500384 @echo " test - build and run (basic) functional tests"
385 @echo " test-debug - build and run (basic) functional tests (debug build)"
386 @echo " test-all - build and run functional and extended tests"
387 @echo " test-all-debug - build and run functional and extended tests (debug build)"
388 @echo " retest - run functional tests"
389 @echo " retest-debug - run functional tests (debug build)"
390 @echo " retest-all - run functional and extended tests"
391 @echo " retest-all-debug - run functional and extended tests (debug build)"
392 @echo " test-cov - generate code coverage report for test framework"
393 @echo " test-gcov - build and run functional tests (gcov build)"
Dave Wallacef0797d12019-11-15 17:29:15 -0500394 @echo " test-wipe - wipe (temporary) files generated by unit tests"
395 @echo " test-wipe-cov - wipe code coverage report for test framework"
Dave Wallacef0797d12019-11-15 17:29:15 -0500396 @echo " test-wipe-papi - rebuild vpp_papi sources"
Nathan Skrzypczak9ad39c02021-08-19 11:38:06 +0200397 @echo " test-wipe-all - wipe (temporary) files generated by unit tests, and coverage"
Dave Wallacef0797d12019-11-15 17:29:15 -0500398 @echo " test-shell - enter shell with test environment"
399 @echo " test-shell-debug - enter shell with test environment (debug build)"
Klement Sekerae2636852021-03-16 12:52:12 +0100400 @echo " test-checkstyle - check PEP8 compliance for test framework"
401 @echo " test-refresh-deps - refresh the Python dependencies for the tests"
Klement Sekera277b89c2016-10-28 13:20:27 +0200402 @echo ""
403 @echo "Arguments controlling test runs:"
Klement Sekerab23ffd72021-05-31 16:08:53 +0200404 @echo ""
Dave Wallacef0797d12019-11-15 17:29:15 -0500405 @echo " V=[0|1|2] - set test verbosity level"
406 @echo " 0=ERROR, 1=INFO, 2=DEBUG"
Klement Sekera558ceab2021-04-08 19:37:41 +0200407 @echo " TEST_JOBS=[<n>|auto] - use at most <n> parallel python processes for test execution, if auto, set to number of available cpus (default: 1)"
408 @echo " MAX_VPP_CPUS=[<n>|auto]- use at most <n> cpus for running vpp main and worker threads, if auto, set to number of available cpus (default: auto)"
Klement Sekerab23ffd72021-05-31 16:08:53 +0200409 @echo " CACHE_OUTPUT=[0|n|no] - disable cache VPP stdout/stderr and log as one block after test finishes (default: yes)"
410 @echo " FAILFAST=[1|y|yes] - fail fast if 1, otherwise complete all tests"
Dave Wallacef0797d12019-11-15 17:29:15 -0500411 @echo " TIMEOUT=<timeout> - fail test suite if any single test takes longer than <timeout> (in seconds) to finish (default: 600)"
412 @echo " RETRIES=<n> - retry failed tests <n> times"
413 @echo " DEBUG=<type> - set VPP debugging kind"
414 @echo " DEBUG=core - detect coredump and load it in gdb on crash"
415 @echo " DEBUG=gdb - allow easy debugging by printing VPP PID"
416 @echo " and waiting for user input before running"
417 @echo " and tearing down a testcase"
418 @echo " DEBUG=gdbserver - run gdb inside a gdb server, otherwise"
419 @echo " same as above"
Klement Sekerae2636852021-03-16 12:52:12 +0100420 @echo " DEBUG=attach - attach test case to already running vpp in gdb (see test-start-vpp-in-gdb)"
Klement Sekerab23ffd72021-05-31 16:08:53 +0200421 @echo " STEP=[1|y|yes] - enable stepping through a testcase (for testcase debugging)"
422 @echo " SANITY=[0|n|no] - disable sanity import of vpp-api/sanity vpp run before running tests"
423 @echo " EXTENDED_TESTS=[1|y|yes] - run extended tests"
Dave Wallacef0797d12019-11-15 17:29:15 -0500424 @echo " TEST=<filter> - filter the set of tests:"
425 @echo " by file-name - only run tests from specified file, e.g. TEST=test_bfd selects all tests from test_bfd.py"
426 @echo " by file-suffix - same as file-name, but 'test_' is omitted e.g. TEST=bfd selects all tests from test_bfd.py"
427 @echo " by wildcard - wildcard filter is <file>.<class>.<test function>, each can be replaced by '*'"
428 @echo " e.g. TEST='test_bfd.*.*' is equivalent to above example of filter by file-name"
429 @echo " TEST='bfd.*.*' is equivalent to above example of filter by file-suffix"
430 @echo " TEST='bfd.BFDAPITestCase.*' selects all tests from test_bfd.py which are part of BFDAPITestCase class"
431 @echo " TEST='bfd.BFDAPITestCase.test_add_bfd' selects a single test named test_add_bfd from test_bfd.py/BFDAPITestCase"
432 @echo " TEST='*.*.test_add_bfd' selects all test functions named test_add_bfd from all files/classes"
Ray Kinsella4830e4f2020-03-10 14:35:32 +0000433 @echo " VARIANT=<variant> - specify which march node variant to unit test"
Ray Kinsellaf9c8fe42020-08-14 15:27:10 +0100434 @echo " e.g. VARIANT=skx test the skx march variants"
435 @echo " e.g. VARIANT=icl test the icl march variants"
Dave Wallacef0797d12019-11-15 17:29:15 -0500436 @echo " COREDUMP_SIZE=<size> - pass <size> as unix { coredump-size <size> } argument to vpp"
437 @echo " e.g. COREDUMP_SIZE=4g"
438 @echo " COREDUMP_SIZE=unlimited"
Klement Sekerab23ffd72021-05-31 16:08:53 +0200439 @echo " COREDUMP_COMPRESS=[1|y|yes] - compress core files if not debugging them"
Dave Wallacef0797d12019-11-15 17:29:15 -0500440 @echo " EXTERN_TESTS=<path> - path to out-of-tree test_<name>.py files containing test cases"
441 @echo " EXTERN_PLUGINS=<path> - path to out-of-tree plugins to be loaded by vpp under test"
442 @echo " EXTERN_COV_DIR=<path> - path to out-of-tree prefix, where source, object and .gcda files can be found for coverage report"
Klement Sekerab23ffd72021-05-31 16:08:53 +0200443 @echo " PROFILE=[1|y|yes] - enable profiling of test framework via cProfile module"
Dave Wallacef0797d12019-11-15 17:29:15 -0500444 @echo " PROFILE_SORT_BY=opt - sort profiling report by opt - consult cProfile documentation for possible values (default: cumtime)"
445 @echo " PROFILE_OUTPUT=file - output profiling info to file - use absolute path (default: stdout)"
Klement Sekerab23ffd72021-05-31 16:08:53 +0200446 @echo " TEST_DEBUG=[1|y|yes] - enable debugging of the test framework itself (expert)"
447 @echo " API_FUZZ=[1|y|yes] - enable VPP api fuzz testing"
448 @echo " RND_SEED=<seed> - Seed RND with given seed"
Klement Sekera45a95dd2019-11-05 11:18:25 +0000449 @echo ""
Klement Sekerae2636852021-03-16 12:52:12 +0100450 @echo "Starting VPP in GDB for use with DEBUG=attach:"
451 @echo ""
452 @echo " test-start-vpp-in-gdb - start VPP in gdb (release)"
453 @echo " test-start-vpp-debug-in-gdb - start VPP in gdb (debug)"
454 @echo ""
Klement Sekerab23ffd72021-05-31 16:08:53 +0200455 @echo "Creating test code coverage report:"
Klement Sekerae2636852021-03-16 12:52:12 +0100456 @echo ""
Dave Wallacef0797d12019-11-15 17:29:15 -0500457 @echo " test-cov - generate code coverage report for test framework"
458 @echo " test-wipe-cov - wipe code coverage report for test framework"
Klement Sekera277b89c2016-10-28 13:20:27 +0200459 @echo ""
Klement Sekerab23ffd72021-05-31 16:08:53 +0200460 @echo "Verifying code-style:"
461 @echo ""
Dave Wallacef0797d12019-11-15 17:29:15 -0500462 @echo " test-checkstyle - check PEP8 compliance"
Klement Sekera72715ee2017-01-17 10:37:05 +0100463 @echo ""