mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
bdd721fff4
Blacklist native for the xtimer tests that have timing issues. This also enables running the test on `nrf52dk` as I think it was forgotten when adding the support.
19 lines
524 B
Makefile
19 lines
524 B
Makefile
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
|
|
|
|
# This application uses getchar and thus expects input from stdio
|
|
USEMODULE += stdin
|
|
|
|
# Port and pin configuration for probing with oscilloscope
|
|
# Port number should be found in port enum e.g in cpu/include/periph_cpu.h
|
|
#FEATURES_REQUIRED += periph_gpio
|
|
#CFLAGS += -DSLEEP_PIN=7
|
|
#CFLAGS += -DSLEEP_PORT=PORT_F
|
|
|
|
include $(RIOTBASE)/Makefile.include
|