1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

Merge pull request #20401 from maribu/tests/sys/posix_semaphore/disable_native_on_ci

examples, tests: disable native and native64 for more flaky tests
This commit is contained in:
Marian Buschsieweke 2024-02-20 12:21:25 +00:00 committed by GitHub
commit 34de5286b7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 1 deletions

View File

@ -32,7 +32,7 @@ FEATURES_OPTIONAL += periph_spi
TESTRUNNER_RESET_AFTER_TERM ?= 1
# failing on native with floating point exception (#15870)
TEST_ON_CI_BLACKLIST = native
TEST_ON_CI_BLACKLIST += native native64
# avoid running Kconfig by default
SHOULD_RUN_KCONFIG ?=

View File

@ -7,4 +7,8 @@ USEMODULE += ztimer64_usec
# microbit qemu failing currently
TEST_ON_CI_BLACKLIST += microbit
# native / native64 may fail under load with:
# first: waited too long <NUM> usec => FAILED
TEST_ON_CI_BLACKLIST += native native64
include $(RIOTBASE)/Makefile.include