mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
tests/*: CI blacklist microbit where it fails
This commit is contained in:
parent
00e427d91d
commit
c4bba0e65d
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -2,4 +2,7 @@ include ../Makefile.tests_common
|
||||
|
||||
USEMODULE += evtimer_mbox
|
||||
|
||||
# microbit qemu lacks rtt
|
||||
TEST_ON_CI_BLACKLIST += microbit
|
||||
|
||||
include $(RIOTBASE)/Makefile.include
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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.
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -5,4 +5,7 @@ USEMODULE += shell
|
||||
USEMODULE += shell_commands
|
||||
USEMODULE += ps
|
||||
|
||||
# microbit qemu failing currently
|
||||
TEST_ON_CI_BLACKLIST += microbit
|
||||
|
||||
include $(RIOTBASE)/Makefile.include
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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)
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -2,4 +2,7 @@ include ../Makefile.tests_common
|
||||
|
||||
USEMODULE += posix_sleep
|
||||
|
||||
# microbit qemu failing currently
|
||||
TEST_ON_CI_BLACKLIST += microbit
|
||||
|
||||
include $(RIOTBASE)/Makefile.include
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -6,4 +6,7 @@ USEMODULE += random
|
||||
USEMODULE += shell
|
||||
USEMODULE += xtimer
|
||||
|
||||
# microbit qemu failing currently
|
||||
TEST_ON_CI_BLACKLIST += microbit
|
||||
|
||||
include $(RIOTBASE)/Makefile.include
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -2,4 +2,7 @@ include ../Makefile.tests_common
|
||||
|
||||
USEMODULE += trickle
|
||||
|
||||
# microbit qemu lacks rtt
|
||||
TEST_ON_CI_BLACKLIST += microbit
|
||||
|
||||
include $(RIOTBASE)/Makefile.include
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -7,4 +7,7 @@ USEMODULE += shell
|
||||
#USEMODULE += ps
|
||||
#USEMODULE += shell_commands
|
||||
|
||||
# microbit qemu failing currently
|
||||
TEST_ON_CI_BLACKLIST += microbit
|
||||
|
||||
include $(RIOTBASE)/Makefile.include
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -2,4 +2,7 @@ include ../Makefile.tests_common
|
||||
|
||||
USEMODULE += xtimer
|
||||
|
||||
# microbit qemu failing currently
|
||||
TEST_ON_CI_BLACKLIST += microbit
|
||||
|
||||
include $(RIOTBASE)/Makefile.include
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user