From 622fe2c28f35fe0c2f472f6d92e835680286fa6b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABtan=20Harter?= Date: Tue, 25 Jun 2019 16:40:42 +0200 Subject: [PATCH 1/9] tests/pthread_rwlock: run the test in CI HACK, the test currently fails in CI for `native` due to `utf-8` handling. HACK, the test implementation can fail due being de-scheduled during printf. --- tests/pthread_rwlock/Makefile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/pthread_rwlock/Makefile b/tests/pthread_rwlock/Makefile index 11b98f476f..2a45db9393 100644 --- a/tests/pthread_rwlock/Makefile +++ b/tests/pthread_rwlock/Makefile @@ -17,4 +17,10 @@ BOARD_INSUFFICIENT_MEMORY += chronos i-nucleo-lrwan1 \ nucleo-f303k8 nucleo-f334r8 nucleo-l053r8 \ stm32f0discovery stm32l0538-disco +TEST_ON_CI_WHITELIST += all +# HACK Blacklist native as `murdock` fails on utf-8 characters for native tests +# HACK Blacklist on all as the test implementation can fail due being +# de-scheduled during printf +TEST_ON_CI_BLACKLIST += all + include $(RIOTBASE)/Makefile.include From 095268a33aa61ea6914ccc8160349302a8a6cc40 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABtan=20Harter?= Date: Fri, 12 Jul 2019 18:41:38 +0200 Subject: [PATCH 2/9] tests/netstats_l2: run the test in CI HACK, blacklist native as it fails to create a tun interface in murdock. --- tests/netstats_l2/Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/netstats_l2/Makefile b/tests/netstats_l2/Makefile index 627fa54d29..4eee13e498 100644 --- a/tests/netstats_l2/Makefile +++ b/tests/netstats_l2/Makefile @@ -15,4 +15,9 @@ USEMODULE += gnrc_netdev_default USEMODULE += auto_init_gnrc_netif USEMODULE += netstats_l2 +TEST_ON_CI_WHITELIST += all +# Cannot run the test on `murdock` in `native` +# open(/dev/net/tun): No such file or directory +TEST_ON_CI_BLACKLIST += native + include $(RIOTBASE)/Makefile.include From 12d4b71c318f10ab139f27dde0eef37a1029d845 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABtan=20Harter?= Date: Fri, 12 Jul 2019 18:37:48 +0200 Subject: [PATCH 3/9] tests/socket_zep: define TEST_ON_CI_BLACKLIST HACK, the test currently fails in CI for 'native' due to binding issue --- tests/socket_zep/Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/socket_zep/Makefile b/tests/socket_zep/Makefile index dbf82761e2..cd42d1ee16 100644 --- a/tests/socket_zep/Makefile +++ b/tests/socket_zep/Makefile @@ -3,6 +3,11 @@ include ../Makefile.tests_common BOARD_WHITELIST = native # socket_zep is only available on native +TEST_ON_CI_WHITELIST += all +# Cannot run the test on `murdock` +# ZEP: Unable to connect socket: Cannot assign requested address +TEST_ON_CI_BLACKLIST += native + DISABLE_MODULE += auto_init USEMODULE += od From f7176f425fe012dc0caa7e0ea80c59d6a71ddd36 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABtan=20Harter?= Date: Wed, 12 Jun 2019 18:33:56 +0200 Subject: [PATCH 4/9] tests/gnrc: disable tests that need setup and root Disable running tests that need a setup and run with root as they cannot currently be run in CI. --- tests/gnrc_ipv6_ext/Makefile | 5 ++++- tests/gnrc_rpl_srh/Makefile | 5 ++++- tests/gnrc_sock_dns/Makefile | 5 ++++- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/tests/gnrc_ipv6_ext/Makefile b/tests/gnrc_ipv6_ext/Makefile index 271459021b..5311e6a3aa 100644 --- a/tests/gnrc_ipv6_ext/Makefile +++ b/tests/gnrc_ipv6_ext/Makefile @@ -44,7 +44,10 @@ USEMODULE += shell USEMODULE += shell_commands USEMODULE += ps -# TEST_ON_CI_WHITELIST += all +TEST_ON_CI_WHITELIST += all +# The test requires some setup and to be run as root +# So it cannot currently be run +TEST_ON_CI_BLACKLIST += all .PHONY: ethos diff --git a/tests/gnrc_rpl_srh/Makefile b/tests/gnrc_rpl_srh/Makefile index a866b3dc31..854f2bdee7 100644 --- a/tests/gnrc_rpl_srh/Makefile +++ b/tests/gnrc_rpl_srh/Makefile @@ -48,7 +48,10 @@ USEMODULE += shell USEMODULE += shell_commands USEMODULE += ps -# TEST_ON_CI_WHITELIST += all +TEST_ON_CI_WHITELIST += all +# The test requires some setup and to be run as root +# So it cannot currently be run +TEST_ON_CI_BLACKLIST += all .PHONY: ethos diff --git a/tests/gnrc_sock_dns/Makefile b/tests/gnrc_sock_dns/Makefile index 2380c926b1..bbda60d480 100644 --- a/tests/gnrc_sock_dns/Makefile +++ b/tests/gnrc_sock_dns/Makefile @@ -49,7 +49,10 @@ ifeq ($(BOARD),$(filter $(BOARD),$(LOW_MEMORY_BOARDS))) -DNRC_IPV6_NIB_OFFL_NUMOF=1 endif -# TEST_ON_CI_WHITELIST += all +TEST_ON_CI_WHITELIST += all +# The test requires some setup and to be run as root +# So it cannot currently be run +TEST_ON_CI_BLACKLIST += all .PHONY: ethos From 1f1184362317fb6590f9bc9aefae623d2b9e110d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABtan=20Harter?= Date: Wed, 12 Jun 2019 18:33:56 +0200 Subject: [PATCH 5/9] tests/pkg_fatfs_vfs: disable tests that need setup The test need a manual setup that cannot currently be done in CI. --- tests/pkg_fatfs_vfs/Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/pkg_fatfs_vfs/Makefile b/tests/pkg_fatfs_vfs/Makefile index 515626c665..962c6c4d5a 100644 --- a/tests/pkg_fatfs_vfs/Makefile +++ b/tests/pkg_fatfs_vfs/Makefile @@ -51,6 +51,11 @@ BOARD_WHITELIST := airfy-beacon arduino-due arduino-duemilanove \ TEST_DEPS += image +TEST_ON_CI_WHITELIST += all +# The test requires some manual setup to work +# So it cannot currently be run +TEST_ON_CI_BLACKLIST += all + include $(RIOTBASE)/Makefile.include image: From 084c6f739dcbd4459bc5bf698f7bb20db95dcde2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABtan=20Harter?= Date: Thu, 13 Jun 2019 14:12:38 +0200 Subject: [PATCH 6/9] tests/lwip: disable failing test The test fails on both murdock and on my machine due to the process exiting directly. pexpect.exceptions.EOF: End Of File (EOF). Exception style platform. --- tests/lwip/Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/lwip/Makefile b/tests/lwip/Makefile index c7e7101b4f..725157c38b 100644 --- a/tests/lwip/Makefile +++ b/tests/lwip/Makefile @@ -34,4 +34,8 @@ ifneq ($(BOARD),native) TESTS= endif +TEST_ON_CI_WHITELIST += all +# test fails on murdock and on my machine due to the process exiting directly +TEST_ON_CI_BLACKLIST += all + include $(RIOTBASE)/Makefile.include From 1e6ac084231d3341381370e19c9d991de549e9d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABtan=20Harter?= Date: Wed, 12 Jun 2019 15:15:40 +0200 Subject: [PATCH 7/9] murdock: only set test is enabled if there are tests Only set `TEST_ON_CI_ENABLED` if the application has tests. Currently `TEST_ON_CI_WHITELIST` was only set if there were tests. This is a pre-step to have `TEST_ON_CI_WHITELIST` being `all` by default. --- makefiles/murdock.inc.mk | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/makefiles/murdock.inc.mk b/makefiles/murdock.inc.mk index f460ec8dc4..ceb7460734 100644 --- a/makefiles/murdock.inc.mk +++ b/makefiles/murdock.inc.mk @@ -28,6 +28,7 @@ test-murdock: # * the board is whitelisted # * the board is not blacklisted (by default none) # * the board has enough memory and the executable is being linked +# * a test is present # # TEST_ON_CI_WHITELIST and TEST_ON_CI_BLACKLIST can be empty, a board list or 'all' # @@ -40,7 +41,7 @@ TEST_ON_CI_WHITELIST ?= TEST_ON_CI_BLACKLIST ?= TEST_ON_BOARD_ENABLED ?= $(filter-out $(TEST_ON_CI_BLACKLIST:all=%),$(filter $(TEST_ON_CI_WHITELIST:all=%),$(BOARD))) -TEST_ON_CI_ENABLED ?= $(if $(RIOTNOLINK),,$(TEST_ON_BOARD_ENABLED)) +TEST_ON_CI_ENABLED ?= $(if $(RIOTNOLINK),,$(if $(TESTS),$(TEST_ON_BOARD_ENABLED))) .PHONY: test-on-ci-enabled test-on-ci-enabled: From 1292d96feb909d611143dad60d41fa71ff96eeec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABtan=20Harter?= Date: Wed, 12 Jun 2019 15:18:06 +0200 Subject: [PATCH 8/9] makefiles/murdock.inc.mk: change policy to run tests by default By default if a test is available and not blacklisted it will be run by murdock. This will move from a whitelisting everything that works, to blacklisting what fails. This way, failing tests will be easier to track instead of being silently just not run. It could even allow introducing failing tests before a fix is available. --- makefiles/murdock.inc.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/makefiles/murdock.inc.mk b/makefiles/murdock.inc.mk index ceb7460734..778657b3ef 100644 --- a/makefiles/murdock.inc.mk +++ b/makefiles/murdock.inc.mk @@ -25,7 +25,7 @@ test-murdock: # # Testing is enabled if all the following conditions are met: # -# * the board is whitelisted +# * the board is whitelisted (by default all are enabled) # * the board is not blacklisted (by default none) # * the board has enough memory and the executable is being linked # * a test is present @@ -37,7 +37,7 @@ test-murdock: # # Disabling a test in some case must be justified to keep track of the reason. -TEST_ON_CI_WHITELIST ?= +TEST_ON_CI_WHITELIST ?= all TEST_ON_CI_BLACKLIST ?= TEST_ON_BOARD_ENABLED ?= $(filter-out $(TEST_ON_CI_BLACKLIST:all=%),$(filter $(TEST_ON_CI_WHITELIST:all=%),$(BOARD))) From 8e5422ff78e931f3f295d928da175a0d6cf0af58 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABtan=20Harter?= Date: Wed, 12 Jun 2019 15:41:04 +0200 Subject: [PATCH 9/9] applications: remove 'TEST_ON_CI_WHITELIST += all' This is now the default so not required anymore. --- tests/bench_msg_pingpong/Makefile | 2 -- tests/bench_mutex_pingpong/Makefile | 2 -- tests/bench_runtime_coreapis/Makefile | 2 -- tests/bench_sched_nop/Makefile | 2 -- tests/bench_sizeof_coretypes/Makefile | 2 -- tests/bench_thread_flags_pingpong/Makefile | 2 -- tests/bench_thread_yield_pingpong/Makefile | 2 -- tests/bitarithm_timings/Makefile | 2 -- tests/bloom_bytes/Makefile | 2 -- tests/buttons/Makefile | 2 -- tests/cb_mux/Makefile | 2 -- tests/cb_mux_bench/Makefile | 2 -- tests/cpp11_condition_variable/Makefile | 2 -- tests/cpp11_mutex/Makefile | 2 -- tests/cpp11_thread/Makefile | 2 -- tests/devfs/Makefile | 2 -- tests/embunit/Makefile | 2 -- tests/event_wait_timeout/Makefile | 2 -- tests/events/Makefile | 2 -- tests/evtimer_msg/Makefile | 2 -- tests/evtimer_underflow/Makefile | 2 -- tests/float/Makefile | 2 -- tests/fmt_print/Makefile | 2 -- tests/gnrc_ipv6_ext/Makefile | 1 - tests/gnrc_ipv6_fwd_w_sub/Makefile | 2 -- tests/gnrc_ipv6_nib/Makefile | 2 -- tests/gnrc_ipv6_nib_6ln/Makefile | 2 -- tests/gnrc_ndp/Makefile | 2 -- tests/gnrc_netif/Makefile | 2 -- tests/gnrc_rpl_srh/Makefile | 1 - tests/gnrc_sixlowpan/Makefile | 2 -- tests/gnrc_sixlowpan_frag/Makefile | 2 -- tests/gnrc_sock_dns/Makefile | 1 - tests/gnrc_sock_ip/Makefile | 2 -- tests/gnrc_sock_udp/Makefile | 2 -- tests/irq/Makefile | 2 -- tests/isr_yield_higher/Makefile | 2 -- tests/l2util/Makefile | 2 -- tests/libc_newlib/Makefile | 1 - tests/libfixmath/Makefile | 2 -- tests/log_printfnoformat/Makefile | 2 -- tests/lua_loader/Makefile | 1 - tests/lwip/Makefile | 1 - tests/lwip_sock_ip/Makefile | 2 -- tests/msg_avail/Makefile | 2 -- tests/msg_send_receive/Makefile | 2 -- tests/msg_try_receive/Makefile | 2 -- tests/mutex_order/Makefile | 3 --- tests/mutex_unlock_and_sleep/Makefile | 2 -- tests/netdev_test/Makefile | 2 -- tests/netstats_l2/Makefile | 1 - tests/nhdp/Makefile | 2 -- tests/od/Makefile | 2 -- tests/periph_hwrng/Makefile | 2 -- tests/periph_timer/Makefile | 2 -- tests/pipe/Makefile | 2 -- tests/pkg_c25519/Makefile | 2 -- tests/pkg_cayenne-lpp/Makefile | 2 -- tests/pkg_cmsis-dsp/Makefile | 1 - tests/pkg_cn-cbor/Makefile | 2 -- tests/pkg_fatfs_vfs/Makefile | 1 - tests/pkg_hacl/Makefile | 2 -- tests/pkg_heatshrink/Makefile | 2 -- tests/pkg_jsmn/Makefile | 2 -- tests/pkg_libb2/Makefile | 2 -- tests/pkg_libcoap/Makefile | 2 -- tests/pkg_libhydrogen/Makefile | 2 -- tests/pkg_littlefs/Makefile | 2 -- tests/pkg_lora-serialization/Makefile | 1 - tests/pkg_micro-ecc-with-hwrng/Makefile | 2 -- tests/pkg_micro-ecc/Makefile | 2 -- tests/pkg_minmea/Makefile | 2 -- tests/pkg_monocypher/Makefile | 1 - tests/pkg_nanocbor/Makefile | 2 -- tests/pkg_qdsa/Makefile | 2 -- tests/pkg_relic/Makefile | 2 -- tests/pkg_spiffs/Makefile | 2 -- tests/pkg_tiny-asn1/Makefile | 2 -- tests/pkg_tinycbor/Makefile | 1 - tests/pkg_tinycrypt/Makefile | 2 -- tests/pkg_u8g2/Makefile | 1 - tests/pkg_ubasic/Makefile | 2 -- tests/pkg_umorse/Makefile | 2 -- tests/posix_semaphore/Makefile | 2 -- tests/posix_time/Makefile | 2 -- tests/ps_schedstatistics/Makefile | 2 -- tests/pthread/Makefile | 2 -- tests/pthread_barrier/Makefile | 2 -- tests/pthread_cleanup/Makefile | 2 -- tests/pthread_condition_variable/Makefile | 2 -- tests/pthread_cooperation/Makefile | 2 -- tests/pthread_rwlock/Makefile | 1 - tests/pthread_tls/Makefile | 2 -- tests/riotboot/Makefile | 2 -- tests/rmutex/Makefile | 2 -- tests/sched_testing/Makefile | 2 -- tests/shell/Makefile | 2 -- tests/socket_zep/Makefile | 1 - tests/ssp/Makefile | 2 -- tests/stdin/Makefile | 2 -- tests/struct_tm_utility/Makefile | 2 -- tests/thread_basic/Makefile | 2 -- tests/thread_cooperation/Makefile | 2 -- tests/thread_exit/Makefile | 2 -- tests/thread_flags/Makefile | 2 -- tests/thread_flags_xtimer/Makefile | 2 -- tests/thread_flood/Makefile | 2 -- tests/thread_msg/Makefile | 2 -- tests/thread_msg_block_race/Makefile | 2 -- tests/thread_msg_block_w_queue/Makefile | 2 -- tests/thread_msg_block_wo_queue/Makefile | 2 -- tests/thread_race/Makefile | 2 -- tests/trace/Makefile | 2 -- tests/trickle/Makefile | 2 -- tests/unittests/Makefile | 3 --- tests/warn_conflict/Makefile | 2 -- tests/xtimer_hang/Makefile | 2 -- tests/xtimer_msg/Makefile | 2 -- tests/xtimer_msg_receive_timeout/Makefile | 2 -- tests/xtimer_mutex_lock_timeout/Makefile | 2 -- tests/xtimer_now64_continuity/Makefile | 1 - tests/xtimer_periodic_wakeup/Makefile | 2 -- tests/xtimer_remove/Makefile | 2 -- tests/xtimer_reset/Makefile | 2 -- tests/xtimer_usleep/Makefile | 1 - tests/xtimer_usleep_short/Makefile | 2 -- 126 files changed, 237 deletions(-) diff --git a/tests/bench_msg_pingpong/Makefile b/tests/bench_msg_pingpong/Makefile index d2da7702d4..f407db68d3 100644 --- a/tests/bench_msg_pingpong/Makefile +++ b/tests/bench_msg_pingpong/Makefile @@ -4,6 +4,4 @@ BOARD_INSUFFICIENT_MEMORY := nucleo-f031k6 USEMODULE += xtimer -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/bench_mutex_pingpong/Makefile b/tests/bench_mutex_pingpong/Makefile index d2da7702d4..f407db68d3 100644 --- a/tests/bench_mutex_pingpong/Makefile +++ b/tests/bench_mutex_pingpong/Makefile @@ -4,6 +4,4 @@ BOARD_INSUFFICIENT_MEMORY := nucleo-f031k6 USEMODULE += xtimer -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/bench_runtime_coreapis/Makefile b/tests/bench_runtime_coreapis/Makefile index aafb9538b5..35eaa186b9 100644 --- a/tests/bench_runtime_coreapis/Makefile +++ b/tests/bench_runtime_coreapis/Makefile @@ -4,6 +4,4 @@ include ../Makefile.tests_common USEMODULE += core_thread_flags USEMODULE += benchmark -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/bench_sched_nop/Makefile b/tests/bench_sched_nop/Makefile index 1079b0a411..8bff23ceea 100644 --- a/tests/bench_sched_nop/Makefile +++ b/tests/bench_sched_nop/Makefile @@ -2,6 +2,4 @@ include ../Makefile.tests_common USEMODULE += xtimer -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/bench_sizeof_coretypes/Makefile b/tests/bench_sizeof_coretypes/Makefile index 18b3b19270..57a2cdcb0e 100644 --- a/tests/bench_sizeof_coretypes/Makefile +++ b/tests/bench_sizeof_coretypes/Makefile @@ -15,6 +15,4 @@ ifneq (,$(NO_MSG)) DISABLE_MODULE += core_msg endif -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/bench_thread_flags_pingpong/Makefile b/tests/bench_thread_flags_pingpong/Makefile index 30365019cc..0926d96a69 100644 --- a/tests/bench_thread_flags_pingpong/Makefile +++ b/tests/bench_thread_flags_pingpong/Makefile @@ -5,6 +5,4 @@ BOARD_INSUFFICIENT_MEMORY := nucleo-f031k6 USEMODULE += core_thread_flags USEMODULE += xtimer -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/bench_thread_yield_pingpong/Makefile b/tests/bench_thread_yield_pingpong/Makefile index d2da7702d4..f407db68d3 100644 --- a/tests/bench_thread_yield_pingpong/Makefile +++ b/tests/bench_thread_yield_pingpong/Makefile @@ -4,6 +4,4 @@ BOARD_INSUFFICIENT_MEMORY := nucleo-f031k6 USEMODULE += xtimer -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/bitarithm_timings/Makefile b/tests/bitarithm_timings/Makefile index 1079b0a411..8bff23ceea 100644 --- a/tests/bitarithm_timings/Makefile +++ b/tests/bitarithm_timings/Makefile @@ -2,6 +2,4 @@ include ../Makefile.tests_common USEMODULE += xtimer -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/bloom_bytes/Makefile b/tests/bloom_bytes/Makefile index 5a054d1abb..e1154820ff 100644 --- a/tests/bloom_bytes/Makefile +++ b/tests/bloom_bytes/Makefile @@ -13,6 +13,4 @@ USEMODULE += fmt DISABLE_MODULE += auto_init -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/buttons/Makefile b/tests/buttons/Makefile index 125669948d..66734b521c 100644 --- a/tests/buttons/Makefile +++ b/tests/buttons/Makefile @@ -3,6 +3,4 @@ include ../Makefile.tests_common FEATURES_REQUIRED += periph_gpio_irq USEMODULE += xtimer -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/cb_mux/Makefile b/tests/cb_mux/Makefile index 1d81780e2f..6c49b23eb9 100644 --- a/tests/cb_mux/Makefile +++ b/tests/cb_mux/Makefile @@ -2,6 +2,4 @@ include ../Makefile.tests_common USEMODULE += cb_mux -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/cb_mux_bench/Makefile b/tests/cb_mux_bench/Makefile index ba66ca98ba..9e1172b54c 100644 --- a/tests/cb_mux_bench/Makefile +++ b/tests/cb_mux_bench/Makefile @@ -3,6 +3,4 @@ include ../Makefile.tests_common USEMODULE += cb_mux \ xtimer -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/cpp11_condition_variable/Makefile b/tests/cpp11_condition_variable/Makefile index 2bcccd274a..2d3bd7022d 100644 --- a/tests/cpp11_condition_variable/Makefile +++ b/tests/cpp11_condition_variable/Makefile @@ -17,6 +17,4 @@ USEMODULE += cpp11-compat USEMODULE += xtimer USEMODULE += timex -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/cpp11_mutex/Makefile b/tests/cpp11_mutex/Makefile index fe96355cb7..487662021e 100644 --- a/tests/cpp11_mutex/Makefile +++ b/tests/cpp11_mutex/Makefile @@ -16,6 +16,4 @@ CXXEXFLAGS += -std=c++11 USEMODULE += cpp11-compat USEMODULE += xtimer -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/cpp11_thread/Makefile b/tests/cpp11_thread/Makefile index 2bcccd274a..2d3bd7022d 100644 --- a/tests/cpp11_thread/Makefile +++ b/tests/cpp11_thread/Makefile @@ -17,6 +17,4 @@ USEMODULE += cpp11-compat USEMODULE += xtimer USEMODULE += timex -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/devfs/Makefile b/tests/devfs/Makefile index 87968a1f94..65ebec597a 100644 --- a/tests/devfs/Makefile +++ b/tests/devfs/Makefile @@ -7,6 +7,4 @@ USEMODULE += devfs USEMODULE += devfs_random USEMODULE += devfs_hwrng -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/embunit/Makefile b/tests/embunit/Makefile index cd1c9e7b8b..a5aa0490fd 100644 --- a/tests/embunit/Makefile +++ b/tests/embunit/Makefile @@ -4,6 +4,4 @@ USEMODULE += embunit INCLUDES += -I$(RIOTBASE)/tests/unittests/common -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/event_wait_timeout/Makefile b/tests/event_wait_timeout/Makefile index 61b43a26eb..6433daed31 100644 --- a/tests/event_wait_timeout/Makefile +++ b/tests/event_wait_timeout/Makefile @@ -7,6 +7,4 @@ USEMODULE += event USEMODULE += xtimer USEMODULE += core_thread_flags -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/events/Makefile b/tests/events/Makefile index f2a1d35bf0..7a0847bf15 100644 --- a/tests/events/Makefile +++ b/tests/events/Makefile @@ -7,6 +7,4 @@ FORCE_ASSERTS = 1 USEMODULE += event_callback USEMODULE += event_timeout -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/evtimer_msg/Makefile b/tests/evtimer_msg/Makefile index 3069be27e8..14a841b401 100644 --- a/tests/evtimer_msg/Makefile +++ b/tests/evtimer_msg/Makefile @@ -5,6 +5,4 @@ BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-leonardo arduino-nano\ USEMODULE += evtimer -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/evtimer_underflow/Makefile b/tests/evtimer_underflow/Makefile index 3069be27e8..14a841b401 100644 --- a/tests/evtimer_underflow/Makefile +++ b/tests/evtimer_underflow/Makefile @@ -5,6 +5,4 @@ BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-leonardo arduino-nano\ USEMODULE += evtimer -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/float/Makefile b/tests/float/Makefile index 397bb3006f..912674a586 100644 --- a/tests/float/Makefile +++ b/tests/float/Makefile @@ -7,6 +7,4 @@ ifneq (,$(filter native,$(BOARD))) CFLAGS += -DTEST_ITER=100000000 endif -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/fmt_print/Makefile b/tests/fmt_print/Makefile index 633cf7ee2e..089fd8473e 100644 --- a/tests/fmt_print/Makefile +++ b/tests/fmt_print/Makefile @@ -2,6 +2,4 @@ include ../Makefile.tests_common USEMODULE += fmt -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/gnrc_ipv6_ext/Makefile b/tests/gnrc_ipv6_ext/Makefile index 5311e6a3aa..64a63a0c54 100644 --- a/tests/gnrc_ipv6_ext/Makefile +++ b/tests/gnrc_ipv6_ext/Makefile @@ -44,7 +44,6 @@ USEMODULE += shell USEMODULE += shell_commands USEMODULE += ps -TEST_ON_CI_WHITELIST += all # The test requires some setup and to be run as root # So it cannot currently be run TEST_ON_CI_BLACKLIST += all diff --git a/tests/gnrc_ipv6_fwd_w_sub/Makefile b/tests/gnrc_ipv6_fwd_w_sub/Makefile index cc6f6229b3..a8135e9d71 100644 --- a/tests/gnrc_ipv6_fwd_w_sub/Makefile +++ b/tests/gnrc_ipv6_fwd_w_sub/Makefile @@ -22,6 +22,4 @@ USEMODULE += xtimer CFLAGS += -DGNRC_PKTBUF_SIZE=512 CFLAGS += -DTEST_SUITES -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/gnrc_ipv6_nib/Makefile b/tests/gnrc_ipv6_nib/Makefile index 99f22ddeda..8bc8fe9dfb 100644 --- a/tests/gnrc_ipv6_nib/Makefile +++ b/tests/gnrc_ipv6_nib/Makefile @@ -17,6 +17,4 @@ CFLAGS += -DGNRC_NETTYPE_NDP=GNRC_NETTYPE_TEST CFLAGS += -DGNRC_PKTBUF_SIZE=512 CFLAGS += -DTEST_SUITES -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/gnrc_ipv6_nib_6ln/Makefile b/tests/gnrc_ipv6_nib_6ln/Makefile index 6c1a2ce7dd..57831a2437 100644 --- a/tests/gnrc_ipv6_nib_6ln/Makefile +++ b/tests/gnrc_ipv6_nib_6ln/Makefile @@ -20,6 +20,4 @@ CFLAGS += -DGNRC_NETTYPE_NDP=GNRC_NETTYPE_TEST CFLAGS += -DGNRC_PKTBUF_SIZE=512 CFLAGS += -DTEST_SUITES -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/gnrc_ndp/Makefile b/tests/gnrc_ndp/Makefile index 25fe80737f..7a7b496cee 100644 --- a/tests/gnrc_ndp/Makefile +++ b/tests/gnrc_ndp/Makefile @@ -18,6 +18,4 @@ CFLAGS += -DGNRC_NETTYPE_NDP=GNRC_NETTYPE_TEST CFLAGS += -DGNRC_PKTBUF_SIZE=512 CFLAGS += -DTEST_SUITES -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/gnrc_netif/Makefile b/tests/gnrc_netif/Makefile index 7453fde6f0..cce2d68a05 100644 --- a/tests/gnrc_netif/Makefile +++ b/tests/gnrc_netif/Makefile @@ -37,6 +37,4 @@ CFLAGS += -DGNRC_NETIF_GROUPS_NUMOF=8 CFLAGS += -DLOG_LEVEL=LOG_NONE CFLAGS += -DTEST_SUITES -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/gnrc_rpl_srh/Makefile b/tests/gnrc_rpl_srh/Makefile index 854f2bdee7..e720c069ce 100644 --- a/tests/gnrc_rpl_srh/Makefile +++ b/tests/gnrc_rpl_srh/Makefile @@ -48,7 +48,6 @@ USEMODULE += shell USEMODULE += shell_commands USEMODULE += ps -TEST_ON_CI_WHITELIST += all # The test requires some setup and to be run as root # So it cannot currently be run TEST_ON_CI_BLACKLIST += all diff --git a/tests/gnrc_sixlowpan/Makefile b/tests/gnrc_sixlowpan/Makefile index be6f256d0e..7718c090ea 100644 --- a/tests/gnrc_sixlowpan/Makefile +++ b/tests/gnrc_sixlowpan/Makefile @@ -22,6 +22,4 @@ USEMODULE += gnrc_udp # Dumps packets USEMODULE += gnrc_pktdump -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/gnrc_sixlowpan_frag/Makefile b/tests/gnrc_sixlowpan_frag/Makefile index b6deb5a402..46bcc40827 100644 --- a/tests/gnrc_sixlowpan_frag/Makefile +++ b/tests/gnrc_sixlowpan_frag/Makefile @@ -15,6 +15,4 @@ CFLAGS += -DTEST_SUITES -DGNRC_PKTBUF_SIZE=2048 # to be able to include gnrc_sixlowpan_frag-internal `rbuf.h` INCLUDES += -I$(RIOTBASE)/sys/net/gnrc/network_layer/sixlowpan/frag/ -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/gnrc_sock_dns/Makefile b/tests/gnrc_sock_dns/Makefile index bbda60d480..01a59265e7 100644 --- a/tests/gnrc_sock_dns/Makefile +++ b/tests/gnrc_sock_dns/Makefile @@ -49,7 +49,6 @@ ifeq ($(BOARD),$(filter $(BOARD),$(LOW_MEMORY_BOARDS))) -DNRC_IPV6_NIB_OFFL_NUMOF=1 endif -TEST_ON_CI_WHITELIST += all # The test requires some setup and to be run as root # So it cannot currently be run TEST_ON_CI_BLACKLIST += all diff --git a/tests/gnrc_sock_ip/Makefile b/tests/gnrc_sock_ip/Makefile index 74acd850fd..ba54ec8cbb 100644 --- a/tests/gnrc_sock_ip/Makefile +++ b/tests/gnrc_sock_ip/Makefile @@ -11,6 +11,4 @@ USEMODULE += ps CFLAGS += -DGNRC_PKTBUF_SIZE=200 CFLAGS += -DTEST_SUITES -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/gnrc_sock_udp/Makefile b/tests/gnrc_sock_udp/Makefile index 1d1c511bc6..5c9063bc91 100644 --- a/tests/gnrc_sock_udp/Makefile +++ b/tests/gnrc_sock_udp/Makefile @@ -13,6 +13,4 @@ USEMODULE += ps CFLAGS += -DGNRC_PKTBUF_SIZE=400 CFLAGS += -DTEST_SUITES -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/irq/Makefile b/tests/irq/Makefile index bea911be69..08444ee16c 100644 --- a/tests/irq/Makefile +++ b/tests/irq/Makefile @@ -6,6 +6,4 @@ BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-leonardo arduino-nano \ USEMODULE += auto_init USEMODULE += xtimer -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/isr_yield_higher/Makefile b/tests/isr_yield_higher/Makefile index a8860fe882..99c8ee55c2 100644 --- a/tests/isr_yield_higher/Makefile +++ b/tests/isr_yield_higher/Makefile @@ -6,6 +6,4 @@ BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-leonardo arduino-nano \ USEMODULE += xtimer -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/l2util/Makefile b/tests/l2util/Makefile index 2e05429822..dea1aa43ad 100644 --- a/tests/l2util/Makefile +++ b/tests/l2util/Makefile @@ -20,6 +20,4 @@ CHECKED_IFDEF_PATHS = cc110x \ CFLAGS += $(foreach path,$(CHECKED_IFDEF_PATHS),\ -DMODULE_$(shell echo $(path) | tr a-z A-Z)) -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/libc_newlib/Makefile b/tests/libc_newlib/Makefile index 72024805c5..f21f0761d6 100644 --- a/tests/libc_newlib/Makefile +++ b/tests/libc_newlib/Makefile @@ -1,6 +1,5 @@ include ../Makefile.tests_common -TEST_ON_CI_WHITELIST += all USEMODULE += embunit include $(RIOTBASE)/Makefile.include diff --git a/tests/libfixmath/Makefile b/tests/libfixmath/Makefile index 4fa74dcc92..48e34009ee 100644 --- a/tests/libfixmath/Makefile +++ b/tests/libfixmath/Makefile @@ -4,6 +4,4 @@ USEPKG += libfixmath USEMODULE += libfixmath USEMODULE += test_utils_interactive_sync -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/log_printfnoformat/Makefile b/tests/log_printfnoformat/Makefile index d697625b49..5f76eaec30 100644 --- a/tests/log_printfnoformat/Makefile +++ b/tests/log_printfnoformat/Makefile @@ -2,8 +2,6 @@ include ../Makefile.tests_common USEMODULE += log_printfnoformat -TEST_ON_CI_WHITELIST += all - # Enable debug log level CFLAGS += -DLOG_LEVEL=4 diff --git a/tests/lua_loader/Makefile b/tests/lua_loader/Makefile index 2a29d46da0..70015fc647 100644 --- a/tests/lua_loader/Makefile +++ b/tests/lua_loader/Makefile @@ -13,7 +13,6 @@ ifneq ($(BOARD),native) CFLAGS += -DTHREAD_STACKSIZE_MAIN='(THREAD_STACKSIZE_DEFAULT+2048)' endif -TEST_ON_CI_WHITELIST += all # HACK Blacklist native as `murdock` fails on utf-8 characters for native tests TEST_ON_CI_BLACKLIST += native diff --git a/tests/lwip/Makefile b/tests/lwip/Makefile index 725157c38b..d7abb5c506 100644 --- a/tests/lwip/Makefile +++ b/tests/lwip/Makefile @@ -34,7 +34,6 @@ ifneq ($(BOARD),native) TESTS= endif -TEST_ON_CI_WHITELIST += all # test fails on murdock and on my machine due to the process exiting directly TEST_ON_CI_BLACKLIST += all diff --git a/tests/lwip_sock_ip/Makefile b/tests/lwip_sock_ip/Makefile index 0f782a5ff5..895968758f 100644 --- a/tests/lwip_sock_ip/Makefile +++ b/tests/lwip_sock_ip/Makefile @@ -43,6 +43,4 @@ DISABLE_MODULE += auto_init CFLAGS += -DSO_REUSE CFLAGS += -DLWIP_SO_RCVTIMEO -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/msg_avail/Makefile b/tests/msg_avail/Makefile index 391995e8f6..18b41ca54b 100644 --- a/tests/msg_avail/Makefile +++ b/tests/msg_avail/Makefile @@ -2,6 +2,4 @@ include ../Makefile.tests_common DISABLE_MODULE += auto_init -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/msg_send_receive/Makefile b/tests/msg_send_receive/Makefile index c97e253860..03479ddde4 100644 --- a/tests/msg_send_receive/Makefile +++ b/tests/msg_send_receive/Makefile @@ -3,6 +3,4 @@ include ../Makefile.tests_common BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-leonardo arduino-nano \ arduino-uno nucleo-f031k6 -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/msg_try_receive/Makefile b/tests/msg_try_receive/Makefile index 54a42556f8..b3abaeb796 100644 --- a/tests/msg_try_receive/Makefile +++ b/tests/msg_try_receive/Makefile @@ -2,6 +2,4 @@ include ../Makefile.tests_common BOARD_INSUFFICIENT_MEMORY := nucleo-f031k6 -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/mutex_order/Makefile b/tests/mutex_order/Makefile index 7c8a3c1abb..b26c0e211c 100644 --- a/tests/mutex_order/Makefile +++ b/tests/mutex_order/Makefile @@ -6,7 +6,4 @@ BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-leonardo arduino-nano \ nucleo-f030r8 nucleo-l053r8 stm32f0discovery \ stm32l0538-disco -# list of boards to run CI tests on -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/mutex_unlock_and_sleep/Makefile b/tests/mutex_unlock_and_sleep/Makefile index 391995e8f6..18b41ca54b 100644 --- a/tests/mutex_unlock_and_sleep/Makefile +++ b/tests/mutex_unlock_and_sleep/Makefile @@ -2,6 +2,4 @@ include ../Makefile.tests_common DISABLE_MODULE += auto_init -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/netdev_test/Makefile b/tests/netdev_test/Makefile index b9cab89b76..a22c38264d 100644 --- a/tests/netdev_test/Makefile +++ b/tests/netdev_test/Makefile @@ -18,6 +18,4 @@ USEMODULE += od CFLAGS += -DGNRC_PKTBUF_SIZE=200 -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/netstats_l2/Makefile b/tests/netstats_l2/Makefile index 4eee13e498..8773329a19 100644 --- a/tests/netstats_l2/Makefile +++ b/tests/netstats_l2/Makefile @@ -15,7 +15,6 @@ USEMODULE += gnrc_netdev_default USEMODULE += auto_init_gnrc_netif USEMODULE += netstats_l2 -TEST_ON_CI_WHITELIST += all # Cannot run the test on `murdock` in `native` # open(/dev/net/tun): No such file or directory TEST_ON_CI_BLACKLIST += native diff --git a/tests/nhdp/Makefile b/tests/nhdp/Makefile index 7b96a14c9f..19a502cf44 100644 --- a/tests/nhdp/Makefile +++ b/tests/nhdp/Makefile @@ -14,6 +14,4 @@ USEMODULE += gnrc_ipv6 USEMODULE += gnrc_sock_udp USEMODULE += nhdp -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/od/Makefile b/tests/od/Makefile index 74c63c10ae..24788a3152 100644 --- a/tests/od/Makefile +++ b/tests/od/Makefile @@ -3,8 +3,6 @@ include ../Makefile.tests_common USEMODULE += od # USEMODULE += od_string -TEST_ON_CI_WHITELIST += all - ifeq (,$(filter od_string,$(USEMODULE))) TESTS=$(APPDIR)/tests/01-run.py else diff --git a/tests/periph_hwrng/Makefile b/tests/periph_hwrng/Makefile index 7078736e99..9076de54e4 100644 --- a/tests/periph_hwrng/Makefile +++ b/tests/periph_hwrng/Makefile @@ -4,6 +4,4 @@ FEATURES_REQUIRED = periph_hwrng USEMODULE += xtimer -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/periph_timer/Makefile b/tests/periph_timer/Makefile index 4f43c9e533..969e4f26c8 100644 --- a/tests/periph_timer/Makefile +++ b/tests/periph_timer/Makefile @@ -2,8 +2,6 @@ include ../Makefile.tests_common FEATURES_REQUIRED = periph_timer -TEST_ON_CI_WHITELIST += all - ifneq (,$(filter arduino-duemilanove arduino-leonardo arduino-mega2560 arduino-uno waspmote-pro,$(BOARD))) TIMER_SPEED ?= 250000 else ifneq (,$(filter hifive1 hifive1b %-kw41z,$(BOARD))) diff --git a/tests/pipe/Makefile b/tests/pipe/Makefile index 3ab7346841..5e750a3f75 100644 --- a/tests/pipe/Makefile +++ b/tests/pipe/Makefile @@ -7,6 +7,4 @@ BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-nano arduino-uno \ USEMODULE += pipe -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/pkg_c25519/Makefile b/tests/pkg_c25519/Makefile index 57dbf44a83..a379888b78 100644 --- a/tests/pkg_c25519/Makefile +++ b/tests/pkg_c25519/Makefile @@ -7,8 +7,6 @@ USEPKG += c25519 BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-leonardo arduino-nano \ arduino-uno -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include # c25519 takes up to 1.5K in stack, almost independent of the platform diff --git a/tests/pkg_cayenne-lpp/Makefile b/tests/pkg_cayenne-lpp/Makefile index 14f987fc7a..63ab148e4b 100644 --- a/tests/pkg_cayenne-lpp/Makefile +++ b/tests/pkg_cayenne-lpp/Makefile @@ -2,6 +2,4 @@ include ../Makefile.tests_common USEPKG += cayenne-lpp -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/pkg_cmsis-dsp/Makefile b/tests/pkg_cmsis-dsp/Makefile index be305bc0ca..be99ea135b 100644 --- a/tests/pkg_cmsis-dsp/Makefile +++ b/tests/pkg_cmsis-dsp/Makefile @@ -1,7 +1,6 @@ BOARD ?= samr21-xpro include ../Makefile.tests_common -TEST_ON_CI_WHITELIST += all USEPKG += cmsis-dsp BOARD_WHITELIST := \ diff --git a/tests/pkg_cn-cbor/Makefile b/tests/pkg_cn-cbor/Makefile index f211f3d006..00f4245bec 100644 --- a/tests/pkg_cn-cbor/Makefile +++ b/tests/pkg_cn-cbor/Makefile @@ -29,6 +29,4 @@ CFLAGS += -DCBOR_NO_LL # Skips test cases for floating point data types. # CFLAGS += -DCBOR_NO_FLOAT -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/pkg_fatfs_vfs/Makefile b/tests/pkg_fatfs_vfs/Makefile index 962c6c4d5a..55a5faa088 100644 --- a/tests/pkg_fatfs_vfs/Makefile +++ b/tests/pkg_fatfs_vfs/Makefile @@ -51,7 +51,6 @@ BOARD_WHITELIST := airfy-beacon arduino-due arduino-duemilanove \ TEST_DEPS += image -TEST_ON_CI_WHITELIST += all # The test requires some manual setup to work # So it cannot currently be run TEST_ON_CI_BLACKLIST += all diff --git a/tests/pkg_hacl/Makefile b/tests/pkg_hacl/Makefile index f43853b29d..3830374b8a 100644 --- a/tests/pkg_hacl/Makefile +++ b/tests/pkg_hacl/Makefile @@ -8,8 +8,6 @@ BOARD_BLACKLIST := arduino-duemilanove arduino-leonardo \ BOARD_INSUFFICIENT_MEMORY := nucleo-f031k6 nucleo-f042k6 -TEST_ON_CI_WHITELIST += all - CFLAGS += -DTHREAD_STACKSIZE_MAIN=\(5*THREAD_STACKSIZE_DEFAULT\) USEPKG += hacl USEMODULE += random diff --git a/tests/pkg_heatshrink/Makefile b/tests/pkg_heatshrink/Makefile index 3e989aa62d..551e3096e9 100644 --- a/tests/pkg_heatshrink/Makefile +++ b/tests/pkg_heatshrink/Makefile @@ -7,8 +7,6 @@ BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove \ nucleo-f031k6 \ # -TEST_ON_CI_WHITELIST += all - USEPKG += heatshrink USEMODULE += embunit diff --git a/tests/pkg_jsmn/Makefile b/tests/pkg_jsmn/Makefile index 98648f5806..d0543864f1 100644 --- a/tests/pkg_jsmn/Makefile +++ b/tests/pkg_jsmn/Makefile @@ -2,6 +2,4 @@ include ../Makefile.tests_common USEPKG += jsmn -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/pkg_libb2/Makefile b/tests/pkg_libb2/Makefile index fdfe34ff78..f1ec632138 100644 --- a/tests/pkg_libb2/Makefile +++ b/tests/pkg_libb2/Makefile @@ -7,8 +7,6 @@ BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-leonardo arduino-nano \ nucleo-l031k6 telosb waspmote-pro \ wsn430-v1_3b wsn430-v1_4 z1 -TEST_ON_CI_WHITELIST += all - USEPKG += libb2 USEMODULE += embunit diff --git a/tests/pkg_libcoap/Makefile b/tests/pkg_libcoap/Makefile index ecbb0502b4..998cacfee4 100644 --- a/tests/pkg_libcoap/Makefile +++ b/tests/pkg_libcoap/Makefile @@ -16,6 +16,4 @@ USEMODULE += gnrc_ipv6 USEMODULE += gnrc_sock_udp USEPKG += libcoap -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/pkg_libhydrogen/Makefile b/tests/pkg_libhydrogen/Makefile index a469b6b57e..00a557fac7 100644 --- a/tests/pkg_libhydrogen/Makefile +++ b/tests/pkg_libhydrogen/Makefile @@ -7,8 +7,6 @@ BOARD_BLACKLIST := arduino-duemilanove arduino-leonardo \ jiminy-mega256rfr2 mega-xplained waspmote-pro \ chronos msb-430 msb-430h telosb wsn430-v1_3b wsn430-v1_4 z1 -TEST_ON_CI_WHITELIST += all - USEPKG += libhydrogen USEMODULE += embunit diff --git a/tests/pkg_littlefs/Makefile b/tests/pkg_littlefs/Makefile index a016f039fb..13089d51db 100644 --- a/tests/pkg_littlefs/Makefile +++ b/tests/pkg_littlefs/Makefile @@ -21,8 +21,6 @@ BOARD_BLACKLIST := chronos \ wsn430-v1_4 \ z1 \ -TEST_ON_CI_WHITELIST += all - # Set vfs file and dir buffer sizes CFLAGS += -DVFS_FILE_BUFFER_SIZE=56 -DVFS_DIR_BUFFER_SIZE=44 # Reduce LFS_NAME_MAX to 31 (as VFS_NAME_MAX default) diff --git a/tests/pkg_lora-serialization/Makefile b/tests/pkg_lora-serialization/Makefile index c6434a8bcc..861df18cbd 100644 --- a/tests/pkg_lora-serialization/Makefile +++ b/tests/pkg_lora-serialization/Makefile @@ -2,5 +2,4 @@ include ../Makefile.tests_common USEPKG += lora-serialization -TEST_ON_CI_WHITELIST += all include $(RIOTBASE)/Makefile.include diff --git a/tests/pkg_micro-ecc-with-hwrng/Makefile b/tests/pkg_micro-ecc-with-hwrng/Makefile index 723eea5309..9136274665 100644 --- a/tests/pkg_micro-ecc-with-hwrng/Makefile +++ b/tests/pkg_micro-ecc-with-hwrng/Makefile @@ -4,6 +4,4 @@ FEATURES_REQUIRED = periph_hwrng USEPKG += micro-ecc -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/pkg_micro-ecc/Makefile b/tests/pkg_micro-ecc/Makefile index 4356854693..dcc48f2def 100644 --- a/tests/pkg_micro-ecc/Makefile +++ b/tests/pkg_micro-ecc/Makefile @@ -9,6 +9,4 @@ BOARD_BLACKLIST = chronos msb-430 msb-430h telosb wsn430-v1_3b wsn430-v1_4 z1 USEMODULE += hashes USEPKG += micro-ecc -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/pkg_minmea/Makefile b/tests/pkg_minmea/Makefile index f94d295c7e..dcc5ddcbaa 100644 --- a/tests/pkg_minmea/Makefile +++ b/tests/pkg_minmea/Makefile @@ -7,6 +7,4 @@ USEMODULE += fmt # The MSP-430 toolchain lacks mktime and NAN BOARD_BLACKLIST := chronos msb-430 msb-430h telosb wsn430-v1_3b wsn430-v1_4 z1 -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/pkg_monocypher/Makefile b/tests/pkg_monocypher/Makefile index 9d7551577b..dab683f81b 100644 --- a/tests/pkg_monocypher/Makefile +++ b/tests/pkg_monocypher/Makefile @@ -16,5 +16,4 @@ USEMODULE += embunit USEMODULE += random USEPKG += monocypher -TEST_ON_CI_WHITELIST += all include $(RIOTBASE)/Makefile.include diff --git a/tests/pkg_nanocbor/Makefile b/tests/pkg_nanocbor/Makefile index 09b125fd2e..23f3dde927 100644 --- a/tests/pkg_nanocbor/Makefile +++ b/tests/pkg_nanocbor/Makefile @@ -1,7 +1,5 @@ include ../Makefile.tests_common -TEST_ON_CI_WHITELIST += all - USEPKG += nanocbor # Used for verification USEMODULE += embunit diff --git a/tests/pkg_qdsa/Makefile b/tests/pkg_qdsa/Makefile index 7972aeed52..96139163c9 100644 --- a/tests/pkg_qdsa/Makefile +++ b/tests/pkg_qdsa/Makefile @@ -1,7 +1,5 @@ include ../Makefile.tests_common -TEST_ON_CI_WHITELIST += all - # qDSA is not 16 bit compatible BOARD_BLACKLIST := chronos msb-430 msb-430h telosb wsn430-v1_3b wsn430-v1_4 z1 diff --git a/tests/pkg_relic/Makefile b/tests/pkg_relic/Makefile index c053530c16..332c317663 100644 --- a/tests/pkg_relic/Makefile +++ b/tests/pkg_relic/Makefile @@ -46,6 +46,4 @@ USEMODULE += embunit # The rest of the parameters are configuration parameters for RELIC described in its documentation. export RELIC_CONFIG_FLAGS=-DARCH=NONE -DOPSYS=NONE -DQUIET=off -DWORD=32 -DFP_PRIME=255 -DWITH="BN;MD;DV;FP;EP;CP;BC;EC" -DSEED=ZERO -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/pkg_spiffs/Makefile b/tests/pkg_spiffs/Makefile index 19c77d9291..e541ef2061 100644 --- a/tests/pkg_spiffs/Makefile +++ b/tests/pkg_spiffs/Makefile @@ -21,8 +21,6 @@ BOARD_BLACKLIST := chronos \ wsn430-v1_4 \ z1 \ -TEST_ON_CI_WHITELIST += all - USEMODULE += spiffs USEMODULE += embunit diff --git a/tests/pkg_tiny-asn1/Makefile b/tests/pkg_tiny-asn1/Makefile index 5dbed70def..3612d14338 100644 --- a/tests/pkg_tiny-asn1/Makefile +++ b/tests/pkg_tiny-asn1/Makefile @@ -7,6 +7,4 @@ BOARD_BLACKLIST := wsn430-v1_3b wsn430-v1_4 USEPKG += tiny-asn1 -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/pkg_tinycbor/Makefile b/tests/pkg_tinycbor/Makefile index 39e4186ed6..de16785999 100644 --- a/tests/pkg_tinycbor/Makefile +++ b/tests/pkg_tinycbor/Makefile @@ -15,5 +15,4 @@ USEPKG += tinycbor USEMODULE += tinycbor_float -TEST_ON_CI_WHITELIST += all include $(RIOTBASE)/Makefile.include diff --git a/tests/pkg_tinycrypt/Makefile b/tests/pkg_tinycrypt/Makefile index b3355c6edb..4a13e8fac0 100644 --- a/tests/pkg_tinycrypt/Makefile +++ b/tests/pkg_tinycrypt/Makefile @@ -4,8 +4,6 @@ include ../Makefile.tests_common # placeholder for all Cortex-M4 boards. BOARD_WHITELIST += native nrf52dk -TEST_ON_CI_WHITELIST += all - USEPKG += tinycrypt USEMODULE = fmt diff --git a/tests/pkg_u8g2/Makefile b/tests/pkg_u8g2/Makefile index 721a8835a8..432b8d928e 100644 --- a/tests/pkg_u8g2/Makefile +++ b/tests/pkg_u8g2/Makefile @@ -59,7 +59,6 @@ CFLAGS += -DTEST_PIN_RESET=$(TEST_PIN_RESET) CFLAGS += -DTEST_DISPLAY=$(TEST_DISPLAY) -TEST_ON_CI_WHITELIST += all # HACK Blacklist native as `murdock` fails on utf-8 characters for native tests TEST_ON_CI_BLACKLIST += native diff --git a/tests/pkg_ubasic/Makefile b/tests/pkg_ubasic/Makefile index e235dd7583..260ac6a11b 100644 --- a/tests/pkg_ubasic/Makefile +++ b/tests/pkg_ubasic/Makefile @@ -29,8 +29,6 @@ BOARD_BLACKLIST := \ z1 \ # -TEST_ON_CI_WHITELIST += all - USEPKG += ubasic USEMODULE += ubasic_tests diff --git a/tests/pkg_umorse/Makefile b/tests/pkg_umorse/Makefile index ccc82ba398..1ae285f35a 100644 --- a/tests/pkg_umorse/Makefile +++ b/tests/pkg_umorse/Makefile @@ -7,6 +7,4 @@ USEPKG += umorse UMORSE_DELAY_DIT ?= 120 CFLAGS += -DUMORSE_DELAY_DIT=$(UMORSE_DELAY_DIT) -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/posix_semaphore/Makefile b/tests/posix_semaphore/Makefile index 42ae6886c0..a332043cf9 100644 --- a/tests/posix_semaphore/Makefile +++ b/tests/posix_semaphore/Makefile @@ -13,6 +13,4 @@ USEMODULE += posix_semaphore DISABLE_MODULE += auto_init -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/posix_time/Makefile b/tests/posix_time/Makefile index 80171ab760..ceab1bf0f9 100644 --- a/tests/posix_time/Makefile +++ b/tests/posix_time/Makefile @@ -4,6 +4,4 @@ USEMODULE += posix_time USEMODULE += test_utils_interactive_sync -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/ps_schedstatistics/Makefile b/tests/ps_schedstatistics/Makefile index 198289a6e5..bc7ab95c15 100644 --- a/tests/ps_schedstatistics/Makefile +++ b/tests/ps_schedstatistics/Makefile @@ -13,6 +13,4 @@ USEMODULE += ps USEMODULE += schedstatistics USEMODULE += printf_float -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/pthread/Makefile b/tests/pthread/Makefile index 4f2580092d..91e9a583e5 100644 --- a/tests/pthread/Makefile +++ b/tests/pthread/Makefile @@ -10,6 +10,4 @@ BOARD_BLACKLIST := arduino-duemilanove arduino-leonardo arduino-mega2560 \ USEMODULE += posix_headers USEMODULE += pthread -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/pthread_barrier/Makefile b/tests/pthread_barrier/Makefile index 62c5444bf6..c0be0fd9a7 100644 --- a/tests/pthread_barrier/Makefile +++ b/tests/pthread_barrier/Makefile @@ -13,6 +13,4 @@ USEMODULE += pthread USEMODULE += random USEMODULE += xtimer -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/pthread_cleanup/Makefile b/tests/pthread_cleanup/Makefile index 227097f6f8..0eb46a22be 100644 --- a/tests/pthread_cleanup/Makefile +++ b/tests/pthread_cleanup/Makefile @@ -9,6 +9,4 @@ BOARD_BLACKLIST := arduino-duemilanove arduino-leonardo arduino-mega2560 \ USEMODULE += pthread -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/pthread_condition_variable/Makefile b/tests/pthread_condition_variable/Makefile index 27fdeecc04..ad55d08c60 100644 --- a/tests/pthread_condition_variable/Makefile +++ b/tests/pthread_condition_variable/Makefile @@ -15,6 +15,4 @@ USEMODULE += xtimer CFLAGS += -DNATIVE_AUTO_EXIT -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/pthread_cooperation/Makefile b/tests/pthread_cooperation/Makefile index 0b25cdf494..234482deb1 100644 --- a/tests/pthread_cooperation/Makefile +++ b/tests/pthread_cooperation/Makefile @@ -12,6 +12,4 @@ BOARD_INSUFFICIENT_MEMORY := nucleo-f031k6 USEMODULE += posix_headers USEMODULE += pthread -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/pthread_rwlock/Makefile b/tests/pthread_rwlock/Makefile index 2a45db9393..75be06e62f 100644 --- a/tests/pthread_rwlock/Makefile +++ b/tests/pthread_rwlock/Makefile @@ -17,7 +17,6 @@ BOARD_INSUFFICIENT_MEMORY += chronos i-nucleo-lrwan1 \ nucleo-f303k8 nucleo-f334r8 nucleo-l053r8 \ stm32f0discovery stm32l0538-disco -TEST_ON_CI_WHITELIST += all # HACK Blacklist native as `murdock` fails on utf-8 characters for native tests # HACK Blacklist on all as the test implementation can fail due being # de-scheduled during printf diff --git a/tests/pthread_tls/Makefile b/tests/pthread_tls/Makefile index 4f2580092d..91e9a583e5 100644 --- a/tests/pthread_tls/Makefile +++ b/tests/pthread_tls/Makefile @@ -10,6 +10,4 @@ BOARD_BLACKLIST := arduino-duemilanove arduino-leonardo arduino-mega2560 \ USEMODULE += posix_headers USEMODULE += pthread -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/riotboot/Makefile b/tests/riotboot/Makefile index a4e3ade9f3..eb9a14e075 100644 --- a/tests/riotboot/Makefile +++ b/tests/riotboot/Makefile @@ -1,8 +1,6 @@ # If no BOARD is found in the environment, use this default: BOARD ?= samr21-xpro -TEST_ON_CI_WHITELIST += all - # Select the boards with riotboot feature FEATURES_REQUIRED += riotboot diff --git a/tests/rmutex/Makefile b/tests/rmutex/Makefile index d0f315d501..b26c0e211c 100644 --- a/tests/rmutex/Makefile +++ b/tests/rmutex/Makefile @@ -6,6 +6,4 @@ BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-leonardo arduino-nano \ nucleo-f030r8 nucleo-l053r8 stm32f0discovery \ stm32l0538-disco -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/sched_testing/Makefile b/tests/sched_testing/Makefile index ed83fcf2db..2dd53f6649 100644 --- a/tests/sched_testing/Makefile +++ b/tests/sched_testing/Makefile @@ -3,6 +3,4 @@ include ../Makefile.tests_common BOARD_INSUFFICIENT_MEMORY += arduino-duemilanove arduino-leonardo arduino-nano \ arduino-uno nucleo-f031k6 -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/shell/Makefile b/tests/shell/Makefile index e463970ae0..1149dd0888 100644 --- a/tests/shell/Makefile +++ b/tests/shell/Makefile @@ -19,8 +19,6 @@ BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove \ arduino-nano \ arduino-uno -TEST_ON_CI_WHITELIST += all - APP_SHELL_FMT ?= NONE include $(RIOTBASE)/Makefile.include diff --git a/tests/socket_zep/Makefile b/tests/socket_zep/Makefile index cd42d1ee16..37cdc3b814 100644 --- a/tests/socket_zep/Makefile +++ b/tests/socket_zep/Makefile @@ -3,7 +3,6 @@ include ../Makefile.tests_common BOARD_WHITELIST = native # socket_zep is only available on native -TEST_ON_CI_WHITELIST += all # Cannot run the test on `murdock` # ZEP: Unable to connect socket: Cannot assign requested address TEST_ON_CI_BLACKLIST += native diff --git a/tests/ssp/Makefile b/tests/ssp/Makefile index c42b6ce2bf..612ad44af7 100644 --- a/tests/ssp/Makefile +++ b/tests/ssp/Makefile @@ -10,6 +10,4 @@ BOARD_BLACKLIST := arduino-duemilanove arduino-leonardo \ USEMODULE += ssp -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/stdin/Makefile b/tests/stdin/Makefile index 464eba09b7..039280f316 100644 --- a/tests/stdin/Makefile +++ b/tests/stdin/Makefile @@ -2,6 +2,4 @@ include ../Makefile.tests_common USEMODULE += stdin -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/struct_tm_utility/Makefile b/tests/struct_tm_utility/Makefile index 99e45fa1b0..7a66e7fbe2 100644 --- a/tests/struct_tm_utility/Makefile +++ b/tests/struct_tm_utility/Makefile @@ -11,6 +11,4 @@ USEMODULE += timex # The MSP-430 toolchain lacks sscanf: BOARD_BLACKLIST := chronos msb-430 msb-430h telosb wsn430-v1_3b wsn430-v1_4 z1 -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/thread_basic/Makefile b/tests/thread_basic/Makefile index 61bc51c2c4..3d4e971dfe 100644 --- a/tests/thread_basic/Makefile +++ b/tests/thread_basic/Makefile @@ -4,6 +4,4 @@ BOARD_INSUFFICIENT_MEMORY := nucleo-f031k6 DISABLE_MODULE += auto_init -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/thread_cooperation/Makefile b/tests/thread_cooperation/Makefile index 061015cf34..1706c9de1c 100644 --- a/tests/thread_cooperation/Makefile +++ b/tests/thread_cooperation/Makefile @@ -20,6 +20,4 @@ PROBLEM ?= 12 CFLAGS += -DPROBLEM=$(PROBLEM) -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/thread_exit/Makefile b/tests/thread_exit/Makefile index d9618e2f15..cdf10c24bb 100644 --- a/tests/thread_exit/Makefile +++ b/tests/thread_exit/Makefile @@ -5,6 +5,4 @@ BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-leonardo arduino-nano \ DISABLE_MODULE += auto_init -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/thread_flags/Makefile b/tests/thread_flags/Makefile index 37f782b1b2..bf010ce570 100644 --- a/tests/thread_flags/Makefile +++ b/tests/thread_flags/Makefile @@ -6,6 +6,4 @@ BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-leonardo arduino-nano \ USEMODULE += core_thread_flags USEMODULE += xtimer -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/thread_flags_xtimer/Makefile b/tests/thread_flags_xtimer/Makefile index 9d3a2f0644..389a406291 100644 --- a/tests/thread_flags_xtimer/Makefile +++ b/tests/thread_flags_xtimer/Makefile @@ -3,6 +3,4 @@ include ../Makefile.tests_common USEMODULE += core_thread_flags USEMODULE += xtimer -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/thread_flood/Makefile b/tests/thread_flood/Makefile index 391995e8f6..18b41ca54b 100644 --- a/tests/thread_flood/Makefile +++ b/tests/thread_flood/Makefile @@ -2,6 +2,4 @@ include ../Makefile.tests_common DISABLE_MODULE += auto_init -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/thread_msg/Makefile b/tests/thread_msg/Makefile index a866cec008..9335b23a7d 100644 --- a/tests/thread_msg/Makefile +++ b/tests/thread_msg/Makefile @@ -5,6 +5,4 @@ BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-leonardo arduino-nano \ DISABLE_MODULE += auto_init -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/thread_msg_block_race/Makefile b/tests/thread_msg_block_race/Makefile index 08e58b1d82..04d579b7f5 100644 --- a/tests/thread_msg_block_race/Makefile +++ b/tests/thread_msg_block_race/Makefile @@ -9,6 +9,4 @@ DISABLE_MODULE += auto_init FEATURES_REQUIRED += periph_timer USEMODULE += random -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/thread_msg_block_w_queue/Makefile b/tests/thread_msg_block_w_queue/Makefile index 61bc51c2c4..3d4e971dfe 100644 --- a/tests/thread_msg_block_w_queue/Makefile +++ b/tests/thread_msg_block_w_queue/Makefile @@ -4,6 +4,4 @@ BOARD_INSUFFICIENT_MEMORY := nucleo-f031k6 DISABLE_MODULE += auto_init -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/thread_msg_block_wo_queue/Makefile b/tests/thread_msg_block_wo_queue/Makefile index 61bc51c2c4..3d4e971dfe 100644 --- a/tests/thread_msg_block_wo_queue/Makefile +++ b/tests/thread_msg_block_wo_queue/Makefile @@ -4,6 +4,4 @@ BOARD_INSUFFICIENT_MEMORY := nucleo-f031k6 DISABLE_MODULE += auto_init -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/thread_race/Makefile b/tests/thread_race/Makefile index 4671da03d5..9722fe8738 100644 --- a/tests/thread_race/Makefile +++ b/tests/thread_race/Makefile @@ -5,6 +5,4 @@ DISABLE_MODULE += auto_init BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-leonardo arduino-nano \ arduino-uno -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/trace/Makefile b/tests/trace/Makefile index 5b19f9de82..5b3efb4d3f 100644 --- a/tests/trace/Makefile +++ b/tests/trace/Makefile @@ -6,6 +6,4 @@ USEMODULE += trace BOARD_WHITELIST := native -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/trickle/Makefile b/tests/trickle/Makefile index 8d2da1215a..72efd754bc 100644 --- a/tests/trickle/Makefile +++ b/tests/trickle/Makefile @@ -2,6 +2,4 @@ include ../Makefile.tests_common USEMODULE += trickle -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/unittests/Makefile b/tests/unittests/Makefile index 6442020732..bb66096f82 100644 --- a/tests/unittests/Makefile +++ b/tests/unittests/Makefile @@ -246,9 +246,6 @@ BASELIBS += $(UNIT_TESTS:%=$(BINDIR)/%.a) INCLUDES += -I$(RIOTBASE)/tests/unittests/common -# list of boards to run CI tests on -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include .PHONY: $(UNIT_TESTS) diff --git a/tests/warn_conflict/Makefile b/tests/warn_conflict/Makefile index 3c332cd249..04a4c1c710 100644 --- a/tests/warn_conflict/Makefile +++ b/tests/warn_conflict/Makefile @@ -10,6 +10,4 @@ BOARD_WHITELIST := stm32f4discovery # user application. FEATURES_REQUIRED = periph_dac periph_spi -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/xtimer_hang/Makefile b/tests/xtimer_hang/Makefile index 909eb4efdc..a5a1cb19ad 100644 --- a/tests/xtimer_hang/Makefile +++ b/tests/xtimer_hang/Makefile @@ -5,8 +5,6 @@ BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-leonardo arduino-nano \ USEMODULE += xtimer -TEST_ON_CI_WHITELIST += all - # Port and pin configuration for probing with oscilloscope # Define Test pin for hardware timer interrupt, hardware dependent # For all ATmega Platforms diff --git a/tests/xtimer_msg/Makefile b/tests/xtimer_msg/Makefile index 5e10733b73..cab55b58ca 100644 --- a/tests/xtimer_msg/Makefile +++ b/tests/xtimer_msg/Makefile @@ -5,6 +5,4 @@ BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-leonardo arduino-nano \ USEMODULE += xtimer -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/xtimer_msg_receive_timeout/Makefile b/tests/xtimer_msg_receive_timeout/Makefile index 1079b0a411..8bff23ceea 100644 --- a/tests/xtimer_msg_receive_timeout/Makefile +++ b/tests/xtimer_msg_receive_timeout/Makefile @@ -2,6 +2,4 @@ include ../Makefile.tests_common USEMODULE += xtimer -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/xtimer_mutex_lock_timeout/Makefile b/tests/xtimer_mutex_lock_timeout/Makefile index 71206adce3..7ea333e19f 100644 --- a/tests/xtimer_mutex_lock_timeout/Makefile +++ b/tests/xtimer_mutex_lock_timeout/Makefile @@ -3,6 +3,4 @@ include ../Makefile.tests_common USEMODULE += xtimer USEMODULE += shell -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/xtimer_now64_continuity/Makefile b/tests/xtimer_now64_continuity/Makefile index c3c678dd66..6c3bc23fa1 100644 --- a/tests/xtimer_now64_continuity/Makefile +++ b/tests/xtimer_now64_continuity/Makefile @@ -3,7 +3,6 @@ include ../Makefile.tests_common USEMODULE += fmt USEMODULE += xtimer -TEST_ON_CI_WHITELIST += all # This test randomly fails on `native` so disable it from CI TEST_ON_CI_BLACKLIST += native diff --git a/tests/xtimer_periodic_wakeup/Makefile b/tests/xtimer_periodic_wakeup/Makefile index 95130f5e0c..f109b8f351 100644 --- a/tests/xtimer_periodic_wakeup/Makefile +++ b/tests/xtimer_periodic_wakeup/Makefile @@ -5,6 +5,4 @@ BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-leonardo arduino-nano \ USEMODULE += xtimer -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/xtimer_remove/Makefile b/tests/xtimer_remove/Makefile index 1079b0a411..8bff23ceea 100644 --- a/tests/xtimer_remove/Makefile +++ b/tests/xtimer_remove/Makefile @@ -2,6 +2,4 @@ include ../Makefile.tests_common USEMODULE += xtimer -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/xtimer_reset/Makefile b/tests/xtimer_reset/Makefile index 1079b0a411..8bff23ceea 100644 --- a/tests/xtimer_reset/Makefile +++ b/tests/xtimer_reset/Makefile @@ -2,6 +2,4 @@ include ../Makefile.tests_common USEMODULE += xtimer -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include diff --git a/tests/xtimer_usleep/Makefile b/tests/xtimer_usleep/Makefile index db3f153186..5e8d850ad1 100644 --- a/tests/xtimer_usleep/Makefile +++ b/tests/xtimer_usleep/Makefile @@ -2,7 +2,6 @@ include ../Makefile.tests_common USEMODULE += xtimer -TEST_ON_CI_WHITELIST += all # This test randomly fails on `native` so disable it from CI TEST_ON_CI_BLACKLIST += native diff --git a/tests/xtimer_usleep_short/Makefile b/tests/xtimer_usleep_short/Makefile index 1079b0a411..8bff23ceea 100644 --- a/tests/xtimer_usleep_short/Makefile +++ b/tests/xtimer_usleep_short/Makefile @@ -2,6 +2,4 @@ include ../Makefile.tests_common USEMODULE += xtimer -TEST_ON_CI_WHITELIST += all - include $(RIOTBASE)/Makefile.include