mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
tests: move core related applications to tests/core/ subdirectory
This commit is contained in:
parent
5621985353
commit
cabe02c24d
2
tests/core/Makefile.core_common
Normal file
2
tests/core/Makefile.core_common
Normal file
@ -0,0 +1,2 @@
|
||||
RIOTBASE ?= $(CURDIR)/../../..
|
||||
include $(CURDIR)/../../Makefile.tests_common
|
@ -1,4 +1,4 @@
|
||||
include ../Makefile.tests_common
|
||||
include ../Makefile.core_common
|
||||
|
||||
USEMODULE += xtimer
|
||||
|
@ -1,4 +1,4 @@
|
||||
include ../Makefile.tests_common
|
||||
include ../Makefile.core_common
|
||||
|
||||
USEMODULE += test_utils_interactive_sync
|
||||
|
@ -1,4 +1,4 @@
|
||||
include ../Makefile.tests_common
|
||||
include ../Makefile.core_common
|
||||
|
||||
FEATURES_BLACKLIST += arch_avr8 arch_msp430 arch_riscv
|
||||
|
@ -1,4 +1,4 @@
|
||||
include ../Makefile.tests_common
|
||||
include ../Makefile.core_common
|
||||
|
||||
USEMODULE += xtimer
|
||||
|
@ -1,4 +1,4 @@
|
||||
include ../Makefile.tests_common
|
||||
include ../Makefile.core_common
|
||||
FEATURES_REQUIRED += cpp
|
||||
FEATURES_REQUIRED += libstdcpp
|
||||
USEPKG += fff
|
@ -1,4 +1,4 @@
|
||||
include ../Makefile.tests_common
|
||||
include ../Makefile.core_common
|
||||
|
||||
USEMODULE += fmt
|
||||
USEMODULE += xtimer
|
@ -1,4 +1,4 @@
|
||||
include ../Makefile.tests_common
|
||||
include ../Makefile.core_common
|
||||
|
||||
USEMODULE += xtimer
|
||||
|
@ -1,3 +1,3 @@
|
||||
include ../Makefile.tests_common
|
||||
include ../Makefile.core_common
|
||||
|
||||
include $(RIOTBASE)/Makefile.include
|
@ -1,4 +1,4 @@
|
||||
include ../Makefile.tests_common
|
||||
include ../Makefile.core_common
|
||||
|
||||
USEMODULE += embunit
|
||||
|
@ -1,3 +1,3 @@
|
||||
include ../Makefile.tests_common
|
||||
include ../Makefile.core_common
|
||||
|
||||
include $(RIOTBASE)/Makefile.include
|
@ -1,3 +1,3 @@
|
||||
include ../Makefile.tests_common
|
||||
include ../Makefile.core_common
|
||||
|
||||
include $(RIOTBASE)/Makefile.include
|
@ -1,3 +1,3 @@
|
||||
include ../Makefile.tests_common
|
||||
include ../Makefile.core_common
|
||||
|
||||
include $(RIOTBASE)/Makefile.include
|
@ -1,4 +1,4 @@
|
||||
include ../Makefile.tests_common
|
||||
include ../Makefile.core_common
|
||||
|
||||
USEMODULE += xtimer
|
||||
|
3
tests/core/mutex_order/Makefile
Normal file
3
tests/core/mutex_order/Makefile
Normal file
@ -0,0 +1,3 @@
|
||||
include ../Makefile.core_common
|
||||
|
||||
include $(RIOTBASE)/Makefile.include
|
@ -1,4 +1,4 @@
|
||||
include ../Makefile.tests_common
|
||||
include ../Makefile.core_common
|
||||
|
||||
# stm32f030f4-demo doesn't have enough RAM to run the test
|
||||
# so we reduce the stack size for every thread
|
3
tests/core/rmutex/Makefile
Normal file
3
tests/core/rmutex/Makefile
Normal file
@ -0,0 +1,3 @@
|
||||
include ../Makefile.core_common
|
||||
|
||||
include $(RIOTBASE)/Makefile.include
|
@ -1,4 +1,4 @@
|
||||
include ../Makefile.tests_common
|
||||
include ../Makefile.core_common
|
||||
|
||||
FEATURES_REQUIRED += cpp
|
||||
|
@ -1,4 +1,4 @@
|
||||
include ../Makefile.tests_common
|
||||
include ../Makefile.core_common
|
||||
|
||||
USEMODULE += nice
|
||||
USEMODULE += ps
|
3
tests/core/sched_testing/Makefile
Normal file
3
tests/core/sched_testing/Makefile
Normal file
@ -0,0 +1,3 @@
|
||||
include ../Makefile.core_common
|
||||
|
||||
include $(RIOTBASE)/Makefile.include
|
3
tests/core/thread_basic/Makefile
Normal file
3
tests/core/thread_basic/Makefile
Normal file
@ -0,0 +1,3 @@
|
||||
include ../Makefile.core_common
|
||||
|
||||
include $(RIOTBASE)/Makefile.include
|
@ -1,4 +1,4 @@
|
||||
include ../Makefile.tests_common
|
||||
include ../Makefile.core_common
|
||||
|
||||
ifneq (,$(filter nucleo-f042k6,$(BOARD)))
|
||||
PROBLEM ?= 3
|
3
tests/core/thread_exit/Makefile
Normal file
3
tests/core/thread_exit/Makefile
Normal file
@ -0,0 +1,3 @@
|
||||
include ../Makefile.core_common
|
||||
|
||||
include $(RIOTBASE)/Makefile.include
|
@ -1,4 +1,4 @@
|
||||
include ../Makefile.tests_common
|
||||
include ../Makefile.core_common
|
||||
|
||||
USEMODULE += core_thread_flags
|
||||
USEMODULE += xtimer
|
@ -1,4 +1,4 @@
|
||||
include ../Makefile.tests_common
|
||||
include ../Makefile.core_common
|
||||
|
||||
USEMODULE += core_thread_flags
|
||||
USEMODULE += xtimer
|
@ -1,4 +1,4 @@
|
||||
include ../Makefile.tests_common
|
||||
include ../Makefile.core_common
|
||||
|
||||
USEMODULE += printf_float
|
||||
USEMODULE += ztimer_usec
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user