NAT44: delete closed TCP session (VPP-1274)
[vpp.git] / Makefile
1 # Copyright (c) 2016 Cisco and/or its affiliates.
2 # Licensed under the Apache License, Version 2.0 (the "License");
3 # you may not use this file except in compliance with the License.
4 # You may obtain a copy of the License at:
5 #
6 #     http://www.apache.org/licenses/LICENSE-2.0
7 #
8 # Unless required by applicable law or agreed to in writing, software
9 # distributed under the License is distributed on an "AS IS" BASIS,
10 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11 # See the License for the specific language governing permissions and
12 # limitations under the License.
13
14 export WS_ROOT=$(CURDIR)
15 export BR=$(WS_ROOT)/build-root
16 CCACHE_DIR?=$(BR)/.ccache
17 GDB?=gdb
18 PLATFORM?=vpp
19 SAMPLE_PLUGIN?=no
20 MACHINE=$(shell uname -m)
21 SUDO?=sudo
22
23 ,:=,
24 define disable_plugins
25 $(if $(1), \
26   "plugins {" \
27   $(patsubst %,"plugin %_plugin.so { disable }",$(subst $(,), ,$(1))) \
28   " }" \
29   ,)
30 endef
31
32 MINIMAL_STARTUP_CONF="                                                  \
33 unix {                                                                  \
34         interactive                                                     \
35         cli-listen /run/vpp/cli.sock                                    \
36         gid $(shell id -g)                                              \
37         $(if $(wildcard startup.vpp),"exec startup.vpp",)               \
38 }                                                                       \
39 $(if $(DPDK_CONFIG), "dpdk { $(DPDK_CONFIG) }",)                        \
40 $(call disable_plugins,$(DISABLED_PLUGINS))                             \
41 "
42
43 GDB_ARGS= -ex "handle SIGUSR1 noprint nostop"
44
45 #
46 # OS Detection
47 #
48 # We allow Darwin (MacOS) for docs generation; VPP build will still fail.
49 ifneq ($(shell uname),Darwin)
50 OS_ID        = $(shell grep '^ID=' /etc/os-release | cut -f2- -d= | sed -e 's/\"//g')
51 OS_VERSION_ID= $(shell grep '^VERSION_ID=' /etc/os-release | cut -f2- -d= | sed -e 's/\"//g')
52 endif
53
54 ifeq ($(filter ubuntu debian,$(OS_ID)),$(OS_ID))
55 PKG=deb
56 else ifeq ($(filter rhel centos fedora opensuse opensuse-leap,$(OS_ID)),$(OS_ID))
57 PKG=rpm
58 endif
59
60 # +libganglia1-dev if building the gmond plugin
61
62 DEB_DEPENDS  = curl build-essential autoconf automake ccache
63 DEB_DEPENDS += debhelper dkms git libtool libapr1-dev dh-systemd
64 DEB_DEPENDS += libconfuse-dev git-review exuberant-ctags cscope pkg-config
65 DEB_DEPENDS += lcov chrpath autoconf indent clang-format libnuma-dev
66 DEB_DEPENDS += python-all python-dev python-virtualenv python-pip libffi6 check
67 DEB_DEPENDS += libboost-all-dev libffi-dev python-ply libmbedtls-dev
68 ifeq ($(OS_VERSION_ID),14.04)
69         DEB_DEPENDS += openjdk-8-jdk-headless
70         DEB_DEPENDS += libssl-dev
71 else ifeq ($(OS_ID)-$(OS_VERSION_ID),debian-8)
72         DEB_DEPENDS += openjdk-8-jdk-headless
73         DEB_DEPENDS += libssl-dev
74         APT_ARGS = -t jessie-backports
75 else ifeq ($(OS_ID)-$(OS_VERSION_ID),debian-9)
76         DEB_DEPENDS += default-jdk-headless
77         DEB_DEPENDS += libssl1.0-dev
78 else 
79         DEB_DEPENDS += default-jdk-headless
80         DEB_DEPENDS += libssl-dev
81 endif
82
83 RPM_DEPENDS  = redhat-lsb glibc-static java-1.8.0-openjdk-devel yum-utils
84 RPM_DEPENDS += apr-devel
85 RPM_DEPENDS += numactl-devel
86 RPM_DEPENDS += check check-devel
87 RPM_DEPENDS += boost boost-devel
88 RPM_DEPENDS += selinux-policy selinux-policy-devel
89
90 ifeq ($(OS_ID)-$(OS_VERSION_ID),fedora-25)
91         RPM_DEPENDS += subunit subunit-devel
92         RPM_DEPENDS += openssl-devel
93         RPM_DEPENDS += python-devel python2-ply
94         RPM_DEPENDS += python2-virtualenv
95         RPM_DEPENDS += mbedtls-devel
96         RPM_DEPENDS_GROUPS = 'C Development Tools and Libraries'
97 else ifeq ($(shell if [ "$(OS_ID)" = "fedora" ]; then test $(OS_VERSION_ID) -gt 25; echo $$?; fi),0)
98         RPM_DEPENDS += subunit subunit-devel
99         RPM_DEPENDS += compat-openssl10-devel
100         RPM_DEPENDS += python2-devel python2-ply
101         RPM_DEPENDS += python2-virtualenv
102         RPM_DEPENDS += mbedtls-devel
103         RPM_DEPENDS_GROUPS = 'C Development Tools and Libraries'
104 else
105         RPM_DEPENDS += openssl-devel
106         RPM_DEPENDS += python-devel python-ply
107         RPM_DEPENDS += python-virtualenv
108         RPM_DEPENDS_GROUPS = 'Development Tools'
109 endif
110
111 # +ganglia-devel if building the ganglia plugin
112
113 RPM_DEPENDS += chrpath libffi-devel rpm-build
114
115 SUSE_NAME= $(shell grep '^NAME=' /etc/os-release | cut -f2- -d= | sed -e 's/\"//g' | cut -d' ' -f2)
116 SUSE_ID= $(shell grep '^VERSION_ID=' /etc/os-release | cut -f2- -d= | sed -e 's/\"//g' | cut -d' ' -f2)
117 RPM_SUSE_BUILDTOOLS_DEPS = autoconf automake ccache check-devel chrpath
118 RPM_SUSE_BUILDTOOLS_DEPS += clang indent libtool make python-ply
119
120 RPM_SUSE_DEVEL_DEPS = glibc-devel-static java-1_8_0-openjdk-devel libnuma-devel
121 RPM_SUSE_DEVEL_DEPS += libopenssl-devel openssl-devel mbedtls-devel
122
123 RPM_SUSE_PYTHON_DEPS = python-devel python3-devel python-pip python3-pip
124 RPM_SUSE_PYTHON_DEPS += python-rpm-macros python3-rpm-macros
125
126 RPM_SUSE_PLATFORM_DEPS = distribution-release shadow rpm-build
127
128 ifeq ($(OS_ID),opensuse)
129 ifeq ($(SUSE_NAME),Tumbleweed)
130         RPM_SUSE_DEVEL_DEPS = libboost_headers-devel libboost_thread-devel gcc
131         RPM_SUSE_PYTHON_DEPS += python2-virtualenv
132 endif
133 ifeq ($(SUSE_ID),15.0)
134         RPM_SUSE_DEVEL_DEPS = libboost_headers-devel libboost_thread-devel gcc6
135         RPM_SUSE_PYTHON_DEPS += python2-virtualenv
136 else
137         RPM_SUSE_DEVEL_DEPS += boost_1_61-devel gcc6
138         RPM_SUSE_PYTHON_DEPS += python-virtualenv
139 endif
140 endif
141
142 ifeq ($(OS_ID),opensuse-leap)
143 ifeq ($(SUSE_ID),15.0)
144         RPM_SUSE_DEVEL_DEPS = libboost_headers-devel libboost_thread-devel gcc6
145         RPM_SUSE_PYTHON_DEPS += python2-virtualenv
146 endif
147 endif
148
149 RPM_SUSE_DEPENDS += $(RPM_SUSE_BUILDTOOLS_DEPS) $(RPM_SUSE_DEVEL_DEPS) $(RPM_SUSE_PYTHON_DEPS) $(RPM_SUSE_PLATFORM_DEPS)
150
151 ifneq ($(wildcard $(STARTUP_DIR)/startup.conf),)
152         STARTUP_CONF ?= $(STARTUP_DIR)/startup.conf
153 endif
154
155 ifeq ($(findstring y,$(UNATTENDED)),y)
156 CONFIRM=-y
157 FORCE=--force-yes
158 endif
159
160 TARGETS = vpp
161
162 ifneq ($(SAMPLE_PLUGIN),no)
163 TARGETS += sample-plugin
164 endif
165
166 .PHONY: help wipe wipe-release build build-release rebuild rebuild-release
167 .PHONY: run run-release debug debug-release build-vat run-vat pkg-deb pkg-rpm
168 .PHONY: ctags cscope
169 .PHONY: test test-debug retest retest-debug test-doc test-wipe-doc test-help test-wipe
170 .PHONY: test-cov test-wipe-cov
171
172 help:
173         @echo "Make Targets:"
174         @echo " install-dep         - install software dependencies"
175         @echo " wipe                - wipe all products of debug build "
176         @echo " wipe-release        - wipe all products of release build "
177         @echo " build               - build debug binaries"
178         @echo " build-release       - build release binaries"
179         @echo " build-coverity      - build coverity artifacts"
180         @echo " rebuild             - wipe and build debug binares"
181         @echo " rebuild-release     - wipe and build release binares"
182         @echo " run                 - run debug binary"
183         @echo " run-release         - run release binary"
184         @echo " debug               - run debug binary with debugger"
185         @echo " debug-release       - run release binary with debugger"
186         @echo " test                - build and run (basic) functional tests"
187         @echo " test-debug          - build and run (basic) functional tests (debug build)"
188         @echo " test-all            - build and run (all) functional tests"
189         @echo " test-all-debug      - build and run (all) functional tests (debug build)"
190         @echo " test-shell          - enter shell with test environment"
191         @echo " test-shell-debug    - enter shell with test environment (debug build)"
192         @echo " test-wipe           - wipe files generated by unit tests"
193         @echo " retest              - run functional tests"
194         @echo " retest-debug        - run functional tests (debug build)"
195         @echo " test-help           - show help on test framework"
196         @echo " run-vat             - run vpp-api-test tool"
197         @echo " pkg-deb             - build DEB packages"
198         @echo " pkg-rpm             - build RPM packages"
199         @echo " dpdk-install-dev    - install DPDK development packages"
200         @echo " ctags               - (re)generate ctags database"
201         @echo " gtags               - (re)generate gtags database"
202         @echo " cscope              - (re)generate cscope database"
203         @echo " checkstyle          - check coding style"
204         @echo " fixstyle            - fix coding style"
205         @echo " doxygen             - (re)generate documentation"
206         @echo " bootstrap-doxygen   - setup Doxygen dependencies"
207         @echo " wipe-doxygen        - wipe all generated documentation"
208         @echo " test-doc            - generate documentation for test framework"
209         @echo " test-wipe-doc       - wipe documentation for test framework"
210         @echo " test-cov            - generate code coverage report for test framework"
211         @echo " test-wipe-cov       - wipe code coverage report for test framework"
212         @echo " test-checkstyle     - check PEP8 compliance for test framework"
213         @echo ""
214         @echo "Make Arguments:"
215         @echo " V=[0|1]                  - set build verbosity level"
216         @echo " STARTUP_CONF=<path>      - startup configuration file"
217         @echo "                            (e.g. /etc/vpp/startup.conf)"
218         @echo " STARTUP_DIR=<path>       - startup drectory (e.g. /etc/vpp)"
219         @echo "                            It also sets STARTUP_CONF if"
220         @echo "                            startup.conf file is present"
221         @echo " GDB=<path>               - gdb binary to use for debugging"
222         @echo " PLATFORM=<name>          - target platform. default is vpp"
223         @echo " TEST=<filter>            - apply filter to test set, see test-help"
224         @echo " DPDK_CONFIG=<conf>       - add specified dpdk config commands to"
225         @echo "                            autogenerated startup.conf"
226         @echo "                            (e.g. \"no-pci\" )"
227         @echo " SAMPLE_PLUGIN=yes        - in addition build/run/debug sample plugin"
228         @echo " DISABLED_PLUGINS=<list>  - comma separated list of plugins which"
229         @echo "                            should not be loaded"
230         @echo ""
231         @echo "Current Argument Values:"
232         @echo " V                 = $(V)"
233         @echo " STARTUP_CONF      = $(STARTUP_CONF)"
234         @echo " STARTUP_DIR       = $(STARTUP_DIR)"
235         @echo " GDB               = $(GDB)"
236         @echo " PLATFORM          = $(PLATFORM)"
237         @echo " DPDK_VERSION      = $(DPDK_VERSION)"
238         @echo " DPDK_CONFIG       = $(DPDK_CONFIG)"
239         @echo " SAMPLE_PLUGIN     = $(SAMPLE_PLUGIN)"
240         @echo " DISABLED_PLUGINS  = $(DISABLED_PLUGINS)"
241
242 $(BR)/.deps.ok:
243 ifeq ($(findstring y,$(UNATTENDED)),y)
244         make install-dep
245 endif
246 ifeq ($(filter ubuntu debian,$(OS_ID)),$(OS_ID))
247         @MISSING=$$(apt-get install -y -qq -s $(DEB_DEPENDS) | grep "^Inst ") ; \
248         if [ -n "$$MISSING" ] ; then \
249           echo "\nPlease install missing packages: \n$$MISSING\n" ; \
250           echo "by executing \"make install-dep\"\n" ; \
251           exit 1 ; \
252         fi ; \
253         exit 0
254 else ifneq ("$(wildcard /etc/redhat-release)","")
255         @for i in $(RPM_DEPENDS) ; do \
256             RPM=$$(basename -s .rpm "$${i##*/}" | cut -d- -f1,2,3)  ;   \
257             MISSING+=$$(rpm -q $$RPM | grep "^package")    ;    \
258         done                                                       ;    \
259         if [ -n "$$MISSING" ] ; then \
260           echo "Please install missing RPMs: \n$$MISSING\n" ; \
261           echo "by executing \"make install-dep\"\n" ; \
262           exit 1 ; \
263         fi ; \
264         exit 0
265 endif
266         @touch $@
267
268 bootstrap:
269         @echo "'make bootstrap' is not needed anymore"
270
271 install-dep:
272 ifeq ($(filter ubuntu debian,$(OS_ID)),$(OS_ID))
273 ifeq ($(OS_VERSION_ID),14.04)
274         @sudo -E apt-get $(CONFIRM) $(FORCE) install software-properties-common
275         @sudo -E add-apt-repository ppa:openjdk-r/ppa $(CONFIRM)
276 endif
277 ifeq ($(OS_ID)-$(OS_VERSION_ID),debian-8)
278         @grep -q jessie-backports /etc/apt/sources.list /etc/apt/sources.list.d/* 2> /dev/null \
279            || ( echo "Please install jessie-backports" ; exit 1 )
280 endif
281         @sudo -E apt-get update
282         @sudo -E apt-get $(APT_ARGS) $(CONFIRM) $(FORCE) install $(DEB_DEPENDS)
283 else ifneq ("$(wildcard /etc/redhat-release)","")
284         @sudo -E yum groupinstall $(CONFIRM) $(RPM_DEPENDS_GROUPS)
285         @sudo -E yum install $(CONFIRM) $(RPM_DEPENDS)
286         @sudo -E debuginfo-install $(CONFIRM) glibc openssl-libs mbedtls-devel zlib
287 else ifeq ($(filter opensuse,$(OS_ID)),$(OS_ID))
288         @sudo -E zypper refresh
289         @sudo -E zypper install -y $(RPM_SUSE_DEPENDS)
290 else ifeq ($(filter opensuse-leap,$(OS_ID)),$(OS_ID))
291         @sudo -E zypper refresh
292         @sudo -E zypper install -y $(RPM_SUSE_DEPENDS)
293 else
294         $(error "This option currently works only on Ubuntu, Debian, Centos or openSUSE systems")
295 endif
296
297 define make
298         @make -C $(BR) PLATFORM=$(PLATFORM) TAG=$(1) $(2)
299 endef
300
301 $(BR)/scripts/.version:
302 ifneq ("$(wildcard /etc/redhat-release)","")
303         $(shell $(BR)/scripts/version rpm-string > $(BR)/scripts/.version)
304 else
305         $(shell $(BR)/scripts/version > $(BR)/scripts/.version)
306 endif
307
308 DIST_FILE = $(BR)/vpp-$(shell src/scripts/version).tar
309 DIST_SUBDIR = vpp-$(shell src/scripts/version|cut -f1 -d-)
310
311 dist:
312         @if git rev-parse 2> /dev/null ; then \
313             git archive \
314               --prefix=$(DIST_SUBDIR)/ \
315               --format=tar \
316               -o $(DIST_FILE) \
317             HEAD ; \
318             git describe > $(BR)/.version ; \
319         else \
320             (cd .. ; tar -cf $(DIST_FILE) $(DIST_SUBDIR) --exclude=*.tar) ; \
321             src/scripts/version > $(BR)/.version ; \
322         fi
323         @tar --append \
324           --file $(DIST_FILE) \
325           --transform='s,.*/.version,$(DIST_SUBDIR)/src/scripts/.version,' \
326           $(BR)/.version
327         @$(RM) $(BR)/.version $(DIST_FILE).xz
328         @xz -v --threads=0 $(DIST_FILE)
329         @$(RM) $(BR)/vpp-latest.tar.xz
330         @ln -rs $(DIST_FILE).xz $(BR)/vpp-latest.tar.xz
331
332 build: $(BR)/.deps.ok
333         $(call make,$(PLATFORM)_debug,$(addsuffix -install,$(TARGETS)))
334
335 wipedist:
336         @$(RM) $(BR)/*.tar.xz
337
338 wipe: wipedist test-wipe $(BR)/.deps.ok
339         $(call make,$(PLATFORM)_debug,$(addsuffix -wipe,$(TARGETS)))
340
341 rebuild: wipe build
342
343 build-release: $(BR)/.deps.ok
344         $(call make,$(PLATFORM),$(addsuffix -install,$(TARGETS)))
345
346 wipe-release: test-wipe $(BR)/.deps.ok
347         $(call make,$(PLATFORM),$(addsuffix -wipe,$(TARGETS)))
348
349 rebuild-release: wipe-release build-release
350
351 export VPP_PYTHON_PREFIX ?= $(BR)/python
352
353 libexpand = $(subst $(subst ,, ),:,$(foreach lib,$(1),$(BR)/install-$(2)-native/vpp/$(lib)/$(3)))
354
355 define test
356         $(if $(filter-out $(3),retest),make -C $(BR) PLATFORM=$(1) TAG=$(2) vpp-install vom-install,)
357         $(eval libs:=lib lib64)
358         make -C test \
359           TEST_DIR=$(WS_ROOT)/test \
360           VPP_TEST_BUILD_DIR=$(BR)/build-$(2)-native \
361           VPP_TEST_BIN=$(BR)/install-$(2)-native/vpp/bin/vpp \
362           VPP_TEST_PLUGIN_PATH=$(call libexpand,$(libs),$(2),vpp_plugins) \
363           VPP_TEST_INSTALL_PATH=$(BR)/install-$(2)-native/ \
364           LD_LIBRARY_PATH=$(call libexpand,$(libs),$(2),) \
365           EXTENDED_TESTS=$(EXTENDED_TESTS) \
366           PYTHON=$(PYTHON) \
367           OS_ID=$(OS_ID) \
368           CACHE_OUTPUT=$(CACHE_OUTPUT) \
369           $(3)
370 endef
371
372 test:
373         $(call test,vpp,vpp,test)
374
375 test-debug:
376         $(call test,vpp,vpp_debug,test)
377
378 test-all:
379         $(eval EXTENDED_TESTS=yes)
380         $(call test,vpp,vpp,test)
381
382 test-all-debug:
383         $(eval EXTENDED_TESTS=yes)
384         $(call test,vpp,vpp_debug,test)
385
386 test-help:
387         @make -C test help
388
389 test-wipe:
390         @make -C test wipe
391
392 test-shell:
393         $(call test,vpp,vpp,shell)
394
395 test-shell-debug:
396         $(call test,vpp,vpp_debug,shell)
397
398 test-dep:
399         @make -C test test-dep
400
401 test-doc:
402         @make -C test doc
403
404 test-wipe-doc:
405         @make -C test wipe-doc
406
407 test-cov:
408         $(eval EXTENDED_TESTS=yes)
409         $(call test,vpp,vpp_gcov,cov)
410
411 test-wipe-cov:
412         @make -C test wipe-cov
413
414 test-checkstyle:
415         @make -C test checkstyle
416
417 retest:
418         $(call test,vpp,vpp,retest)
419
420 retest-debug:
421         $(call test,vpp,vpp_debug,retest)
422
423 STARTUP_DIR ?= $(PWD)
424 ifeq ("$(wildcard $(STARTUP_CONF))","")
425 define run
426         @echo "WARNING: STARTUP_CONF not defined or file doesn't exist."
427         @echo "         Running with minimal startup config: $(MINIMAL_STARTUP_CONF)\n"
428         @cd $(STARTUP_DIR) && \
429           $(SUDO) $(2) $(1)/vpp/bin/vpp $(MINIMAL_STARTUP_CONF)
430 endef
431 else
432 define run
433         @cd $(STARTUP_DIR) && \
434           $(SUDO) $(2) $(1)/vpp/bin/vpp $(shell cat $(STARTUP_CONF) | sed -e 's/#.*//')
435 endef
436 endif
437
438 %.files: .FORCE
439         @find . \( -name '*\.[chyS]' -o -name '*\.java' -o -name '*\.lex' \) -and \
440                 \( -not -path './build-root*' -o -path \
441                 './build-root/build-vpp_debug-native/dpdk*' \) > $@
442
443 .FORCE:
444
445 run:
446         $(call run, $(BR)/install-$(PLATFORM)_debug-native)
447
448 run-release:
449         $(call run, $(BR)/install-$(PLATFORM)-native)
450
451 debug:
452         $(call run, $(BR)/install-$(PLATFORM)_debug-native,$(GDB) $(GDB_ARGS) --args)
453
454 build-coverity: 
455         $(call make,$(PLATFORM)_coverity,install-packages)
456
457 debug-release:
458         $(call run, $(BR)/install-$(PLATFORM)-native,$(GDB) $(GDB_ARGS) --args)
459
460 build-vat:
461         $(call make,$(PLATFORM)_debug,vpp-api-test-install)
462
463 run-vat:
464         @$(SUDO) $(BR)/install-$(PLATFORM)_debug-native/vpp/bin/vpp_api_test
465
466 pkg-deb:
467         $(call make,$(PLATFORM),install-deb)
468
469 pkg-rpm: dist
470         make -C extras/rpm
471
472 pkg-srpm: dist
473         make -C extras/rpm srpm
474
475 dpdk-install-dev:
476         make -C dpdk install-$(PKG)
477
478 ctags: ctags.files
479         @ctags --totals --tag-relative -L $<
480         @rm $<
481
482 gtags: ctags
483         @gtags --gtagslabel=ctags
484
485 cscope: cscope.files
486         @cscope -b -q -v
487
488 checkstyle:
489         @build-root/scripts/checkstyle.sh
490
491 fixstyle:
492         @build-root/scripts/checkstyle.sh --fix
493
494 #
495 # Build the documentation
496 #
497
498 # Doxygen configuration and our utility scripts
499 export DOXY_DIR ?= $(WS_ROOT)/doxygen
500
501 define make-doxy
502         @OS_ID="$(OS_ID)" make -C $(DOXY_DIR) $@
503 endef
504
505 .PHONY: bootstrap-doxygen doxygen wipe-doxygen
506
507 bootstrap-doxygen:
508         $(call make-doxy)
509
510 doxygen:
511         $(call make-doxy)
512
513 wipe-doxygen:
514         $(call make-doxy)
515
516 define banner
517         @echo "========================================================================"
518         @echo " $(1)"
519         @echo "========================================================================"
520         @echo " "
521 endef
522
523 verify: install-dep $(BR)/.deps.ok dpdk-install-dev
524         $(call banner,"Building for PLATFORM=vpp using gcc")
525         @make -C build-root PLATFORM=vpp TAG=vpp wipe-all install-packages
526         $(call banner,"Building sample-plugin")
527         @make -C build-root PLATFORM=vpp TAG=vpp sample-plugin-install
528         $(call banner,"Building libmemif")
529         @make -C build-root PLATFORM=vpp TAG=vpp libmemif-install
530         $(call banner,"Building VOM")
531         @make -C build-root PLATFORM=vpp TAG=vpp vom-install
532         $(call banner,"Building $(PKG) packages")
533         @make pkg-$(PKG)
534 ifeq ($(OS_ID)-$(OS_VERSION_ID),ubuntu-16.04)
535         @make COMPRESS_FAILED_TEST_LOGS=yes RETRIES=3 test
536 endif
537
538