mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
562f1f0210
Use `test_utils_interactive_sync` for the following tests explicitly: - tests/periph/timer_periodic - tests/sys/posix_sleep This is needed for accurate timestamping of the stdio received. The tests will not pass without on `native` / `native64`.
14 lines
368 B
Makefile
14 lines
368 B
Makefile
include ../Makefile.sys_common
|
|
|
|
USEMODULE += posix_sleep
|
|
|
|
# Interactive sync improves accuracy of timestamping the output
|
|
# and is also needed on native for the automatic test to
|
|
# pass. Hence, we just depend on it here.
|
|
USEMODULE += test_utils_interactive_sync
|
|
|
|
# microbit qemu failing currently
|
|
TEST_ON_CI_BLACKLIST += microbit
|
|
|
|
include $(RIOTBASE)/Makefile.include
|