1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-28 22:49:47 +01:00

tests: move sys related applications to tests/sys/ subdirectory

This commit is contained in:
Alexandre Abadie 2023-05-10 10:36:12 +02:00
parent 31ac82030e
commit 0147d44258
No known key found for this signature in database
GPG Key ID: 1C919A403CAE1405
563 changed files with 124 additions and 120 deletions

View File

@ -0,0 +1,2 @@
RIOTBASE ?= $(CURDIR)/../../..
include $(CURDIR)/../../Makefile.tests_common

View File

@ -1 +1 @@
../shell/main.c
../sys/shell/main.c

View File

@ -0,0 +1,2 @@
RIOTBASE ?= $(CURDIR)/../../..
include $(CURDIR)/../../Makefile.tests_common

View File

@ -1,5 +1,5 @@
BOARD ?= samr21-xpro
include ../Makefile.tests_common
include ../Makefile.sys_common
include $(RIOTBASE)/Makefile.include

View File

@ -1,6 +1,6 @@
BOARD ?= arduino-zero
include ../Makefile.tests_common
include ../Makefile.sys_common
USEMODULE += arduino

View File

@ -1,6 +1,6 @@
BOARD ?= arduino-zero
include ../Makefile.tests_common
include ../Makefile.sys_common
LED_PIN ?= 3

View File

@ -1,6 +1,6 @@
BOARD ?= arduino-zero
include ../Makefile.tests_common
include ../Makefile.sys_common
USEPKG += talking_leds

View File

@ -1,4 +1,4 @@
include ../Makefile.tests_common
include ../Makefile.sys_common
USEMODULE += atomic_utils
USEMODULE += fmt

View File

@ -1,4 +1,4 @@
include ../Makefile.tests_common
include ../Makefile.sys_common
USEMODULE += embunit
USEMODULE += atomic_utils

View File

@ -1,4 +1,4 @@
include ../Makefile.tests_common
include ../Makefile.sys_common
USEMODULE += hashes
USEMODULE += bloom

View File

@ -1,4 +1,4 @@
include ../Makefile.tests_common
include ../Makefile.sys_common
# As it is a simple compilation test, only the basic modules are needed
DISABLE_MODULE := core_msg

View File

@ -1,5 +1,5 @@
export APPLICATION = can_trx
include ../Makefile.tests_common
include ../Makefile.sys_common
USEMODULE += shell_cmds_default
USEMODULE += ps

View File

@ -1,4 +1,4 @@
include ../Makefile.tests_common
include ../Makefile.sys_common
USEMODULE += shell
USEMODULE += can

View File

@ -1,4 +1,4 @@
include ../Makefile.tests_common
include ../Makefile.sys_common
USEMODULE += cb_mux

View File

@ -1,4 +1,4 @@
include ../Makefile.tests_common
include ../Makefile.sys_common
USEMODULE += cb_mux \
xtimer

View File

@ -1,4 +1,4 @@
include ../Makefile.tests_common
include ../Makefile.sys_common
USEMODULE += congure_abe
USEMODULE += congure_test

View File

@ -1,4 +1,4 @@
include ../Makefile.tests_common
include ../Makefile.sys_common
USEMODULE += congure_quic
USEMODULE += congure_test

View File

@ -1,4 +1,4 @@
include ../Makefile.tests_common
include ../Makefile.sys_common
USEMODULE += congure_reno
USEMODULE += congure_test

View File

@ -1,4 +1,4 @@
include ../Makefile.tests_common
include ../Makefile.sys_common
USEMODULE += congure_mock
USEMODULE += congure_test

View File

@ -1,6 +1,6 @@
BOARD ?= nucleo-f767zi
include ../Makefile.tests_common
include ../Makefile.sys_common
USEMODULE += shell_cmds_default
USEMODULE += ps

View File

@ -1,4 +1,4 @@
include ../Makefile.tests_common
include ../Makefile.sys_common
# nucleo-f303k8 doesn't have enough RAM to run the test so we reduce the stack
# size for every thread

View File

@ -1,4 +1,4 @@
include ../Makefile.tests_common
include ../Makefile.sys_common
USEMODULE += cpp11-compat
USEMODULE += libc_gettimeofday

Some files were not shown because too many files have changed in this diff Show More