From c4bba0e65dce98e4056fe62d1e561a85848a6387 Mon Sep 17 00:00:00 2001 From: Kaspar Schleiser Date: Fri, 1 Apr 2022 12:21:20 +0200 Subject: [PATCH] tests/*: CI blacklist microbit where it fails --- tests/bench_xtimer_load/Makefile | 3 +++ tests/driver_nrfmin/Makefile | 3 +++ tests/event_wait_timeout_ztimer/Makefile | 2 ++ tests/evtimer_mbox/Makefile | 3 +++ tests/evtimer_msg/Makefile | 3 +++ tests/evtimer_underflow/Makefile | 3 +++ tests/gnrc_ipv6_fwd_w_sub/Makefile | 3 +++ tests/gnrc_netif_ipv6_wait_for_global_address/Makefile | 3 +++ tests/gnrc_sixlowpan_frag_sfr/Makefile | 3 +++ tests/gnrc_tx_sync/Makefile | 3 +++ tests/heap_cmd/Makefile | 3 +++ tests/log_color/Makefile | 3 +++ tests/lwip_sock_ip/Makefile | 3 +++ tests/lwip_sock_tcp/Makefile | 3 +++ tests/lwip_sock_udp/Makefile | 3 +++ tests/mtd_raw/Makefile | 3 +++ tests/netstats_l2/Makefile | 3 +++ tests/periph_flashpage/Makefile | 3 +++ tests/periph_gpio/Makefile | 3 +++ tests/periph_rtt/Makefile | 3 +++ tests/periph_rtt_min/Makefile | 3 +++ tests/periph_wdt/Makefile | 3 +++ tests/pkg_umorse/Makefile | 3 +++ tests/posix_semaphore/Makefile | 3 +++ tests/posix_sleep/Makefile | 3 +++ tests/ps_schedstatistics/Makefile | 3 +++ tests/pthread_cooperation/Makefile | 3 +++ tests/shell/Makefile | 3 +++ tests/struct_tm_utility/Makefile | 3 +++ tests/sys_atomic_utils/Makefile | 3 +++ tests/sys_sched_round_robin/Makefile | 3 +++ tests/test_tools/Makefile | 3 +++ tests/thread_flags/Makefile | 3 +++ tests/trickle/Makefile | 3 +++ tests/turo_txt/Makefile | 3 +++ tests/xtimer_hang/Makefile | 3 +++ tests/xtimer_mutex_lock_timeout/Makefile | 3 +++ tests/xtimer_now64_continuity/Makefile | 3 +++ tests/xtimer_periodic_wakeup/Makefile | 3 +++ tests/xtimer_rmutex_lock_timeout/Makefile | 3 +++ tests/xtimer_usleep/Makefile | 3 +++ tests/xtimer_usleep_short/Makefile | 3 +++ tests/ztimer_overhead/Makefile | 3 +++ tests/ztimer_periodic/Makefile | 3 +++ tests/ztimer_rmutex_lock_timeout/Makefile | 3 +++ tests/ztimer_underflow/Makefile | 3 +++ tests/ztimer_xsec/Makefile | 3 +++ 47 files changed, 140 insertions(+) diff --git a/tests/bench_xtimer_load/Makefile b/tests/bench_xtimer_load/Makefile index fce58f27a3..eed9837b83 100644 --- a/tests/bench_xtimer_load/Makefile +++ b/tests/bench_xtimer_load/Makefile @@ -6,4 +6,7 @@ USEMODULE += xtimer TEST_HZ ?= 64 CFLAGS += -DTEST_HZ=$(TEST_HZ)LU +# microbit qemu failing currently +TEST_ON_CI_BLACKLIST += microbit + include $(RIOTBASE)/Makefile.include diff --git a/tests/driver_nrfmin/Makefile b/tests/driver_nrfmin/Makefile index 6b5b74b05d..2bdd3bb01a 100644 --- a/tests/driver_nrfmin/Makefile +++ b/tests/driver_nrfmin/Makefile @@ -11,4 +11,7 @@ USEMODULE += gnrc_icmpv6_echo USEMODULE += shell USEMODULE += shell_commands +# microbit qemu failing currently +TEST_ON_CI_BLACKLIST += microbit + include $(RIOTBASE)/Makefile.include diff --git a/tests/event_wait_timeout_ztimer/Makefile b/tests/event_wait_timeout_ztimer/Makefile index 72dc3ff4ef..11a8eccecf 100644 --- a/tests/event_wait_timeout_ztimer/Makefile +++ b/tests/event_wait_timeout_ztimer/Makefile @@ -11,5 +11,7 @@ ifneq (,$(filter stm32f030f4-demo,$(BOARD))) CFLAGS += -DTHREAD_STACKSIZE_DEFAULT=512 endif +# microbit qemu lacks rtt +TEST_ON_CI_BLACKLIST += microbit include $(RIOTBASE)/Makefile.include diff --git a/tests/evtimer_mbox/Makefile b/tests/evtimer_mbox/Makefile index 9eec34fe9c..a67012ed9b 100644 --- a/tests/evtimer_mbox/Makefile +++ b/tests/evtimer_mbox/Makefile @@ -2,4 +2,7 @@ include ../Makefile.tests_common USEMODULE += evtimer_mbox +# microbit qemu lacks rtt +TEST_ON_CI_BLACKLIST += microbit + include $(RIOTBASE)/Makefile.include diff --git a/tests/evtimer_msg/Makefile b/tests/evtimer_msg/Makefile index a980101a4e..27a3dbc657 100644 --- a/tests/evtimer_msg/Makefile +++ b/tests/evtimer_msg/Makefile @@ -6,4 +6,7 @@ USEMODULE += xtimer # This test randomly fails on `native` so disable it from CI TEST_ON_CI_BLACKLIST += native +# microbit qemu lacks rtt +TEST_ON_CI_BLACKLIST += microbit + include $(RIOTBASE)/Makefile.include diff --git a/tests/evtimer_underflow/Makefile b/tests/evtimer_underflow/Makefile index 0c65537ed2..981bc65620 100644 --- a/tests/evtimer_underflow/Makefile +++ b/tests/evtimer_underflow/Makefile @@ -3,4 +3,7 @@ include ../Makefile.tests_common USEMODULE += evtimer USEMODULE += xtimer +# microbit qemu lacks rtt +TEST_ON_CI_BLACKLIST += microbit + include $(RIOTBASE)/Makefile.include diff --git a/tests/gnrc_ipv6_fwd_w_sub/Makefile b/tests/gnrc_ipv6_fwd_w_sub/Makefile index 9de0c421cc..cdb15cf755 100644 --- a/tests/gnrc_ipv6_fwd_w_sub/Makefile +++ b/tests/gnrc_ipv6_fwd_w_sub/Makefile @@ -14,6 +14,9 @@ USEMODULE += xtimer CFLAGS += -DTEST_SUITES +# microbit qemu failing currently +TEST_ON_CI_BLACKLIST += microbit + include $(RIOTBASE)/Makefile.include # Set GNRC_PKTBUF_SIZE via CFLAGS if not being set via Kconfig. diff --git a/tests/gnrc_netif_ipv6_wait_for_global_address/Makefile b/tests/gnrc_netif_ipv6_wait_for_global_address/Makefile index b745e1bf2a..2c7bcba6c3 100644 --- a/tests/gnrc_netif_ipv6_wait_for_global_address/Makefile +++ b/tests/gnrc_netif_ipv6_wait_for_global_address/Makefile @@ -16,4 +16,7 @@ CFLAGS += -DGNRC_NETIF_GROUPS_NUMOF=8 CFLAGS += -DLOG_LEVEL=LOG_NONE CFLAGS += -DTEST_SUITES +# microbit qemu failing currently +TEST_ON_CI_BLACKLIST += microbit + include $(RIOTBASE)/Makefile.include diff --git a/tests/gnrc_sixlowpan_frag_sfr/Makefile b/tests/gnrc_sixlowpan_frag_sfr/Makefile index 7302622270..a0eb859910 100644 --- a/tests/gnrc_sixlowpan_frag_sfr/Makefile +++ b/tests/gnrc_sixlowpan_frag_sfr/Makefile @@ -11,6 +11,9 @@ USEMODULE += netdev_test CFLAGS += -DTEST_SUITES +# microbit qemu failing currently +TEST_ON_CI_BLACKLIST += microbit + include $(RIOTBASE)/Makefile.include ifndef CONFIG_GNRC_IPV6_NIB_NO_RTR_SOL diff --git a/tests/gnrc_tx_sync/Makefile b/tests/gnrc_tx_sync/Makefile index 444f53ed2c..3fcd0e2596 100644 --- a/tests/gnrc_tx_sync/Makefile +++ b/tests/gnrc_tx_sync/Makefile @@ -17,6 +17,9 @@ USEMODULE += xtimer USEMODULE += auto_init_gnrc_netif USEMODULE += iolist +# microbit qemu failing currently +TEST_ON_CI_BLACKLIST += microbit + include $(RIOTBASE)/Makefile.include CFLAGS += -DDEBUG_ASSERT_VERBOSE=1 diff --git a/tests/heap_cmd/Makefile b/tests/heap_cmd/Makefile index 2bb2ca61c2..cf76693b16 100644 --- a/tests/heap_cmd/Makefile +++ b/tests/heap_cmd/Makefile @@ -5,4 +5,7 @@ USEMODULE += shell USEMODULE += shell_commands USEMODULE += ps +# microbit qemu failing currently +TEST_ON_CI_BLACKLIST += microbit + include $(RIOTBASE)/Makefile.include diff --git a/tests/log_color/Makefile b/tests/log_color/Makefile index 61e5d8e843..dfd524bb30 100644 --- a/tests/log_color/Makefile +++ b/tests/log_color/Makefile @@ -5,4 +5,7 @@ USEMODULE += log_color # Enable debug log level CFLAGS += -DLOG_LEVEL=4 +# microbit qemu failing currently +TEST_ON_CI_BLACKLIST += microbit + include $(RIOTBASE)/Makefile.include diff --git a/tests/lwip_sock_ip/Makefile b/tests/lwip_sock_ip/Makefile index d0dd12a82c..7e368d5e82 100644 --- a/tests/lwip_sock_ip/Makefile +++ b/tests/lwip_sock_ip/Makefile @@ -33,4 +33,7 @@ DISABLE_MODULE += auto_init_lwip CFLAGS += -DSO_REUSE CFLAGS += -DLWIP_SO_RCVTIMEO +# microbit qemu failing currently +TEST_ON_CI_BLACKLIST += microbit + include $(RIOTBASE)/Makefile.include diff --git a/tests/lwip_sock_tcp/Makefile b/tests/lwip_sock_tcp/Makefile index 93544ef344..791e52c9fd 100644 --- a/tests/lwip_sock_tcp/Makefile +++ b/tests/lwip_sock_tcp/Makefile @@ -30,4 +30,7 @@ CFLAGS += -DLWIP_SOCK_TCP_ACCEPT_TIMEOUT=500 CFLAGS += -DLWIP_NETIF_LOOPBACK=1 CFLAGS += -DLWIP_HAVE_LOOPIF=1 +# microbit qemu failing currently +TEST_ON_CI_BLACKLIST += microbit + include $(RIOTBASE)/Makefile.include diff --git a/tests/lwip_sock_udp/Makefile b/tests/lwip_sock_udp/Makefile index de56d817aa..08799aa4b5 100644 --- a/tests/lwip_sock_udp/Makefile +++ b/tests/lwip_sock_udp/Makefile @@ -33,4 +33,7 @@ DISABLE_MODULE += auto_init_lwip CFLAGS += -DSO_REUSE CFLAGS += -DLWIP_SO_RCVTIMEO +# microbit qemu failing currently +TEST_ON_CI_BLACKLIST += microbit + include $(RIOTBASE)/Makefile.include diff --git a/tests/mtd_raw/Makefile b/tests/mtd_raw/Makefile index 37a8d97fe6..29b2bac58b 100644 --- a/tests/mtd_raw/Makefile +++ b/tests/mtd_raw/Makefile @@ -13,4 +13,7 @@ CFLAGS += -DCONFIG_MTD_SDCARD_ERASE=1 # Sometimes fails. See #16130. TEST_ON_CI_BLACKLIST += esp32-wroom-32 +# microbit qemu failing currently +TEST_ON_CI_BLACKLIST += microbit + include $(RIOTBASE)/Makefile.include diff --git a/tests/netstats_l2/Makefile b/tests/netstats_l2/Makefile index fad684c782..beee00d36b 100644 --- a/tests/netstats_l2/Makefile +++ b/tests/netstats_l2/Makefile @@ -17,4 +17,7 @@ TEST_ON_CI_BLACKLIST += native # sometimes fails on esp32, see #14237. TEST_ON_CI_BLACKLIST += esp32-wroom-32 +# microbit qemu failing currently +TEST_ON_CI_BLACKLIST += microbit + include $(RIOTBASE)/Makefile.include diff --git a/tests/periph_flashpage/Makefile b/tests/periph_flashpage/Makefile index eee35808b0..a7b23f74bf 100644 --- a/tests/periph_flashpage/Makefile +++ b/tests/periph_flashpage/Makefile @@ -11,4 +11,7 @@ USEMODULE += shell # avoid running Kconfig by default SHOULD_RUN_KCONFIG ?= +# microbit qemu failing currently +TEST_ON_CI_BLACKLIST += microbit + include $(RIOTBASE)/Makefile.include diff --git a/tests/periph_gpio/Makefile b/tests/periph_gpio/Makefile index 094e3375e8..22b4aab787 100644 --- a/tests/periph_gpio/Makefile +++ b/tests/periph_gpio/Makefile @@ -37,6 +37,9 @@ endif # avoid running Kconfig by default SHOULD_RUN_KCONFIG ?= +# microbit qemu failing currently +TEST_ON_CI_BLACKLIST += microbit + include $(RIOTBASE)/Makefile.include $(call target-export-variables,test,PORT_UNDER_TEST) diff --git a/tests/periph_rtt/Makefile b/tests/periph_rtt/Makefile index 288072512b..7ed6dd6b5d 100644 --- a/tests/periph_rtt/Makefile +++ b/tests/periph_rtt/Makefile @@ -10,6 +10,9 @@ DISABLE_MODULE += periph_init_rtt # avoid running Kconfig by default SHOULD_RUN_KCONFIG ?= +# microbit qemu lacks rtt +TEST_ON_CI_BLACKLIST += microbit + include $(RIOTBASE)/Makefile.include # Put board specific dependencies here diff --git a/tests/periph_rtt_min/Makefile b/tests/periph_rtt_min/Makefile index 7a738aaed5..ce0beb4b3b 100644 --- a/tests/periph_rtt_min/Makefile +++ b/tests/periph_rtt_min/Makefile @@ -8,6 +8,9 @@ DISABLE_MODULE += periph_init_rtt RIOT_TERMINAL ?= socat +# microbit qemu lacks rtt +TEST_ON_CI_BLACKLIST += microbit + include $(RIOTBASE)/Makefile.include # use highest possible RTT_FREQUENCY for boards that allow it diff --git a/tests/periph_wdt/Makefile b/tests/periph_wdt/Makefile index a18b03d01e..9554f64ea2 100644 --- a/tests/periph_wdt/Makefile +++ b/tests/periph_wdt/Makefile @@ -6,4 +6,7 @@ FEATURES_REQUIRED += periph_wdt USEMODULE += xtimer USEMODULE += shell +# microbit qemu failing currently +TEST_ON_CI_BLACKLIST += microbit + include $(RIOTBASE)/Makefile.include diff --git a/tests/pkg_umorse/Makefile b/tests/pkg_umorse/Makefile index a3d3a5ce8b..b3cfc76ee2 100644 --- a/tests/pkg_umorse/Makefile +++ b/tests/pkg_umorse/Makefile @@ -7,4 +7,7 @@ USEMODULE += ztimer UMORSE_DELAY_DIT ?= 120 CFLAGS += -DUMORSE_DELAY_DIT=$(UMORSE_DELAY_DIT) +# microbit qemu failing currently +TEST_ON_CI_BLACKLIST += microbit + include $(RIOTBASE)/Makefile.include diff --git a/tests/posix_semaphore/Makefile b/tests/posix_semaphore/Makefile index 921a3c876c..a08bd9a64c 100644 --- a/tests/posix_semaphore/Makefile +++ b/tests/posix_semaphore/Makefile @@ -3,4 +3,7 @@ include ../Makefile.tests_common USEMODULE += fmt USEMODULE += posix_semaphore +# microbit qemu failing currently +TEST_ON_CI_BLACKLIST += microbit + include $(RIOTBASE)/Makefile.include diff --git a/tests/posix_sleep/Makefile b/tests/posix_sleep/Makefile index 2d5f6f5dda..7c6d7e76e3 100644 --- a/tests/posix_sleep/Makefile +++ b/tests/posix_sleep/Makefile @@ -2,4 +2,7 @@ include ../Makefile.tests_common USEMODULE += posix_sleep +# microbit qemu failing currently +TEST_ON_CI_BLACKLIST += microbit + include $(RIOTBASE)/Makefile.include diff --git a/tests/ps_schedstatistics/Makefile b/tests/ps_schedstatistics/Makefile index 6dbf2ff4a7..b651a6ee8e 100644 --- a/tests/ps_schedstatistics/Makefile +++ b/tests/ps_schedstatistics/Makefile @@ -13,4 +13,7 @@ USEMODULE += ztimer_sec # the start of the shell DISABLE_MODULE += test_utils_interactive_sync_shell +# microbit qemu failing currently +TEST_ON_CI_BLACKLIST += microbit + include $(RIOTBASE)/Makefile.include diff --git a/tests/pthread_cooperation/Makefile b/tests/pthread_cooperation/Makefile index a9a67f8f13..cd51dc4cba 100644 --- a/tests/pthread_cooperation/Makefile +++ b/tests/pthread_cooperation/Makefile @@ -14,4 +14,7 @@ BOARD_BLACKLIST := arduino-nano arduino-duemilanove \ USEMODULE += posix_headers USEMODULE += pthread +# microbit qemu failing currently +TEST_ON_CI_BLACKLIST += microbit + include $(RIOTBASE)/Makefile.include diff --git a/tests/shell/Makefile b/tests/shell/Makefile index a3f6b0072e..271cf5fa6e 100644 --- a/tests/shell/Makefile +++ b/tests/shell/Makefile @@ -16,6 +16,9 @@ RIOT_TERMINAL ?= socat APP_SHELL_FMT ?= NONE +# microbit qemu failing currently +TEST_ON_CI_BLACKLIST += microbit + include $(RIOTBASE)/Makefile.include # the test script skips tests if socat is not used diff --git a/tests/struct_tm_utility/Makefile b/tests/struct_tm_utility/Makefile index 31ea32d3fb..13c43fed3d 100644 --- a/tests/struct_tm_utility/Makefile +++ b/tests/struct_tm_utility/Makefile @@ -3,4 +3,7 @@ include ../Makefile.tests_common USEMODULE += shell USEMODULE += timex +# microbit qemu failing currently +TEST_ON_CI_BLACKLIST += microbit + include $(RIOTBASE)/Makefile.include diff --git a/tests/sys_atomic_utils/Makefile b/tests/sys_atomic_utils/Makefile index f23bc3972a..f820a87aa6 100644 --- a/tests/sys_atomic_utils/Makefile +++ b/tests/sys_atomic_utils/Makefile @@ -6,4 +6,7 @@ USEMODULE += random USEMODULE += shell USEMODULE += xtimer +# microbit qemu failing currently +TEST_ON_CI_BLACKLIST += microbit + include $(RIOTBASE)/Makefile.include diff --git a/tests/sys_sched_round_robin/Makefile b/tests/sys_sched_round_robin/Makefile index 26e633d071..f38c5fd633 100644 --- a/tests/sys_sched_round_robin/Makefile +++ b/tests/sys_sched_round_robin/Makefile @@ -7,4 +7,7 @@ ifneq (1,$(NORR)) USEMODULE += sched_round_robin endif +# microbit qemu failing currently +TEST_ON_CI_BLACKLIST += microbit + include $(RIOTBASE)/Makefile.include diff --git a/tests/test_tools/Makefile b/tests/test_tools/Makefile index 62788a6931..308f41c63d 100644 --- a/tests/test_tools/Makefile +++ b/tests/test_tools/Makefile @@ -10,6 +10,9 @@ DISABLE_MODULE += test_utils_interactive_sync # include sys/test_utils/dummy_thread USEMODULE += dummy_thread +# microbit qemu failing currently +TEST_ON_CI_BLACKLIST += microbit + include $(RIOTBASE)/Makefile.include # Set the shell echo configuration via CFLAGS if not being controlled via Kconfig diff --git a/tests/thread_flags/Makefile b/tests/thread_flags/Makefile index 389a406291..bf1b067432 100644 --- a/tests/thread_flags/Makefile +++ b/tests/thread_flags/Makefile @@ -3,4 +3,7 @@ include ../Makefile.tests_common USEMODULE += core_thread_flags USEMODULE += xtimer +# microbit qemu timing is off +TEST_ON_CI_BLACKLIST += microbit + include $(RIOTBASE)/Makefile.include diff --git a/tests/trickle/Makefile b/tests/trickle/Makefile index 72efd754bc..da98e5784e 100644 --- a/tests/trickle/Makefile +++ b/tests/trickle/Makefile @@ -2,4 +2,7 @@ include ../Makefile.tests_common USEMODULE += trickle +# microbit qemu lacks rtt +TEST_ON_CI_BLACKLIST += microbit + include $(RIOTBASE)/Makefile.include diff --git a/tests/turo_txt/Makefile b/tests/turo_txt/Makefile index 053b6491d4..cb78204caf 100644 --- a/tests/turo_txt/Makefile +++ b/tests/turo_txt/Makefile @@ -4,4 +4,7 @@ USEMODULE += test_utils_result_output USEMODULE += test_utils_result_output_txt USEMODULE += shell +# microbit qemu failing currently +TEST_ON_CI_BLACKLIST += microbit + include $(RIOTBASE)/Makefile.include diff --git a/tests/xtimer_hang/Makefile b/tests/xtimer_hang/Makefile index 3ebf67e315..ee2b79656c 100644 --- a/tests/xtimer_hang/Makefile +++ b/tests/xtimer_hang/Makefile @@ -18,4 +18,7 @@ DISABLE_MODULE := core_msg #CFLAGS += -DWORKER_THREAD_PIN_2=GPIO_PIN\(5,6\) #CFLAGS += -DMAIN_THREAD_PIN=GPIO_PIN\(5,5\) +# microbit qemu failing currently +TEST_ON_CI_BLACKLIST += microbit + include $(RIOTBASE)/Makefile.include diff --git a/tests/xtimer_mutex_lock_timeout/Makefile b/tests/xtimer_mutex_lock_timeout/Makefile index 7a6dd80c6f..24c6fb4f1d 100644 --- a/tests/xtimer_mutex_lock_timeout/Makefile +++ b/tests/xtimer_mutex_lock_timeout/Makefile @@ -7,4 +7,7 @@ USEMODULE += shell #USEMODULE += ps #USEMODULE += shell_commands +# microbit qemu failing currently +TEST_ON_CI_BLACKLIST += microbit + include $(RIOTBASE)/Makefile.include diff --git a/tests/xtimer_now64_continuity/Makefile b/tests/xtimer_now64_continuity/Makefile index 6c3bc23fa1..148cd84c53 100644 --- a/tests/xtimer_now64_continuity/Makefile +++ b/tests/xtimer_now64_continuity/Makefile @@ -6,4 +6,7 @@ USEMODULE += xtimer # This test randomly fails on `native` so disable it from CI TEST_ON_CI_BLACKLIST += native +# microbit qemu failing currently +TEST_ON_CI_BLACKLIST += microbit + include $(RIOTBASE)/Makefile.include diff --git a/tests/xtimer_periodic_wakeup/Makefile b/tests/xtimer_periodic_wakeup/Makefile index bdae43b126..f835fcc09e 100644 --- a/tests/xtimer_periodic_wakeup/Makefile +++ b/tests/xtimer_periodic_wakeup/Makefile @@ -11,4 +11,7 @@ ifneq (,$(filter stm32f030f4-demo,$(BOARD))) CFLAGS += -DTHREAD_STACKSIZE_DEFAULT=512 endif +# microbit qemu failing currently +TEST_ON_CI_BLACKLIST += microbit + include $(RIOTBASE)/Makefile.include diff --git a/tests/xtimer_rmutex_lock_timeout/Makefile b/tests/xtimer_rmutex_lock_timeout/Makefile index 7ea333e19f..1ee267d3f6 100644 --- a/tests/xtimer_rmutex_lock_timeout/Makefile +++ b/tests/xtimer_rmutex_lock_timeout/Makefile @@ -3,4 +3,7 @@ include ../Makefile.tests_common USEMODULE += xtimer USEMODULE += shell +# microbit qemu failing currently +TEST_ON_CI_BLACKLIST += microbit + include $(RIOTBASE)/Makefile.include diff --git a/tests/xtimer_usleep/Makefile b/tests/xtimer_usleep/Makefile index 2b46a09c6f..f9cd9af854 100644 --- a/tests/xtimer_usleep/Makefile +++ b/tests/xtimer_usleep/Makefile @@ -11,4 +11,7 @@ TEST_ON_CI_BLACKLIST += native #CFLAGS += -DSLEEP_PIN=7 #CFLAGS += -DSLEEP_PORT=PORT_F +# microbit qemu failing currently +TEST_ON_CI_BLACKLIST += microbit + include $(RIOTBASE)/Makefile.include diff --git a/tests/xtimer_usleep_short/Makefile b/tests/xtimer_usleep_short/Makefile index 8bff23ceea..ea83ba30b7 100644 --- a/tests/xtimer_usleep_short/Makefile +++ b/tests/xtimer_usleep_short/Makefile @@ -2,4 +2,7 @@ include ../Makefile.tests_common USEMODULE += xtimer +# microbit qemu failing currently +TEST_ON_CI_BLACKLIST += microbit + include $(RIOTBASE)/Makefile.include diff --git a/tests/ztimer_overhead/Makefile b/tests/ztimer_overhead/Makefile index c4e52b629f..4d8e519d89 100644 --- a/tests/ztimer_overhead/Makefile +++ b/tests/ztimer_overhead/Makefile @@ -6,4 +6,7 @@ USEMODULE += ztimer_auto_adjust USEMODULE += ztimer_overhead USEMODULE += ztimer_usec +# microbit qemu timing is off +TEST_ON_CI_BLACKLIST += microbit + include $(RIOTBASE)/Makefile.include diff --git a/tests/ztimer_periodic/Makefile b/tests/ztimer_periodic/Makefile index fa67ced1d8..dd85c297e2 100644 --- a/tests/ztimer_periodic/Makefile +++ b/tests/ztimer_periodic/Makefile @@ -10,4 +10,7 @@ TEST_ON_CI_BLACKLIST += native USEMODULE += fmt USEMODULE += ztimer_usec ztimer_msec +# microbit qemu lacks rtt +TEST_ON_CI_BLACKLIST += microbit + include $(RIOTBASE)/Makefile.include diff --git a/tests/ztimer_rmutex_lock_timeout/Makefile b/tests/ztimer_rmutex_lock_timeout/Makefile index a240628e83..edf5ee6770 100644 --- a/tests/ztimer_rmutex_lock_timeout/Makefile +++ b/tests/ztimer_rmutex_lock_timeout/Makefile @@ -3,4 +3,7 @@ include ../Makefile.tests_common USEMODULE += ztimer_usec USEMODULE += shell +# microbit qemu failing currently +TEST_ON_CI_BLACKLIST += microbit + include $(RIOTBASE)/Makefile.include diff --git a/tests/ztimer_underflow/Makefile b/tests/ztimer_underflow/Makefile index 88ca9a1bb7..32393c9e57 100644 --- a/tests/ztimer_underflow/Makefile +++ b/tests/ztimer_underflow/Makefile @@ -17,4 +17,7 @@ endif CFLAGS += -DTEST_ZTIMER_CLOCK=$(TEST_ZTIMER_CLOCK) +# microbit qemu failing currently +TEST_ON_CI_BLACKLIST += microbit + include $(RIOTBASE)/Makefile.include diff --git a/tests/ztimer_xsec/Makefile b/tests/ztimer_xsec/Makefile index baa0f6980e..8709ee2154 100644 --- a/tests/ztimer_xsec/Makefile +++ b/tests/ztimer_xsec/Makefile @@ -5,4 +5,7 @@ USEMODULE += ztimer_usec USEMODULE += ztimer_msec USEMODULE += ztimer_sec +# microbit qemu lacks rtt +TEST_ON_CI_BLACKLIST += microbit + include $(RIOTBASE)/Makefile.include