BenoƮt Ganne | 9fb6d40 | 2019-04-15 15:28:21 +0200 | [diff] [blame] | 1 | ASAN_OPTIONS?=verify_asan_link_order=0:detect_leaks=0:abort_on_error=1:unmap_shadow_on_exit=1:disable_coredump=0 |
| 2 | export ASAN_OPTIONS |
| 3 | |
Dave Wallace | f0797d1 | 2019-11-15 17:29:15 -0500 | [diff] [blame] | 4 | .PHONY: verify-env |
| 5 | verify-env: |
| 6 | ifndef WS_ROOT |
| 7 | $(error WS_ROOT is not set) |
| 8 | endif |
| 9 | ifndef BR |
| 10 | $(error BR is not set) |
| 11 | endif |
Klement Sekera | b8c72a4 | 2018-11-08 11:21:39 +0100 | [diff] [blame] | 12 | ifndef TEST_DIR |
| 13 | $(error TEST_DIR is not set) |
Klement Sekera | 277b89c | 2016-10-28 13:20:27 +0200 | [diff] [blame] | 14 | endif |
| 15 | |
Dave Wallace | eddd8e3 | 2021-05-12 21:43:59 -0400 | [diff] [blame] | 16 | export TEST_BR = $(TEST_DIR) |
Dave Wallace | f0797d1 | 2019-11-15 17:29:15 -0500 | [diff] [blame] | 17 | FAILED_DIR=/tmp/vpp-failed-unittests/ |
Dave Wallace | eddd8e3 | 2021-05-12 21:43:59 -0400 | [diff] [blame] | 18 | VPP_TEST_DIRS=$(shell ls -d $(TEST_DIR) $(EXTERN_TESTS)) |
Dave Wallace | f0797d1 | 2019-11-15 17:29:15 -0500 | [diff] [blame] | 19 | |
Klement Sekera | e263685 | 2021-03-16 12:52:12 +0100 | [diff] [blame] | 20 | FORCE_NO_WIPE=0 |
Klement Sekera | db4e84c | 2017-08-11 10:06:15 +0200 | [diff] [blame] | 21 | ifeq ($(DEBUG),gdb) |
| 22 | FORCE_FOREGROUND=1 |
| 23 | else ifeq ($(DEBUG),gdbserver) |
| 24 | FORCE_FOREGROUND=1 |
Dave Wallace | 2456433 | 2019-10-21 02:53:14 +0000 | [diff] [blame] | 25 | else ifeq ($(DEBUG),gdb-all) |
| 26 | FORCE_FOREGROUND=1 |
| 27 | else ifeq ($(DEBUG),gdbserver-all) |
| 28 | FORCE_FOREGROUND=1 |
Klement Sekera | b90be67 | 2017-10-10 06:44:05 +0200 | [diff] [blame] | 29 | else ifeq ($(DEBUG),core) |
| 30 | FORCE_FOREGROUND=1 |
Klement Sekera | e263685 | 2021-03-16 12:52:12 +0100 | [diff] [blame] | 31 | else ifeq ($(DEBUG),attach) |
| 32 | FORCE_FOREGROUND=1 |
| 33 | FORCE_NO_WIPE=1 |
juraj.linkes | 184870a | 2018-07-16 14:22:01 +0200 | [diff] [blame] | 34 | else ifeq ($(STEP),yes) |
| 35 | FORCE_FOREGROUND=1 |
| 36 | else ifeq ($(STEP),y) |
| 37 | FORCE_FOREGROUND=1 |
| 38 | else ifeq ($(STEP),1) |
| 39 | FORCE_FOREGROUND=1 |
Klement Sekera | db4e84c | 2017-08-11 10:06:15 +0200 | [diff] [blame] | 40 | else |
| 41 | FORCE_FOREGROUND=0 |
| 42 | endif |
| 43 | |
Klement Sekera | bbfa5fd | 2018-06-27 13:54:32 +0200 | [diff] [blame] | 44 | ifdef PROFILE_OUTPUT |
| 45 | PROFILE_OUTPUT_OPTS=-o $(PROFILE_OUTPUT) |
| 46 | endif |
| 47 | |
| 48 | ifndef PROFILE_SORT_BY |
| 49 | PROFILE_SORT_BY=cumtime |
| 50 | endif |
| 51 | |
| 52 | ifeq ($(PROFILE),1) |
| 53 | PYTHON_PROFILE_OPTS=-m cProfile $(PROFILE_OUTPUT_OPTS) -s $(PROFILE_SORT_BY) |
| 54 | FORCE_FOREGROUND=1 |
| 55 | endif |
| 56 | |
Klement Sekera | 993e0ed | 2017-03-16 09:14:59 +0100 | [diff] [blame] | 57 | UNITTEST_EXTRA_OPTS= |
| 58 | UNITTEST_FAILFAST_OPTS= |
Klement Sekera | acb9b8e | 2017-02-14 02:55:31 +0100 | [diff] [blame] | 59 | |
| 60 | ifeq ($(FAILFAST),1) |
Klement Sekera | 993e0ed | 2017-03-16 09:14:59 +0100 | [diff] [blame] | 61 | UNITTEST_EXTRA_OPTS=-f |
| 62 | endif |
| 63 | |
| 64 | ifneq ($(EXTERN_TESTS),) |
| 65 | UNITTEST_EXTRA_OPTS=$(UNITTEST_FAILFAST_OPTS) -d $(EXTERN_TESTS) |
Klement Sekera | acb9b8e | 2017-02-14 02:55:31 +0100 | [diff] [blame] | 66 | endif |
| 67 | |
Dave Wallace | eddd8e3 | 2021-05-12 21:43:59 -0400 | [diff] [blame] | 68 | VENV_PATH=$(TEST_DIR)/venv |
Klement Sekera | b8c72a4 | 2018-11-08 11:21:39 +0100 | [diff] [blame] | 69 | |
Klement Sekera | ebbaf55 | 2018-02-17 13:41:33 +0100 | [diff] [blame] | 70 | ifeq ($(TEST_DEBUG),1) |
Dave Wallace | f0797d1 | 2019-11-15 17:29:15 -0500 | [diff] [blame] | 71 | VENV_RUN_DIR:=$(VENV_PATH)/run-debug |
Klement Sekera | ebbaf55 | 2018-02-17 13:41:33 +0100 | [diff] [blame] | 72 | else |
Dave Wallace | f0797d1 | 2019-11-15 17:29:15 -0500 | [diff] [blame] | 73 | VENV_RUN_DIR:=$(VENV_PATH)/run |
Klement Sekera | ebbaf55 | 2018-02-17 13:41:33 +0100 | [diff] [blame] | 74 | endif |
| 75 | |
vagrant | 937bf30 | 2017-04-07 01:48:47 +0000 | [diff] [blame] | 76 | ifeq ($(PYTHON),) |
Ole Troan | 6e6ad64 | 2020-02-04 13:28:13 +0100 | [diff] [blame] | 77 | PYTHON_INTERP=python3 |
vagrant | 937bf30 | 2017-04-07 01:48:47 +0000 | [diff] [blame] | 78 | else |
| 79 | PYTHON_INTERP=$(PYTHON) |
| 80 | endif |
| 81 | |
Aloys Augustin | 28fa8cb | 2019-06-21 17:04:29 +0200 | [diff] [blame] | 82 | PYTHON_VERSION=$(shell $(PYTHON_INTERP) -c 'import sys; print(sys.version_info.major)') |
Dave Wallace | fa5aabb | 2022-02-05 09:27:05 -0500 | [diff] [blame^] | 83 | PIP_VERSION=22.0.3 |
Aloys Augustin | ef29fa4 | 2020-05-25 18:07:24 +0200 | [diff] [blame] | 84 | # Keep in sync with requirements.txt |
Dave Wallace | fa5aabb | 2022-02-05 09:27:05 -0500 | [diff] [blame^] | 85 | PIP_TOOLS_VERSION=6.5.0 |
| 86 | PIP_SETUPTOOLS_VERSION=60.7.1 |
Aloys Augustin | 28fa8cb | 2019-06-21 17:04:29 +0200 | [diff] [blame] | 87 | PYTHON_DEPENDS=requirements-$(PYTHON_VERSION).txt |
Ole Troan | 6e6ad64 | 2020-02-04 13:28:13 +0100 | [diff] [blame] | 88 | SCAPY_SOURCE=$(shell find $(VENV_PATH)/lib/python* -name site-packages) |
Dave Wallace | f0797d1 | 2019-11-15 17:29:15 -0500 | [diff] [blame] | 89 | BUILD_COV_DIR=$(TEST_BR)/coverage |
Aloys Augustin | 28fa8cb | 2019-06-21 17:04:29 +0200 | [diff] [blame] | 90 | |
Aloys Augustin | ef29fa4 | 2020-05-25 18:07:24 +0200 | [diff] [blame] | 91 | PIP_TOOLS_INSTALL_DONE=$(VENV_RUN_DIR)/pip-tools-install-$(PYTHON_VERSION)-$(PIP_TOOLS_VERSION).done |
| 92 | PIP_INSTALL_DONE=$(VENV_RUN_DIR)/pip-install-$(PYTHON_VERSION)-$(PIP_VERSION).done |
Dave Wallace | f0797d1 | 2019-11-15 17:29:15 -0500 | [diff] [blame] | 93 | PIP_PATCH_DONE=$(VENV_RUN_DIR)/pip-patch-$(PYTHON_VERSION).done |
| 94 | PAPI_INSTALL_DONE=$(VENV_RUN_DIR)/papi-install-$(PYTHON_VERSION).done |
| 95 | PAPI_PYTHON_SRC_DIR=$(WS_ROOT)/src/vpp-api/python |
| 96 | PAPI_WIPE_DIST=$(WS_ROOT)/src/vpp-api/vapi/__pycache__ \ |
| 97 | $(PAPI_PYTHON_SRC_DIR)/build \ |
| 98 | $(PAPI_PYTHON_SRC_DIR)/vpp_papi.egg-info \ |
| 99 | $(PAPI_PYTHON_SRC_DIR)/vpp_papi/__pycache__ |
Aloys Augustin | 28fa8cb | 2019-06-21 17:04:29 +0200 | [diff] [blame] | 100 | |
Aloys Augustin | 28fa8cb | 2019-06-21 17:04:29 +0200 | [diff] [blame] | 101 | $(PIP_TOOLS_INSTALL_DONE): |
| 102 | @rm -rf $(VENV_PATH) |
Dave Wallace | f0797d1 | 2019-11-15 17:29:15 -0500 | [diff] [blame] | 103 | @mkdir -p $(VENV_RUN_DIR) |
Klement Sekera | 7554aef | 2021-03-30 19:46:06 +0200 | [diff] [blame] | 104 | @$(PYTHON_INTERP) -m venv $(VENV_PATH) |
Aloys Augustin | 8adb92b | 2019-07-23 15:19:28 +0200 | [diff] [blame] | 105 | # pip version pinning |
| 106 | @bash -c "source $(VENV_PATH)/bin/activate && \ |
Klement Sekera | a8a9a8a | 2021-04-10 12:37:04 +0200 | [diff] [blame] | 107 | python3 -m pip install pip===$(PIP_VERSION)" |
Aloys Augustin | 28fa8cb | 2019-06-21 17:04:29 +0200 | [diff] [blame] | 108 | @bash -c "source $(VENV_PATH)/bin/activate && \ |
Klement Sekera | a8a9a8a | 2021-04-10 12:37:04 +0200 | [diff] [blame] | 109 | python3 -m pip install pip-tools===$(PIP_TOOLS_VERSION)" |
Dave Wallace | fa5aabb | 2022-02-05 09:27:05 -0500 | [diff] [blame^] | 110 | @bash -c "source $(VENV_PATH)/bin/activate && \ |
| 111 | python3 -m pip install setuptools===$(PIP_SETUPTOOLS_VERSION)" |
Aloys Augustin | 28fa8cb | 2019-06-21 17:04:29 +0200 | [diff] [blame] | 112 | @touch $@ |
| 113 | |
Aloys Augustin | 8eca60d | 2020-06-24 11:33:20 +0200 | [diff] [blame] | 114 | $(PYTHON_DEPENDS): requirements.txt |
Aloys Augustin | 28fa8cb | 2019-06-21 17:04:29 +0200 | [diff] [blame] | 115 | @bash -c "source $(VENV_PATH)/bin/activate && \ |
| 116 | CUSTOM_COMPILE_COMMAND='make test-refresh-deps (or update requirements.txt)' \ |
Klement Sekera | a8a9a8a | 2021-04-10 12:37:04 +0200 | [diff] [blame] | 117 | python3 -m piptools compile -q --generate-hashes requirements.txt --output-file $@" |
Aloys Augustin | 28fa8cb | 2019-06-21 17:04:29 +0200 | [diff] [blame] | 118 | |
Aloys Augustin | 8eca60d | 2020-06-24 11:33:20 +0200 | [diff] [blame] | 119 | $(PIP_INSTALL_DONE): $(PIP_TOOLS_INSTALL_DONE) $(PYTHON_DEPENDS) |
Aloys Augustin | 28fa8cb | 2019-06-21 17:04:29 +0200 | [diff] [blame] | 120 | @bash -c "source $(VENV_PATH)/bin/activate && \ |
Klement Sekera | a8a9a8a | 2021-04-10 12:37:04 +0200 | [diff] [blame] | 121 | python3 -m piptools sync $(PYTHON_DEPENDS)" |
Neale Ranns | 177bbdc | 2016-11-15 09:46:51 +0000 | [diff] [blame] | 122 | @touch $@ |
| 123 | |
Klement Sekera | 9f9d07b | 2016-12-12 09:20:50 +0100 | [diff] [blame] | 124 | $(PIP_PATCH_DONE): $(PIP_INSTALL_DONE) |
Neale Ranns | 177bbdc | 2016-11-15 09:46:51 +0000 | [diff] [blame] | 125 | @echo --- patching --- |
Dave Wallace | 6f692d6 | 2017-01-26 21:07:10 -0500 | [diff] [blame] | 126 | @sleep 1 # Ensure python recompiles patched *.py files -> *.pyc |
snaramre | 5d4b891 | 2019-12-13 23:39:35 +0000 | [diff] [blame] | 127 | for f in $(CURDIR)/patches/scapy-2.4.3/*.patch ; do \ |
Neale Ranns | 177bbdc | 2016-11-15 09:46:51 +0000 | [diff] [blame] | 128 | echo Applying patch: $$(basename $$f) ; \ |
Aloys Augustin | 28fa8cb | 2019-06-21 17:04:29 +0200 | [diff] [blame] | 129 | patch --forward -p1 -d $(SCAPY_SOURCE) < $$f ; \ |
| 130 | retCode=$$?; \ |
Aloys Augustin | 8eca60d | 2020-06-24 11:33:20 +0200 | [diff] [blame] | 131 | [ $$retCode -gt 1 ] && exit $$retCode; \ |
Aloys Augustin | 28fa8cb | 2019-06-21 17:04:29 +0200 | [diff] [blame] | 132 | done; \ |
| 133 | touch $@ |
Neale Ranns | 177bbdc | 2016-11-15 09:46:51 +0000 | [diff] [blame] | 134 | |
Klement Sekera | 9f9d07b | 2016-12-12 09:20:50 +0100 | [diff] [blame] | 135 | $(PAPI_INSTALL_DONE): $(PIP_PATCH_DONE) |
Klement Sekera | a8a9a8a | 2021-04-10 12:37:04 +0200 | [diff] [blame] | 136 | @bash -c "source $(VENV_PATH)/bin/activate && python3 -m pip install -e $(PAPI_PYTHON_SRC_DIR)" |
Neale Ranns | 177bbdc | 2016-11-15 09:46:51 +0000 | [diff] [blame] | 137 | @touch $@ |
| 138 | |
Dave Wallace | f0797d1 | 2019-11-15 17:29:15 -0500 | [diff] [blame] | 139 | .PHONY: refresh-deps |
Aloys Augustin | 28fa8cb | 2019-06-21 17:04:29 +0200 | [diff] [blame] | 140 | refresh-deps: clean-deps $(PYTHON_DEPENDS) |
| 141 | |
Dave Wallace | f0797d1 | 2019-11-15 17:29:15 -0500 | [diff] [blame] | 142 | .PHONY: clean-deps |
Aloys Augustin | 28fa8cb | 2019-06-21 17:04:29 +0200 | [diff] [blame] | 143 | clean-deps: |
| 144 | @rm -f $(PYTHON_DEPENDS) |
| 145 | |
Dave Wallace | f0797d1 | 2019-11-15 17:29:15 -0500 | [diff] [blame] | 146 | INTERN_PLUGIN_SRC_DIR=$(WS_ROOT)/src/plugins |
Dave Wallace | a43c93f | 2019-08-22 00:32:29 +0000 | [diff] [blame] | 147 | ifneq ($(EXTERN_PLUGIN_SRC_DIR),) |
| 148 | PLUGIN_SRC_DIR=$(EXTERN_PLUGIN_SRC_DIR) |
| 149 | else |
Dave Wallace | f0797d1 | 2019-11-15 17:29:15 -0500 | [diff] [blame] | 150 | PLUGIN_SRC_DIR=$(INTERN_PLUGIN_SRC_DIR) |
Dave Wallace | a43c93f | 2019-08-22 00:32:29 +0000 | [diff] [blame] | 151 | endif |
Dave Wallace | a43c93f | 2019-08-22 00:32:29 +0000 | [diff] [blame] | 152 | |
Juraj Sloboda | 0279b29 | 2016-11-16 19:50:24 +0100 | [diff] [blame] | 153 | define retest-func |
Dave Wallace | eddd8e3 | 2021-05-12 21:43:59 -0400 | [diff] [blame] | 154 | @env VPP_IN_GDB=$(VPP_IN_GDB) 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) run_tests.py -d $(TEST_DIR) $(UNITTEST_EXTRA_OPTS) || env FAILED_DIR=$(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] | 155 | endef |
| 156 | |
Klement Sekera | c160ae0 | 2017-03-09 08:20:13 +0100 | [diff] [blame] | 157 | .PHONY: sanity |
| 158 | |
Klement Sekera | 41a9e51 | 2017-10-17 07:59:31 +0200 | [diff] [blame] | 159 | ifeq ($(SANITY),no) |
| 160 | SANITY_IMPORT_VPP_PAPI_CMD=true |
| 161 | SANITY_RUN_VPP_CMD=true |
| 162 | else |
Klement Sekera | a8a9a8a | 2021-04-10 12:37:04 +0200 | [diff] [blame] | 163 | SANITY_IMPORT_VPP_PAPI_CMD=source $(VENV_PATH)/bin/activate && python3 sanity_import_vpp_papi.py |
| 164 | SANITY_RUN_VPP_CMD=source $(VENV_PATH)/bin/activate && python3 sanity_run_vpp.py |
Klement Sekera | 41a9e51 | 2017-10-17 07:59:31 +0200 | [diff] [blame] | 165 | endif |
| 166 | |
juraj.linkes | 184870a | 2018-07-16 14:22:01 +0200 | [diff] [blame] | 167 | ifndef TEST_JOBS |
| 168 | PARALLEL_ILLEGAL=0 |
| 169 | else ifeq ($(FORCE_FOREGROUND),0) |
| 170 | PARALLEL_ILLEGAL=0 |
| 171 | else ifeq ($(TEST_JOBS),auto) |
| 172 | PARALLEL_ILLEGAL=0 |
| 173 | else ifeq ($(TEST_JOBS),1) |
| 174 | PARALLEL_ILLEGAL=0 |
| 175 | else |
| 176 | PARALLEL_ILLEGAL=1 |
| 177 | endif |
| 178 | |
Klement Sekera | e263685 | 2021-03-16 12:52:12 +0100 | [diff] [blame] | 179 | sanity: test-dep |
juraj.linkes | 184870a | 2018-07-16 14:22:01 +0200 | [diff] [blame] | 180 | @bash -c "test $(PARALLEL_ILLEGAL) -eq 0 ||\ |
| 181 | (echo \"*******************************************************************\" &&\ |
| 182 | echo \"* Sanity check failed, TEST_JOBS is not 1 or 'auto' and DEBUG, STEP or PROFILE is set\" &&\ |
| 183 | echo \"*******************************************************************\" &&\ |
| 184 | false)" |
Klement Sekera | 41a9e51 | 2017-10-17 07:59:31 +0200 | [diff] [blame] | 185 | @bash -c "$(SANITY_IMPORT_VPP_PAPI_CMD) ||\ |
Klement Sekera | c160ae0 | 2017-03-09 08:20:13 +0100 | [diff] [blame] | 186 | (echo \"*******************************************************************\" &&\ |
| 187 | echo \"* Sanity check failed, cannot import vpp_papi\" &&\ |
| 188 | echo \"* to debug: \" &&\ |
| 189 | echo \"* 1. enter test shell: make test-shell\" &&\ |
| 190 | echo \"* 2. execute debugger: gdb python -ex 'run sanity_import_vpp_papi.py'\" &&\ |
| 191 | echo \"*******************************************************************\" &&\ |
| 192 | false)" |
Klement Sekera | 41a9e51 | 2017-10-17 07:59:31 +0200 | [diff] [blame] | 193 | @bash -c "$(SANITY_RUN_VPP_CMD) ||\ |
Klement Sekera | 3747c75 | 2017-04-10 06:30:17 +0200 | [diff] [blame] | 194 | (echo \"*******************************************************************\" &&\ |
| 195 | echo \"* Sanity check failed, cannot run vpp\" &&\ |
| 196 | echo \"*******************************************************************\" &&\ |
| 197 | false)" |
Klement Sekera | c160ae0 | 2017-03-09 08:20:13 +0100 | [diff] [blame] | 198 | |
Dave Wallace | f0797d1 | 2019-11-15 17:29:15 -0500 | [diff] [blame] | 199 | $(FAILED_DIR): reset |
| 200 | @mkdir -p $@ |
| 201 | |
| 202 | .PHONY: test-dep |
Dave Wallace | eddd8e3 | 2021-05-12 21:43:59 -0400 | [diff] [blame] | 203 | test-dep: $(PAPI_INSTALL_DONE) $(FAILED_DIR) |
Dave Wallace | f0797d1 | 2019-11-15 17:29:15 -0500 | [diff] [blame] | 204 | |
| 205 | .PHONY: test |
Damjan Marion | a2d6d35 | 2021-05-25 18:29:24 +0200 | [diff] [blame] | 206 | test: test-dep sanity |
Juraj Sloboda | 0279b29 | 2016-11-16 19:50:24 +0100 | [diff] [blame] | 207 | $(call retest-func) |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 208 | |
Dave Wallace | f0797d1 | 2019-11-15 17:29:15 -0500 | [diff] [blame] | 209 | .PHONY: retest |
| 210 | retest: verify-env sanity $(FAILED_DIR) |
Juraj Sloboda | 0279b29 | 2016-11-16 19:50:24 +0100 | [diff] [blame] | 211 | $(call retest-func) |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 212 | |
Dave Wallace | f0797d1 | 2019-11-15 17:29:15 -0500 | [diff] [blame] | 213 | .PHONY: shell |
| 214 | shell: test-dep |
Klement Sekera | b8c72a4 | 2018-11-08 11:21:39 +0100 | [diff] [blame] | 215 | @echo "source $(VENV_PATH)/bin/activate;\ |
Paul Vinciguerra | c701e57 | 2019-12-19 16:09:43 -0500 | [diff] [blame] | 216 | export RND_SEED=$(RND_SEED);\ |
Klement Sekera | a86e289 | 2017-03-09 08:01:52 +0100 | [diff] [blame] | 217 | echo '***';\ |
Dave Wallace | fd24374 | 2021-03-16 22:12:07 -0400 | [diff] [blame] | 218 | echo PYTHONPATH=$(PYTHONPATH);\ |
Paul Vinciguerra | c701e57 | 2019-12-19 16:09:43 -0500 | [diff] [blame] | 219 | echo RND_SEED=$(RND_SEED);\ |
Klement Sekera | 593635d | 2019-02-07 19:56:50 +0100 | [diff] [blame] | 220 | echo VPP_BUILD_DIR=$(VPP_BUILD_DIR);\ |
| 221 | echo VPP_BIN=$(VPP_BIN);\ |
| 222 | echo VPP_PLUGIN_PATH=$(VPP_PLUGIN_PATH);\ |
Dave Barach | 7d31ab2 | 2019-05-08 19:18:18 -0400 | [diff] [blame] | 223 | echo VPP_TEST_PLUGIN_PATH=$(VPP_TEST_PLUGIN_PATH);\ |
Klement Sekera | 593635d | 2019-02-07 19:56:50 +0100 | [diff] [blame] | 224 | echo VPP_INSTALL_PATH=$(VPP_INSTALL_PATH);\ |
Klement Sekera | 47e275b | 2017-03-21 08:21:25 +0100 | [diff] [blame] | 225 | echo EXTERN_TESTS=$(EXTERN_TESTS);\ |
| 226 | echo EXTERN_PLUGINS=$(EXTERN_PLUGINS);\ |
Klement Sekera | cd6cb98 | 2017-05-11 06:55:32 +0200 | [diff] [blame] | 227 | echo EXTERN_COV_DIR=$(EXTERN_COV_DIR);\ |
Klement Sekera | a86e289 | 2017-03-09 08:01:52 +0100 | [diff] [blame] | 228 | echo LD_LIBRARY_PATH=$(LD_LIBRARY_PATH);\ |
| 229 | echo '***';\ |
| 230 | exec </dev/tty" | bash -i |
| 231 | |
Dave Wallace | f0797d1 | 2019-11-15 17:29:15 -0500 | [diff] [blame] | 232 | .PHONY: reset |
Neale Ranns | 177bbdc | 2016-11-15 09:46:51 +0000 | [diff] [blame] | 233 | reset: |
Klement Sekera | aa7a2a1 | 2021-03-18 15:22:57 +0100 | [diff] [blame] | 234 | @rm -f /dev/shm/vpp-unittest-* |
Klement Sekera | e263685 | 2021-03-16 12:52:12 +0100 | [diff] [blame] | 235 | @if [ $(FORCE_NO_WIPE) -eq "0" ] ; then rm -rf /tmp/vpp-unittest-*; fi |
Dave Wallace | f0797d1 | 2019-11-15 17:29:15 -0500 | [diff] [blame] | 236 | @rm -f /tmp/api_post_mortem.* |
Klement Sekera | b8c72a4 | 2018-11-08 11:21:39 +0100 | [diff] [blame] | 237 | @rm -rf $(FAILED_DIR) |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 238 | |
Dave Wallace | f0797d1 | 2019-11-15 17:29:15 -0500 | [diff] [blame] | 239 | .PHONY: wipe |
Neale Ranns | 177bbdc | 2016-11-15 09:46:51 +0000 | [diff] [blame] | 240 | wipe: reset |
Klement Sekera | b8c72a4 | 2018-11-08 11:21:39 +0100 | [diff] [blame] | 241 | @rm -rf $(VENV_PATH) |
Neale Ranns | 02da926 | 2021-01-08 08:43:14 +0000 | [diff] [blame] | 242 | @rm -rf $(patsubst %,%/__pycache__, $(VPP_TEST_DIRS)) |
Neale Ranns | 177bbdc | 2016-11-15 09:46:51 +0000 | [diff] [blame] | 243 | |
Dave Wallace | f0797d1 | 2019-11-15 17:29:15 -0500 | [diff] [blame] | 244 | $(BUILD_COV_DIR): |
| 245 | @mkdir -p $@ |
| 246 | |
| 247 | .PHONY: cov |
| 248 | cov: wipe-cov test-dep ext $(BUILD_COV_DIR) |
Klement Sekera | 593635d | 2019-02-07 19:56:50 +0100 | [diff] [blame] | 249 | @lcov --zerocounters --directory $(VPP_BUILD_DIR) |
Klement Sekera | cd6cb98 | 2017-05-11 06:55:32 +0200 | [diff] [blame] | 250 | @test -z "$(EXTERN_COV_DIR)" || lcov --zerocounters --directory $(EXTERN_COV_DIR) |
Juraj Sloboda | 0279b29 | 2016-11-16 19:50:24 +0100 | [diff] [blame] | 251 | $(call retest-func) |
Klement Sekera | 593635d | 2019-02-07 19:56:50 +0100 | [diff] [blame] | 252 | @lcov --capture --directory $(VPP_BUILD_DIR) --output-file $(BUILD_COV_DIR)/coverage.info |
Klement Sekera | cd6cb98 | 2017-05-11 06:55:32 +0200 | [diff] [blame] | 253 | @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] | 254 | @genhtml $(BUILD_COV_DIR)/coverage.info --output-directory $(BUILD_COV_DIR)/html |
Klement Sekera | cd6cb98 | 2017-05-11 06:55:32 +0200 | [diff] [blame] | 255 | @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] | 256 | @echo |
| 257 | @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] | 258 | @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] | 259 | |
Klement Sekera | 9f9d07b | 2016-12-12 09:20:50 +0100 | [diff] [blame] | 260 | .PHONY: wipe-cov |
Juraj Sloboda | 0279b29 | 2016-11-16 19:50:24 +0100 | [diff] [blame] | 261 | wipe-cov: wipe |
| 262 | @rm -rf $(BUILD_COV_DIR) |
| 263 | |
Dave Wallace | f0797d1 | 2019-11-15 17:29:15 -0500 | [diff] [blame] | 264 | .PHONY: wipe-papi |
| 265 | wipe-papi: |
| 266 | @rm -rf $(PAPI_INSTALL_DONE) $(PAPI_WIPE_DIST) |
Paul Vinciguerra | 2648e44 | 2019-07-09 16:49:46 -0400 | [diff] [blame] | 267 | |
Dave Wallace | f0797d1 | 2019-11-15 17:29:15 -0500 | [diff] [blame] | 268 | .PHONY: wipe-all |
Nathan Skrzypczak | 9ad39c0 | 2021-08-19 11:38:06 +0200 | [diff] [blame] | 269 | wipe-all: wipe wipe-papi wipe-cov |
Dave Wallace | f0797d1 | 2019-11-15 17:29:15 -0500 | [diff] [blame] | 270 | @rm -rf $(TEST_BR) |
Paul Vinciguerra | 2648e44 | 2019-07-09 16:49:46 -0400 | [diff] [blame] | 271 | |
Klement Sekera | e0b63b2 | 2021-03-24 23:24:52 +0100 | [diff] [blame] | 272 | .PHONY: checkstyle-diff |
Dave Wallace | eddd8e3 | 2021-05-12 21:43:59 -0400 | [diff] [blame] | 273 | checkstyle-diff: $(PIP_INSTALL_DONE) |
Klement Sekera | e0b63b2 | 2021-03-24 23:24:52 +0100 | [diff] [blame] | 274 | @bash -c "source $(VENV_PATH)/bin/activate &&\ |
Klement Sekera | a8a9a8a | 2021-04-10 12:37:04 +0200 | [diff] [blame] | 275 | python3 -m pip install pycodestyle" |
Klement Sekera | e0b63b2 | 2021-03-24 23:24:52 +0100 | [diff] [blame] | 276 | @bash -c "source $(VENV_PATH)/bin/activate &&\ |
Klement Sekera | 0e95c18 | 2022-02-03 16:03:26 +0000 | [diff] [blame] | 277 | cd $(WS_ROOT) && git diff --name-only --no-color --relative HEAD~1 ':!*.patch' | grep '.py$$' | xargs -I XXX \ |
| 278 | pycodestyle --show-source --ignore=W504,E126,E241,E226,E305,E704,E741,E722 -v XXX ||\ |
Klement Sekera | e0b63b2 | 2021-03-24 23:24:52 +0100 | [diff] [blame] | 279 | (echo \"*********************************************************************\" &&\ |
| 280 | echo \"* Test framework PEP8 compliance check FAILED (checked changed files)\" &&\ |
| 281 | echo \"*********************************************************************\" &&\ |
| 282 | false)" |
| 283 | @echo "*********************************************************************" |
| 284 | @echo "* Test framework PEP8 compliance check passed (checked changed files)" |
| 285 | @echo "*********************************************************************" |
| 286 | |
Klement Sekera | e263685 | 2021-03-16 12:52:12 +0100 | [diff] [blame] | 287 | .PHONY: start-gdb |
| 288 | start-gdb: sanity |
| 289 | $(eval VPP_IN_GDB=1) |
| 290 | $(eval FORCE_FOREGROUND=1) |
| 291 | $(call retest-func) |
| 292 | |
Klement Sekera | 72715ee | 2017-01-17 10:37:05 +0100 | [diff] [blame] | 293 | .PHONY: checkstyle |
Dave Wallace | eddd8e3 | 2021-05-12 21:43:59 -0400 | [diff] [blame] | 294 | checkstyle: $(PIP_INSTALL_DONE) |
Ole Troan | 4aacc01 | 2019-10-23 11:47:33 +0200 | [diff] [blame] | 295 | @bash -c "source $(VENV_PATH)/bin/activate &&\ |
Klement Sekera | a8a9a8a | 2021-04-10 12:37:04 +0200 | [diff] [blame] | 296 | python3 -m pip install pycodestyle" |
Klement Sekera | b8c72a4 | 2018-11-08 11:21:39 +0100 | [diff] [blame] | 297 | @bash -c "source $(VENV_PATH)/bin/activate &&\ |
Dave Wallace | eddd8e3 | 2021-05-12 21:43:59 -0400 | [diff] [blame] | 298 | pycodestyle --show-source --ignore=W504,E126,E241,E226,E305,E704,E741,E722 -v *.py ||\ |
Klement Sekera | 72715ee | 2017-01-17 10:37:05 +0100 | [diff] [blame] | 299 | (echo \"*******************************************************************\" &&\ |
Klement Sekera | e0b63b2 | 2021-03-24 23:24:52 +0100 | [diff] [blame] | 300 | echo \"* Test framework PEP8 compliance check FAILED (checked all files)\" &&\ |
Klement Sekera | 72715ee | 2017-01-17 10:37:05 +0100 | [diff] [blame] | 301 | echo \"*******************************************************************\" &&\ |
| 302 | false)" |
| 303 | @echo "*******************************************************************" |
Klement Sekera | e0b63b2 | 2021-03-24 23:24:52 +0100 | [diff] [blame] | 304 | @echo "* Test framework PEP8 compliance check passed (checked all files)" |
Klement Sekera | 72715ee | 2017-01-17 10:37:05 +0100 | [diff] [blame] | 305 | @echo "*******************************************************************" |
| 306 | |
Dave Wallace | f0797d1 | 2019-11-15 17:29:15 -0500 | [diff] [blame] | 307 | .PHONY: help |
Klement Sekera | 277b89c | 2016-10-28 13:20:27 +0200 | [diff] [blame] | 308 | help: |
| 309 | @echo "Running tests:" |
| 310 | @echo "" |
Dave Wallace | f0797d1 | 2019-11-15 17:29:15 -0500 | [diff] [blame] | 311 | @echo " test - build and run (basic) functional tests" |
| 312 | @echo " test-debug - build and run (basic) functional tests (debug build)" |
| 313 | @echo " test-all - build and run functional and extended tests" |
| 314 | @echo " test-all-debug - build and run functional and extended tests (debug build)" |
| 315 | @echo " retest - run functional tests" |
| 316 | @echo " retest-debug - run functional tests (debug build)" |
| 317 | @echo " retest-all - run functional and extended tests" |
| 318 | @echo " retest-all-debug - run functional and extended tests (debug build)" |
| 319 | @echo " test-cov - generate code coverage report for test framework" |
| 320 | @echo " test-gcov - build and run functional tests (gcov build)" |
Dave Wallace | f0797d1 | 2019-11-15 17:29:15 -0500 | [diff] [blame] | 321 | @echo " test-wipe - wipe (temporary) files generated by unit tests" |
| 322 | @echo " test-wipe-cov - wipe code coverage report for test framework" |
Dave Wallace | f0797d1 | 2019-11-15 17:29:15 -0500 | [diff] [blame] | 323 | @echo " test-wipe-papi - rebuild vpp_papi sources" |
Nathan Skrzypczak | 9ad39c0 | 2021-08-19 11:38:06 +0200 | [diff] [blame] | 324 | @echo " test-wipe-all - wipe (temporary) files generated by unit tests, and coverage" |
Dave Wallace | f0797d1 | 2019-11-15 17:29:15 -0500 | [diff] [blame] | 325 | @echo " test-shell - enter shell with test environment" |
| 326 | @echo " test-shell-debug - enter shell with test environment (debug build)" |
Klement Sekera | e263685 | 2021-03-16 12:52:12 +0100 | [diff] [blame] | 327 | @echo " test-checkstyle - check PEP8 compliance for test framework" |
| 328 | @echo " test-refresh-deps - refresh the Python dependencies for the tests" |
Klement Sekera | 277b89c | 2016-10-28 13:20:27 +0200 | [diff] [blame] | 329 | @echo "" |
| 330 | @echo "Arguments controlling test runs:" |
Dave Wallace | f0797d1 | 2019-11-15 17:29:15 -0500 | [diff] [blame] | 331 | @echo " V=[0|1|2] - set test verbosity level" |
| 332 | @echo " 0=ERROR, 1=INFO, 2=DEBUG" |
Klement Sekera | 558ceab | 2021-04-08 19:37:41 +0200 | [diff] [blame] | 333 | @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)" |
| 334 | @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)" |
Dave Wallace | f0797d1 | 2019-11-15 17:29:15 -0500 | [diff] [blame] | 335 | @echo " CACHE_OUTPUT=[0|1] - cache VPP stdout/stderr and log as one block after test finishes (default: 1)" |
| 336 | @echo " FAILFAST=[0|1] - fail fast if 1, complete all tests if 0" |
| 337 | @echo " TIMEOUT=<timeout> - fail test suite if any single test takes longer than <timeout> (in seconds) to finish (default: 600)" |
| 338 | @echo " RETRIES=<n> - retry failed tests <n> times" |
| 339 | @echo " DEBUG=<type> - set VPP debugging kind" |
| 340 | @echo " DEBUG=core - detect coredump and load it in gdb on crash" |
| 341 | @echo " DEBUG=gdb - allow easy debugging by printing VPP PID" |
| 342 | @echo " and waiting for user input before running" |
| 343 | @echo " and tearing down a testcase" |
| 344 | @echo " DEBUG=gdbserver - run gdb inside a gdb server, otherwise" |
| 345 | @echo " same as above" |
Klement Sekera | e263685 | 2021-03-16 12:52:12 +0100 | [diff] [blame] | 346 | @echo " DEBUG=attach - attach test case to already running vpp in gdb (see test-start-vpp-in-gdb)" |
| 347 | @echo "" |
Dave Wallace | f0797d1 | 2019-11-15 17:29:15 -0500 | [diff] [blame] | 348 | @echo " STEP=[yes|no] - ease debugging by stepping through a testcase" |
| 349 | @echo " SANITY=[yes|no] - perform sanity import of vpp-api/sanity vpp run before running tests (default: yes)" |
| 350 | @echo " EXTENDED_TESTS=[1|y] - used by '[re]test-all' & '[re]test-all-debug' to run extended tests" |
| 351 | @echo " TEST=<filter> - filter the set of tests:" |
| 352 | @echo " by file-name - only run tests from specified file, e.g. TEST=test_bfd selects all tests from test_bfd.py" |
| 353 | @echo " by file-suffix - same as file-name, but 'test_' is omitted e.g. TEST=bfd selects all tests from test_bfd.py" |
| 354 | @echo " by wildcard - wildcard filter is <file>.<class>.<test function>, each can be replaced by '*'" |
| 355 | @echo " e.g. TEST='test_bfd.*.*' is equivalent to above example of filter by file-name" |
| 356 | @echo " TEST='bfd.*.*' is equivalent to above example of filter by file-suffix" |
| 357 | @echo " TEST='bfd.BFDAPITestCase.*' selects all tests from test_bfd.py which are part of BFDAPITestCase class" |
| 358 | @echo " TEST='bfd.BFDAPITestCase.test_add_bfd' selects a single test named test_add_bfd from test_bfd.py/BFDAPITestCase" |
| 359 | @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] | 360 | @echo "" |
Ray Kinsella | 4830e4f | 2020-03-10 14:35:32 +0000 | [diff] [blame] | 361 | @echo " VARIANT=<variant> - specify which march node variant to unit test" |
Ray Kinsella | f9c8fe4 | 2020-08-14 15:27:10 +0100 | [diff] [blame] | 362 | @echo " e.g. VARIANT=skx test the skx march variants" |
| 363 | @echo " e.g. VARIANT=icl test the icl march variants" |
Ray Kinsella | 4830e4f | 2020-03-10 14:35:32 +0000 | [diff] [blame] | 364 | @echo "" |
Dave Wallace | f0797d1 | 2019-11-15 17:29:15 -0500 | [diff] [blame] | 365 | @echo " COREDUMP_SIZE=<size> - pass <size> as unix { coredump-size <size> } argument to vpp" |
| 366 | @echo " e.g. COREDUMP_SIZE=4g" |
| 367 | @echo " COREDUMP_SIZE=unlimited" |
| 368 | @echo " COREDUMP_COMPRESS=1 - compress core files if not debugging them" |
| 369 | @echo " EXTERN_TESTS=<path> - path to out-of-tree test_<name>.py files containing test cases" |
| 370 | @echo " EXTERN_PLUGINS=<path> - path to out-of-tree plugins to be loaded by vpp under test" |
| 371 | @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] | 372 | @echo "" |
Dave Wallace | f0797d1 | 2019-11-15 17:29:15 -0500 | [diff] [blame] | 373 | @echo " PROFILE=1 - enable profiling of test framework via cProfile module" |
| 374 | @echo " PROFILE_SORT_BY=opt - sort profiling report by opt - consult cProfile documentation for possible values (default: cumtime)" |
| 375 | @echo " PROFILE_OUTPUT=file - output profiling info to file - use absolute path (default: stdout)" |
Klement Sekera | bbfa5fd | 2018-06-27 13:54:32 +0200 | [diff] [blame] | 376 | @echo "" |
Dave Wallace | f0797d1 | 2019-11-15 17:29:15 -0500 | [diff] [blame] | 377 | @echo " TEST_DEBUG=1 - turn on debugging of the test framework itself (expert)" |
Klement Sekera | ebbaf55 | 2018-02-17 13:41:33 +0100 | [diff] [blame] | 378 | @echo "" |
Dave Wallace | f0797d1 | 2019-11-15 17:29:15 -0500 | [diff] [blame] | 379 | @echo " SKIP_AARCH64=1 - skip tests that are failing on the ARM platorm in FD.io CI" |
juraj.linkes | 68ebc83 | 2018-11-29 09:37:08 +0100 | [diff] [blame] | 380 | @echo "" |
Dave Wallace | f0797d1 | 2019-11-15 17:29:15 -0500 | [diff] [blame] | 381 | @echo " RND_SEED=seed - Seed RND with given seed" |
Klement Sekera | 45a95dd | 2019-11-05 11:18:25 +0000 | [diff] [blame] | 382 | @echo "" |
Klement Sekera | e263685 | 2021-03-16 12:52:12 +0100 | [diff] [blame] | 383 | @echo "Starting VPP in GDB for use with DEBUG=attach:" |
| 384 | @echo "" |
| 385 | @echo " test-start-vpp-in-gdb - start VPP in gdb (release)" |
| 386 | @echo " test-start-vpp-debug-in-gdb - start VPP in gdb (debug)" |
| 387 | @echo "" |
| 388 | @echo "Arguments controlling VPP in GDB runs:" |
| 389 | @echo " " |
| 390 | @echo " VPP_IN_GDB_TMP_DIR - specify directory to run VPP IN (default: /tmp/unittest-attach-gdb)" |
| 391 | @echo " VPP_IN_GDB_NO_RMDIR=0 - don't remove existing tmp dir but fail instead" |
| 392 | @echo " VPP_IN_GDB_CMDLINE=1 - add 'interactive' to VPP arguments to run with command line" |
| 393 | @echo "" |
Juraj Sloboda | 0279b29 | 2016-11-16 19:50:24 +0100 | [diff] [blame] | 394 | @echo "Creating test code coverage report" |
Dave Wallace | f0797d1 | 2019-11-15 17:29:15 -0500 | [diff] [blame] | 395 | @echo " test-cov - generate code coverage report for test framework" |
| 396 | @echo " test-wipe-cov - wipe code coverage report for test framework" |
Klement Sekera | 277b89c | 2016-10-28 13:20:27 +0200 | [diff] [blame] | 397 | @echo "" |
Klement Sekera | 72715ee | 2017-01-17 10:37:05 +0100 | [diff] [blame] | 398 | @echo "Verifying code-style" |
Dave Wallace | f0797d1 | 2019-11-15 17:29:15 -0500 | [diff] [blame] | 399 | @echo " test-checkstyle - check PEP8 compliance" |
Klement Sekera | 72715ee | 2017-01-17 10:37:05 +0100 | [diff] [blame] | 400 | @echo "" |