diff --git a/.murdock b/.murdock index 4fb63cbb72..09ca8e2063 100755 --- a/.murdock +++ b/.murdock @@ -130,8 +130,8 @@ tests/driver_u* tests/driver_v* tests/external_board_dirs tests/periph_* -tests/pkg_elk -tests/pkg_uzlib +tests/pkg/elk +tests/pkg/uzlib tests/prng_* tests/trace tests/xtimer_* diff --git a/CODEOWNERS b/CODEOWNERS index 75436eabc6..52cc3988c0 100644 --- a/CODEOWNERS +++ b/CODEOWNERS @@ -146,7 +146,7 @@ /tests/driver_dht/ @wosym /tests/gnrc* @miri64 /tests/lwip* @miri64 -/tests/pkg_libschc/ @miri64 +/tests/pkg/libschc/ @miri64 /tests/slip/ @miri64 /tests/unittests @miri64 /tests/*/tests/*.py @miri64 diff --git a/boards/esp32-heltec-lora32-v2/doc.txt b/boards/esp32-heltec-lora32-v2/doc.txt index 5ceef041f0..24556e3e51 100644 --- a/boards/esp32-heltec-lora32-v2/doc.txt +++ b/boards/esp32-heltec-lora32-v2/doc.txt @@ -165,12 +165,12 @@ u8g2_SetI2CAddress(&u8g2, SSD1306_I2C_ADDR); u8g2_InitDisplay(&u8g2); u8g2_SetPowerSave(&u8g2, 0); ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -The `tests/pkg_u8g2` test application is a good example of how to use the +The `tests/pkg/u8g2` test application is a good example of how to use the `pkg/u8g2` package. It can be compiled for the board with the following command: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ TEST_OUTPUT=4 TEST_I2C=0 TEST_ADDR=0x3c TEST_PIN_RESET=GPIO16 \ TEST_DISPLAY=u8g2_Setup_ssd1306_i2c_128x64_noname_f \ -BOARD=esp32-heltec-lora32-v2 make -C tests/pkg_u8g2/ flash +BOARD=esp32-heltec-lora32-v2 make -C tests/pkg/u8g2/ flash ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ [Back to table of contents](#esp32_heltec_lora32_v2_toc) diff --git a/dist/tools/compile_test/compile_like_murdock.py b/dist/tools/compile_test/compile_like_murdock.py index 9e84c81a8d..2cba1d87c1 100755 --- a/dist/tools/compile_test/compile_like_murdock.py +++ b/dist/tools/compile_test/compile_like_murdock.py @@ -50,7 +50,7 @@ _RATIOS = [ DEFAULT_APPS = [ "examples/hello-world", - "tests/pkg_tinyusb_cdc_msc", + "tests/pkg/tinyusb_cdc_msc", "tests/mtd_mapper", "tests/shell", "tests/saul" diff --git a/dist/tools/vera++/check.sh b/dist/tools/vera++/check.sh index 61a5a7158b..003e602866 100755 --- a/dist/tools/vera++/check.sh +++ b/dist/tools/vera++/check.sh @@ -13,10 +13,10 @@ CURDIR=$(cd "$(dirname "$0")" && pwd) . "$RIOTBASE"/dist/tools/ci/changed_files.sh . "$RIOTBASE"/dist/tools/ci/github_annotate.sh -# tests/pkg_utensor/models/deep_mlp_weight.hpp is an auto-generated file +# tests/pkg/utensor/models/deep_mlp_weight.hpp is an auto-generated file # with lots of commas so T009 takes very long. Since it is auto-generated, just # exclude it. -EXCLUDE='^(.+/vendor/|dist/tools/coccinelle/include|dist/tools/fixdep/fixdep.c|dist/tools/lpc2k_pgm/src|tests/pkg_utensor/external_modules/models)' +EXCLUDE='^(.+/vendor/|dist/tools/coccinelle/include|dist/tools/fixdep/fixdep.c|dist/tools/lpc2k_pgm/src|tests/pkg/utensor/external_modules/models)' FILES=$(changed_files) if [ -z "${FILES}" ]; then diff --git a/examples/gcoap/README.md b/examples/gcoap/README.md index b7e9139e35..01a11af2a0 100644 --- a/examples/gcoap/README.md +++ b/examples/gcoap/README.md @@ -88,7 +88,7 @@ implementations: [nanocoap library](https://github.com/kaspar030/sock/tree/master/nanocoap) implementation -* [Microcoap](../../tests/pkg_microcoap): another lightweight CoAP server based +* [Microcoap](../../tests/pkg/microcoap): another lightweight CoAP server based on the [microcoap library](https://github.com/1248/microcoap) implementation diff --git a/makefiles/app_dirs.inc.mk b/makefiles/app_dirs.inc.mk index d3b1527970..37df195626 100644 --- a/makefiles/app_dirs.inc.mk +++ b/makefiles/app_dirs.inc.mk @@ -15,6 +15,7 @@ APPLICATION_DIRS := \ examples \ tests \ tests/drivers \ + tests/pkg \ # APPLICATION_DIRS := $(addprefix $(RIOTBASE)/,$(APPLICATION_DIRS)) diff --git a/pkg/libcose/doc.txt b/pkg/libcose/doc.txt index 8443bb9326..2c5540b268 100644 --- a/pkg/libcose/doc.txt +++ b/pkg/libcose/doc.txt @@ -19,7 +19,7 @@ * The use of the library itself [is described in the libcose * documentation](https://bergzand.github.io/libcose/), and some example code * can be found in - * [`tests/pkg_libcose/`](https://github.com/RIOT-OS/RIOT/tree/master/tests/pkg_libcose). + * [`tests/pkg/libcose/`](https://github.com/RIOT-OS/RIOT/tree/master/tests/pkg/libcose). * * Backends * -------- diff --git a/pkg/lvgl/doc.txt b/pkg/lvgl/doc.txt index 93a5483eaa..fc77c1d5e6 100644 --- a/pkg/lvgl/doc.txt +++ b/pkg/lvgl/doc.txt @@ -23,7 +23,7 @@ LVGL_TASK_THREAD_PRIO cannot be configured via Kconfig. Example of command line for changing the max activity period to 5s: ``` -CFLAGS=-DCONFIG_LVGL_ACTIVITY_PERIOD=5000 make -C tests/pkg_lvgl +CFLAGS=-DCONFIG_LVGL_ACTIVITY_PERIOD=5000 make -C tests/pkg/lvgl ``` ### SDL Usage diff --git a/pkg/mbedtls/doc.txt b/pkg/mbedtls/doc.txt index ba75c1c26c..d57625e21c 100644 --- a/pkg/mbedtls/doc.txt +++ b/pkg/mbedtls/doc.txt @@ -93,7 +93,7 @@ * * # Testing * Many Mbed TLS implementations provide self tests within the boundaries of - * a module and the [test folder](../../tests/pkg_mbedtls) acts as a place to execute + * a module and the [test folder](../../tests/pkg/mbedtls) acts as a place to execute * these tests in RIOT context. It is noteworthy, that built-in Mbed TLS entropy source tests * only execute on the source that is implemented in `mbedtls_hardware_poll`. * The additional sources that were added using `mbedtls_entropy_add_source` are ignored in the test. diff --git a/pkg/openwsn/doc.txt b/pkg/openwsn/doc.txt index 1e55689de1..4541bcfdfc 100644 --- a/pkg/openwsn/doc.txt +++ b/pkg/openwsn/doc.txt @@ -322,7 +322,7 @@ - The provided test application provides a UDP client and server. If the UDP server is able to receive packets, the mechanism is considered to work correctly. You should also be able to ping the device from your host. See - `tests/pkg_openwsn/README.md` for more details. + `tests/pkg/openwsn/README.md` for more details. - To speed up synchronization and make sniffing easier you can disable channel hopping by setting (`CFLAGS=-DIEEE802154E_SINGLE_CHANNEL=26`). @@ -343,7 +343,7 @@ the IoT-LAB testbed. - To test Openserial on a given platform the target `make openv-serial` can - be used on a BOARD flashed with `tests/pkg_openwsn` (`USEMODULE=openwsn_serial`) + be used on a BOARD flashed with `tests/pkg/openwsn` (`USEMODULE=openwsn_serial`) must be included as well. The following output should appear: ``` diff --git a/pkg/qcbor/doc.txt b/pkg/qcbor/doc.txt index 6e309c3b28..f00f7f3d05 100644 --- a/pkg/qcbor/doc.txt +++ b/pkg/qcbor/doc.txt @@ -22,7 +22,7 @@ * For example, in the command line: * * ``` - * CFLAGS="-DQCBOR_DISABLE_INDEFINITE_LENGTH_STRINGS" BOARD=samr21-xpro make -C tests/pkg_qcbor + * CFLAGS="-DQCBOR_DISABLE_INDEFINITE_LENGTH_STRINGS" BOARD=samr21-xpro make -C tests/pkg/qcbor * ``` * */ diff --git a/pkg/tinyusb/doc.txt b/pkg/tinyusb/doc.txt index 5c098f9dc0..66a092c39e 100644 --- a/pkg/tinyusb/doc.txt +++ b/pkg/tinyusb/doc.txt @@ -127,7 +127,7 @@ * * to make the device to be a composite keyboard/mouse device. * - * Please refer `$RIOTBASE/tests/pkg_tinyusb_cdc_msc` and the + * Please refer `$RIOTBASE/tests/pkg/tinyusb_cdc_msc` and the * [tinyUSB documentation](https://docs.tinyusb.org/en/latest/reference/getting_started.html) * for details. */ diff --git a/tests/pkg/Makefile.pkg_common b/tests/pkg/Makefile.pkg_common new file mode 100644 index 0000000000..ecfb7b7d01 --- /dev/null +++ b/tests/pkg/Makefile.pkg_common @@ -0,0 +1,2 @@ +RIOTBASE ?= $(CURDIR)/../../.. +include $(CURDIR)/../../Makefile.tests_common diff --git a/tests/pkg_arduino_adafruit_sensor/Makefile b/tests/pkg/arduino_adafruit_sensor/Makefile similarity index 55% rename from tests/pkg_arduino_adafruit_sensor/Makefile rename to tests/pkg/arduino_adafruit_sensor/Makefile index 45ca1e8ed0..67feaf8203 100644 --- a/tests/pkg_arduino_adafruit_sensor/Makefile +++ b/tests/pkg/arduino_adafruit_sensor/Makefile @@ -1,4 +1,6 @@ -include ../Makefile.tests_common +BOARD ?= arduino-mega2560 + +include ../Makefile.pkg_common USEPKG += arduino_adafruit_sensor diff --git a/tests/pkg_arduino_adafruit_sensor/Makefile.ci b/tests/pkg/arduino_adafruit_sensor/Makefile.ci similarity index 100% rename from tests/pkg_arduino_adafruit_sensor/Makefile.ci rename to tests/pkg/arduino_adafruit_sensor/Makefile.ci diff --git a/tests/pkg_arduino_adafruit_sensor/app.config.test b/tests/pkg/arduino_adafruit_sensor/app.config.test similarity index 100% rename from tests/pkg_arduino_adafruit_sensor/app.config.test rename to tests/pkg/arduino_adafruit_sensor/app.config.test diff --git a/tests/pkg_arduino_adafruit_sensor/main.cpp b/tests/pkg/arduino_adafruit_sensor/main.cpp similarity index 100% rename from tests/pkg_arduino_adafruit_sensor/main.cpp rename to tests/pkg/arduino_adafruit_sensor/main.cpp diff --git a/tests/pkg_arduino_adafruit_sensor/tests/01-run.py b/tests/pkg/arduino_adafruit_sensor/tests/01-run.py similarity index 100% rename from tests/pkg_arduino_adafruit_sensor/tests/01-run.py rename to tests/pkg/arduino_adafruit_sensor/tests/01-run.py diff --git a/tests/pkg_arduino_sdi_12/Makefile b/tests/pkg/arduino_sdi_12/Makefile similarity index 86% rename from tests/pkg_arduino_sdi_12/Makefile rename to tests/pkg/arduino_sdi_12/Makefile index d140df873a..18e7e8c2cc 100644 --- a/tests/pkg_arduino_sdi_12/Makefile +++ b/tests/pkg/arduino_sdi_12/Makefile @@ -1,6 +1,6 @@ BOARD ?= nucleo-f767zi -include ../Makefile.tests_common +include ../Makefile.pkg_common USEPKG += arduino_sdi_12 diff --git a/tests/pkg_arduino_sdi_12/Makefile.ci b/tests/pkg/arduino_sdi_12/Makefile.ci similarity index 100% rename from tests/pkg_arduino_sdi_12/Makefile.ci rename to tests/pkg/arduino_sdi_12/Makefile.ci diff --git a/tests/pkg_arduino_sdi_12/README.md b/tests/pkg/arduino_sdi_12/README.md similarity index 96% rename from tests/pkg_arduino_sdi_12/README.md rename to tests/pkg/arduino_sdi_12/README.md index 0f4cde0083..a2da8e5a53 100644 --- a/tests/pkg_arduino_sdi_12/README.md +++ b/tests/pkg/arduino_sdi_12/README.md @@ -18,7 +18,7 @@ The program will loop forever. In every loop it: This is an example, with the Arduino Mega2560 board and the Decagon CTD-10 sensor: - $ BOARD=arduino-mega2560 make -C tests/pkg_arduino_sdi_12 all flash term + $ BOARD=arduino-mega2560 make -C tests/pkg/arduino_sdi_12 all flash term [...] 2021-09-28 12:14:57,492 # main(): This is RIOT! (Version: 2021.10-devel-776-gc7af21-sdi12) 2021-09-28 12:14:57,496 # Testing the Arduino-SDI-12 package diff --git a/tests/pkg_arduino_sdi_12/main.cpp b/tests/pkg/arduino_sdi_12/main.cpp similarity index 100% rename from tests/pkg_arduino_sdi_12/main.cpp rename to tests/pkg/arduino_sdi_12/main.cpp diff --git a/tests/pkg_c25519/Makefile b/tests/pkg/c25519/Makefile similarity index 94% rename from tests/pkg_c25519/Makefile rename to tests/pkg/c25519/Makefile index f396fb0d62..edfc7f5cd1 100644 --- a/tests/pkg_c25519/Makefile +++ b/tests/pkg/c25519/Makefile @@ -1,4 +1,4 @@ -include ../Makefile.tests_common +include ../Makefile.pkg_common USEMODULE += embunit USEMODULE += random diff --git a/tests/pkg_c25519/Makefile.ci b/tests/pkg/c25519/Makefile.ci similarity index 100% rename from tests/pkg_c25519/Makefile.ci rename to tests/pkg/c25519/Makefile.ci diff --git a/tests/pkg_c25519/app.config.test b/tests/pkg/c25519/app.config.test similarity index 100% rename from tests/pkg_c25519/app.config.test rename to tests/pkg/c25519/app.config.test diff --git a/tests/pkg_c25519/main.c b/tests/pkg/c25519/main.c similarity index 100% rename from tests/pkg_c25519/main.c rename to tests/pkg/c25519/main.c diff --git a/tests/pkg_c25519/tests/01-run.py b/tests/pkg/c25519/tests/01-run.py similarity index 100% rename from tests/pkg_c25519/tests/01-run.py rename to tests/pkg/c25519/tests/01-run.py diff --git a/tests/pkg_cayenne-lpp/Makefile b/tests/pkg/cayenne-lpp/Makefile similarity index 64% rename from tests/pkg_cayenne-lpp/Makefile rename to tests/pkg/cayenne-lpp/Makefile index 63ab148e4b..ea1f38ce25 100644 --- a/tests/pkg_cayenne-lpp/Makefile +++ b/tests/pkg/cayenne-lpp/Makefile @@ -1,4 +1,4 @@ -include ../Makefile.tests_common +include ../Makefile.pkg_common USEPKG += cayenne-lpp diff --git a/tests/pkg_cayenne-lpp/README.md b/tests/pkg/cayenne-lpp/README.md similarity index 100% rename from tests/pkg_cayenne-lpp/README.md rename to tests/pkg/cayenne-lpp/README.md diff --git a/tests/pkg_cayenne-lpp/app.config.test b/tests/pkg/cayenne-lpp/app.config.test similarity index 100% rename from tests/pkg_cayenne-lpp/app.config.test rename to tests/pkg/cayenne-lpp/app.config.test diff --git a/tests/pkg_cayenne-lpp/main.c b/tests/pkg/cayenne-lpp/main.c similarity index 100% rename from tests/pkg_cayenne-lpp/main.c rename to tests/pkg/cayenne-lpp/main.c diff --git a/tests/pkg_cayenne-lpp/tests/01-run.py b/tests/pkg/cayenne-lpp/tests/01-run.py similarity index 100% rename from tests/pkg_cayenne-lpp/tests/01-run.py rename to tests/pkg/cayenne-lpp/tests/01-run.py diff --git a/tests/pkg_cifra/Makefile b/tests/pkg/cifra/Makefile similarity index 74% rename from tests/pkg_cifra/Makefile rename to tests/pkg/cifra/Makefile index c5d47093c2..0bcaafae67 100644 --- a/tests/pkg_cifra/Makefile +++ b/tests/pkg/cifra/Makefile @@ -1,4 +1,4 @@ -include ../Makefile.tests_common +include ../Makefile.pkg_common USEMODULE += embunit USEMODULE += random diff --git a/tests/pkg_cifra/Makefile.ci b/tests/pkg/cifra/Makefile.ci similarity index 100% rename from tests/pkg_cifra/Makefile.ci rename to tests/pkg/cifra/Makefile.ci diff --git a/tests/pkg_cifra/app.config.test b/tests/pkg/cifra/app.config.test similarity index 100% rename from tests/pkg_cifra/app.config.test rename to tests/pkg/cifra/app.config.test diff --git a/tests/pkg_cifra/main.c b/tests/pkg/cifra/main.c similarity index 100% rename from tests/pkg_cifra/main.c rename to tests/pkg/cifra/main.c diff --git a/tests/pkg_cifra/tests/01-run.py b/tests/pkg/cifra/tests/01-run.py similarity index 100% rename from tests/pkg_cifra/tests/01-run.py rename to tests/pkg/cifra/tests/01-run.py diff --git a/tests/pkg_cmsis-dsp/Makefile b/tests/pkg/cmsis-dsp/Makefile similarity index 94% rename from tests/pkg_cmsis-dsp/Makefile rename to tests/pkg/cmsis-dsp/Makefile index 9a33a51c9a..670489d59d 100644 --- a/tests/pkg_cmsis-dsp/Makefile +++ b/tests/pkg/cmsis-dsp/Makefile @@ -1,5 +1,5 @@ BOARD ?= samr21-xpro -include ../Makefile.tests_common +include ../Makefile.pkg_common USEPKG += cmsis-dsp diff --git a/tests/pkg_cmsis-dsp/Makefile.ci b/tests/pkg/cmsis-dsp/Makefile.ci similarity index 100% rename from tests/pkg_cmsis-dsp/Makefile.ci rename to tests/pkg/cmsis-dsp/Makefile.ci diff --git a/tests/pkg_cmsis-dsp/app.config.test b/tests/pkg/cmsis-dsp/app.config.test similarity index 100% rename from tests/pkg_cmsis-dsp/app.config.test rename to tests/pkg/cmsis-dsp/app.config.test diff --git a/tests/pkg_cmsis-dsp/main.c b/tests/pkg/cmsis-dsp/main.c similarity index 100% rename from tests/pkg_cmsis-dsp/main.c rename to tests/pkg/cmsis-dsp/main.c diff --git a/tests/pkg_cmsis-dsp/tests/01-run.py b/tests/pkg/cmsis-dsp/tests/01-run.py similarity index 100% rename from tests/pkg_cmsis-dsp/tests/01-run.py rename to tests/pkg/cmsis-dsp/tests/01-run.py diff --git a/tests/pkg_cmsis-nn/Makefile b/tests/pkg/cmsis-nn/Makefile similarity index 94% rename from tests/pkg_cmsis-nn/Makefile rename to tests/pkg/cmsis-nn/Makefile index 9da69cf9e8..80c4560afd 100644 --- a/tests/pkg_cmsis-nn/Makefile +++ b/tests/pkg/cmsis-nn/Makefile @@ -1,5 +1,5 @@ BOARD ?= nucleo-l476rg -include ../Makefile.tests_common +include ../Makefile.pkg_common USEPKG += cmsis-nn diff --git a/tests/pkg_cmsis-nn/README.md b/tests/pkg/cmsis-nn/README.md similarity index 100% rename from tests/pkg_cmsis-nn/README.md rename to tests/pkg/cmsis-nn/README.md diff --git a/tests/pkg_cmsis-nn/app.config.test b/tests/pkg/cmsis-nn/app.config.test similarity index 100% rename from tests/pkg_cmsis-nn/app.config.test rename to tests/pkg/cmsis-nn/app.config.test diff --git a/tests/pkg_cmsis-nn/generate_image.py b/tests/pkg/cmsis-nn/generate_image.py similarity index 100% rename from tests/pkg_cmsis-nn/generate_image.py rename to tests/pkg/cmsis-nn/generate_image.py diff --git a/tests/pkg_cmsis-nn/input b/tests/pkg/cmsis-nn/input similarity index 100% rename from tests/pkg_cmsis-nn/input rename to tests/pkg/cmsis-nn/input diff --git a/tests/pkg_cmsis-nn/main.c b/tests/pkg/cmsis-nn/main.c similarity index 100% rename from tests/pkg_cmsis-nn/main.c rename to tests/pkg/cmsis-nn/main.c diff --git a/tests/pkg_cmsis-nn/parameter.h b/tests/pkg/cmsis-nn/parameter.h similarity index 100% rename from tests/pkg_cmsis-nn/parameter.h rename to tests/pkg/cmsis-nn/parameter.h diff --git a/tests/pkg_cmsis-nn/tests/01-run.py b/tests/pkg/cmsis-nn/tests/01-run.py similarity index 100% rename from tests/pkg_cmsis-nn/tests/01-run.py rename to tests/pkg/cmsis-nn/tests/01-run.py diff --git a/tests/pkg_cmsis-nn/weights.h b/tests/pkg/cmsis-nn/weights.h similarity index 100% rename from tests/pkg_cmsis-nn/weights.h rename to tests/pkg/cmsis-nn/weights.h diff --git a/tests/pkg_cn-cbor/Makefile b/tests/pkg/cn-cbor/Makefile similarity index 90% rename from tests/pkg_cn-cbor/Makefile rename to tests/pkg/cn-cbor/Makefile index 8ca112dbc8..b089201250 100644 --- a/tests/pkg_cn-cbor/Makefile +++ b/tests/pkg/cn-cbor/Makefile @@ -1,4 +1,4 @@ -include ../Makefile.tests_common +include ../Makefile.pkg_common USEPKG += cn-cbor USEMODULE += embunit diff --git a/tests/pkg_cn-cbor/Makefile.ci b/tests/pkg/cn-cbor/Makefile.ci similarity index 100% rename from tests/pkg_cn-cbor/Makefile.ci rename to tests/pkg/cn-cbor/Makefile.ci diff --git a/tests/pkg_cn-cbor/app.config.test b/tests/pkg/cn-cbor/app.config.test similarity index 100% rename from tests/pkg_cn-cbor/app.config.test rename to tests/pkg/cn-cbor/app.config.test diff --git a/tests/pkg_cn-cbor/main.c b/tests/pkg/cn-cbor/main.c similarity index 100% rename from tests/pkg_cn-cbor/main.c rename to tests/pkg/cn-cbor/main.c diff --git a/tests/pkg_cn-cbor/tests/01-run.py b/tests/pkg/cn-cbor/tests/01-run.py similarity index 100% rename from tests/pkg_cn-cbor/tests/01-run.py rename to tests/pkg/cn-cbor/tests/01-run.py diff --git a/tests/pkg_corejson/Makefile b/tests/pkg/corejson/Makefile similarity index 70% rename from tests/pkg_corejson/Makefile rename to tests/pkg/corejson/Makefile index 41d12ca8a9..fdd8c59a6f 100644 --- a/tests/pkg_corejson/Makefile +++ b/tests/pkg/corejson/Makefile @@ -1,4 +1,4 @@ -include ../Makefile.tests_common +include ../Makefile.pkg_common # required packages USEPKG += corejson diff --git a/tests/pkg_corejson/app.config.test b/tests/pkg/corejson/app.config.test similarity index 100% rename from tests/pkg_corejson/app.config.test rename to tests/pkg/corejson/app.config.test diff --git a/tests/pkg_corejson/main.c b/tests/pkg/corejson/main.c similarity index 100% rename from tests/pkg_corejson/main.c rename to tests/pkg/corejson/main.c diff --git a/tests/pkg_corejson/tests/01-run.py b/tests/pkg/corejson/tests/01-run.py similarity index 100% rename from tests/pkg_corejson/tests/01-run.py rename to tests/pkg/corejson/tests/01-run.py diff --git a/tests/pkg_cryptoauthlib_compare_sha256/Makefile b/tests/pkg/cryptoauthlib_compare_sha256/Makefile similarity index 89% rename from tests/pkg_cryptoauthlib_compare_sha256/Makefile rename to tests/pkg/cryptoauthlib_compare_sha256/Makefile index 1fe982cd67..5bb87e2379 100644 --- a/tests/pkg_cryptoauthlib_compare_sha256/Makefile +++ b/tests/pkg/cryptoauthlib_compare_sha256/Makefile @@ -1,6 +1,6 @@ BOARD ?= nucleo-f767zi -include ../Makefile.tests_common +include ../Makefile.pkg_common # Test fails to build for these boards fails due to # redefinition of define AES_COUNT in library, which diff --git a/tests/pkg_cryptoauthlib_compare_sha256/app.config.test b/tests/pkg/cryptoauthlib_compare_sha256/app.config.test similarity index 100% rename from tests/pkg_cryptoauthlib_compare_sha256/app.config.test rename to tests/pkg/cryptoauthlib_compare_sha256/app.config.test diff --git a/tests/pkg_cryptoauthlib_compare_sha256/main.c b/tests/pkg/cryptoauthlib_compare_sha256/main.c similarity index 100% rename from tests/pkg_cryptoauthlib_compare_sha256/main.c rename to tests/pkg/cryptoauthlib_compare_sha256/main.c diff --git a/tests/pkg_cryptoauthlib_internal-tests/Makefile b/tests/pkg/cryptoauthlib_internal-tests/Makefile similarity index 93% rename from tests/pkg_cryptoauthlib_internal-tests/Makefile rename to tests/pkg/cryptoauthlib_internal-tests/Makefile index 61a9ae576f..344186b9b0 100644 --- a/tests/pkg_cryptoauthlib_internal-tests/Makefile +++ b/tests/pkg/cryptoauthlib_internal-tests/Makefile @@ -1,6 +1,6 @@ BOARD ?= nucleo-f767zi -include ../Makefile.tests_common +include ../Makefile.pkg_common CFLAGS += -DTHREAD_STACKSIZE_MAIN=\(3*THREAD_STACKSIZE_DEFAULT\) # Test fails to build for these boards fails due to diff --git a/tests/pkg_cryptoauthlib_internal-tests/Makefile.ci b/tests/pkg/cryptoauthlib_internal-tests/Makefile.ci similarity index 100% rename from tests/pkg_cryptoauthlib_internal-tests/Makefile.ci rename to tests/pkg/cryptoauthlib_internal-tests/Makefile.ci diff --git a/tests/pkg_cryptoauthlib_internal-tests/README.md b/tests/pkg/cryptoauthlib_internal-tests/README.md similarity index 100% rename from tests/pkg_cryptoauthlib_internal-tests/README.md rename to tests/pkg/cryptoauthlib_internal-tests/README.md diff --git a/tests/pkg_cryptoauthlib_internal-tests/app.config.test b/tests/pkg/cryptoauthlib_internal-tests/app.config.test similarity index 100% rename from tests/pkg_cryptoauthlib_internal-tests/app.config.test rename to tests/pkg/cryptoauthlib_internal-tests/app.config.test diff --git a/tests/pkg_cryptoauthlib_internal-tests/main.c b/tests/pkg/cryptoauthlib_internal-tests/main.c similarity index 100% rename from tests/pkg_cryptoauthlib_internal-tests/main.c rename to tests/pkg/cryptoauthlib_internal-tests/main.c diff --git a/tests/pkg_edhoc_c/Makefile b/tests/pkg/edhoc_c/Makefile similarity index 97% rename from tests/pkg_edhoc_c/Makefile rename to tests/pkg/edhoc_c/Makefile index 7d616cfca5..fb9ff46ef6 100644 --- a/tests/pkg_edhoc_c/Makefile +++ b/tests/pkg/edhoc_c/Makefile @@ -1,4 +1,4 @@ -include ../Makefile.tests_common +include ../Makefile.pkg_common include $(RIOTBASE)/tests/Makefile.boards.netif BOARD_WHITELIST += $(BOARD_PROVIDES_NETIF) diff --git a/tests/pkg_edhoc_c/Makefile.ci b/tests/pkg/edhoc_c/Makefile.ci similarity index 100% rename from tests/pkg_edhoc_c/Makefile.ci rename to tests/pkg/edhoc_c/Makefile.ci diff --git a/tests/pkg_edhoc_c/README.md b/tests/pkg/edhoc_c/README.md similarity index 98% rename from tests/pkg_edhoc_c/README.md rename to tests/pkg/edhoc_c/README.md index cf5aec6f2c..95101dd253 100644 --- a/tests/pkg_edhoc_c/README.md +++ b/tests/pkg/edhoc_c/README.md @@ -256,8 +256,8 @@ sudo dist/tools/tapsetup/tapsetup -c 2 - bootstrap the `BOARD`s and specify the tap interface to use for each ``` -PORT=tap0 make -C tests/pkg_edhoc_c all term -PORT=tap1 make -C tests/pkg_edhoc_c all term +PORT=tap0 make -C tests/pkg/edhoc_c all term +PORT=tap1 make -C tests/pkg/edhoc_c all term ``` #### physical `BOARD`s @@ -268,7 +268,7 @@ through which they will be able to communicate. - bootstrap the `BOARD`s ``` -make -C tests/pkg_edhoc_c flash term +make -C tests/pkg/edhoc_c flash term ``` ### Perform the handshake @@ -414,5 +414,5 @@ OSCORE salt: As long as a BOARD with a netdev interface is used is as simple as: ``` -$ make -C tests/pkg_edhoc_c flash test-with-config +$ make -C tests/pkg/edhoc_c flash test-with-config ``` diff --git a/tests/pkg_edhoc_c/common.c b/tests/pkg/edhoc_c/common.c similarity index 100% rename from tests/pkg_edhoc_c/common.c rename to tests/pkg/edhoc_c/common.c diff --git a/tests/pkg_edhoc_c/edhoc_keys.h b/tests/pkg/edhoc_c/edhoc_keys.h similarity index 100% rename from tests/pkg_edhoc_c/edhoc_keys.h rename to tests/pkg/edhoc_c/edhoc_keys.h diff --git a/tests/pkg_edhoc_c/initiator.c b/tests/pkg/edhoc_c/initiator.c similarity index 100% rename from tests/pkg_edhoc_c/initiator.c rename to tests/pkg/edhoc_c/initiator.c diff --git a/tests/pkg_edhoc_c/main.c b/tests/pkg/edhoc_c/main.c similarity index 100% rename from tests/pkg_edhoc_c/main.c rename to tests/pkg/edhoc_c/main.c diff --git a/tests/pkg_edhoc_c/responder.c b/tests/pkg/edhoc_c/responder.c similarity index 100% rename from tests/pkg_edhoc_c/responder.c rename to tests/pkg/edhoc_c/responder.c diff --git a/tests/pkg_edhoc_c/tests/01-run.py b/tests/pkg/edhoc_c/tests/01-run.py similarity index 100% rename from tests/pkg_edhoc_c/tests/01-run.py rename to tests/pkg/edhoc_c/tests/01-run.py diff --git a/tests/pkg_elk/Makefile b/tests/pkg/elk/Makefile similarity index 61% rename from tests/pkg_elk/Makefile rename to tests/pkg/elk/Makefile index 75d4b4c2b2..111c512b33 100644 --- a/tests/pkg_elk/Makefile +++ b/tests/pkg/elk/Makefile @@ -1,4 +1,4 @@ -include ../Makefile.tests_common +include ../Makefile.pkg_common USEPKG += elk diff --git a/tests/pkg_elk/Makefile.ci b/tests/pkg/elk/Makefile.ci similarity index 100% rename from tests/pkg_elk/Makefile.ci rename to tests/pkg/elk/Makefile.ci diff --git a/tests/pkg_elk/README.md b/tests/pkg/elk/README.md similarity index 100% rename from tests/pkg_elk/README.md rename to tests/pkg/elk/README.md diff --git a/tests/pkg_elk/app.config.test b/tests/pkg/elk/app.config.test similarity index 100% rename from tests/pkg_elk/app.config.test rename to tests/pkg/elk/app.config.test diff --git a/tests/pkg_elk/main.c b/tests/pkg/elk/main.c similarity index 100% rename from tests/pkg_elk/main.c rename to tests/pkg/elk/main.c diff --git a/tests/pkg_elk/tests/01-run.py b/tests/pkg/elk/tests/01-run.py similarity index 100% rename from tests/pkg_elk/tests/01-run.py rename to tests/pkg/elk/tests/01-run.py diff --git a/tests/pkg_emlearn/.gitignore b/tests/pkg/emlearn/.gitignore similarity index 100% rename from tests/pkg_emlearn/.gitignore rename to tests/pkg/emlearn/.gitignore diff --git a/tests/pkg_emlearn/Makefile b/tests/pkg/emlearn/Makefile similarity index 86% rename from tests/pkg_emlearn/Makefile rename to tests/pkg/emlearn/Makefile index 153c2f4391..fb0721bb20 100644 --- a/tests/pkg_emlearn/Makefile +++ b/tests/pkg/emlearn/Makefile @@ -1,4 +1,4 @@ -include ../Makefile.tests_common +include ../Makefile.pkg_common USEPKG += emlearn diff --git a/tests/pkg_emlearn/Makefile.ci b/tests/pkg/emlearn/Makefile.ci similarity index 100% rename from tests/pkg_emlearn/Makefile.ci rename to tests/pkg/emlearn/Makefile.ci diff --git a/tests/pkg_emlearn/README.md b/tests/pkg/emlearn/README.md similarity index 100% rename from tests/pkg_emlearn/README.md rename to tests/pkg/emlearn/README.md diff --git a/tests/pkg_emlearn/app.config.test b/tests/pkg/emlearn/app.config.test similarity index 100% rename from tests/pkg_emlearn/app.config.test rename to tests/pkg/emlearn/app.config.test diff --git a/tests/pkg_emlearn/digit b/tests/pkg/emlearn/digit similarity index 100% rename from tests/pkg_emlearn/digit rename to tests/pkg/emlearn/digit diff --git a/tests/pkg_emlearn/generate_digit.py b/tests/pkg/emlearn/generate_digit.py similarity index 100% rename from tests/pkg_emlearn/generate_digit.py rename to tests/pkg/emlearn/generate_digit.py diff --git a/tests/pkg_emlearn/generate_model.py b/tests/pkg/emlearn/generate_model.py similarity index 100% rename from tests/pkg_emlearn/generate_model.py rename to tests/pkg/emlearn/generate_model.py diff --git a/tests/pkg_emlearn/main.c b/tests/pkg/emlearn/main.c similarity index 100% rename from tests/pkg_emlearn/main.c rename to tests/pkg/emlearn/main.c diff --git a/tests/pkg_emlearn/model b/tests/pkg/emlearn/model similarity index 100% rename from tests/pkg_emlearn/model rename to tests/pkg/emlearn/model diff --git a/tests/pkg_emlearn/tests/01-run.py b/tests/pkg/emlearn/tests/01-run.py similarity index 100% rename from tests/pkg_emlearn/tests/01-run.py rename to tests/pkg/emlearn/tests/01-run.py diff --git a/tests/pkg_emlearn/train_model.py b/tests/pkg/emlearn/train_model.py similarity index 100% rename from tests/pkg_emlearn/train_model.py rename to tests/pkg/emlearn/train_model.py diff --git a/tests/pkg_etl/Makefile b/tests/pkg/etl/Makefile similarity index 61% rename from tests/pkg_etl/Makefile rename to tests/pkg/etl/Makefile index da5d41f9af..6fd8d9f75a 100644 --- a/tests/pkg_etl/Makefile +++ b/tests/pkg/etl/Makefile @@ -1,4 +1,4 @@ -include ../Makefile.tests_common +include ../Makefile.pkg_common USEPKG += etl include $(RIOTBASE)/Makefile.include diff --git a/tests/pkg_etl/Makefile.ci b/tests/pkg/etl/Makefile.ci similarity index 100% rename from tests/pkg_etl/Makefile.ci rename to tests/pkg/etl/Makefile.ci diff --git a/tests/pkg_etl/app.config.test b/tests/pkg/etl/app.config.test similarity index 100% rename from tests/pkg_etl/app.config.test rename to tests/pkg/etl/app.config.test diff --git a/tests/pkg_etl/main.cpp b/tests/pkg/etl/main.cpp similarity index 100% rename from tests/pkg_etl/main.cpp rename to tests/pkg/etl/main.cpp diff --git a/tests/pkg_etl/tests/01-run.py b/tests/pkg/etl/tests/01-run.py similarity index 100% rename from tests/pkg_etl/tests/01-run.py rename to tests/pkg/etl/tests/01-run.py diff --git a/tests/pkg_fatfs/Makefile b/tests/pkg/fatfs/Makefile similarity index 96% rename from tests/pkg_fatfs/Makefile rename to tests/pkg/fatfs/Makefile index cfc2ac5012..d7d29ec546 100644 --- a/tests/pkg_fatfs/Makefile +++ b/tests/pkg/fatfs/Makefile @@ -1,4 +1,4 @@ -include ../Makefile.tests_common +include ../Makefile.pkg_common BOARD ?= native diff --git a/tests/pkg_fatfs/Makefile.ci b/tests/pkg/fatfs/Makefile.ci similarity index 100% rename from tests/pkg_fatfs/Makefile.ci rename to tests/pkg/fatfs/Makefile.ci diff --git a/tests/pkg_fatfs/README.md b/tests/pkg/fatfs/README.md similarity index 100% rename from tests/pkg_fatfs/README.md rename to tests/pkg/fatfs/README.md diff --git a/tests/pkg_fatfs/create_fat_image_file.sh b/tests/pkg/fatfs/create_fat_image_file.sh similarity index 100% rename from tests/pkg_fatfs/create_fat_image_file.sh rename to tests/pkg/fatfs/create_fat_image_file.sh diff --git a/tests/pkg_fatfs/main.c b/tests/pkg/fatfs/main.c similarity index 100% rename from tests/pkg_fatfs/main.c rename to tests/pkg/fatfs/main.c diff --git a/tests/pkg_fatfs/riot_fatfs_disk.tar.bz2 b/tests/pkg/fatfs/riot_fatfs_disk.tar.bz2 similarity index 100% rename from tests/pkg_fatfs/riot_fatfs_disk.tar.bz2 rename to tests/pkg/fatfs/riot_fatfs_disk.tar.bz2 diff --git a/tests/pkg_fatfs_vfs/Makefile b/tests/pkg/fatfs_vfs/Makefile similarity index 96% rename from tests/pkg_fatfs_vfs/Makefile rename to tests/pkg/fatfs_vfs/Makefile index b7d44eabac..fb116a3948 100644 --- a/tests/pkg_fatfs_vfs/Makefile +++ b/tests/pkg/fatfs_vfs/Makefile @@ -1,4 +1,4 @@ -include ../Makefile.tests_common +include ../Makefile.pkg_common USEMODULE += fatfs_vfs FEATURES_OPTIONAL += periph_rtc diff --git a/tests/pkg_fatfs_vfs/Makefile.ci b/tests/pkg/fatfs_vfs/Makefile.ci similarity index 100% rename from tests/pkg_fatfs_vfs/Makefile.ci rename to tests/pkg/fatfs_vfs/Makefile.ci diff --git a/tests/pkg_fatfs_vfs/README.md b/tests/pkg/fatfs_vfs/README.md similarity index 100% rename from tests/pkg_fatfs_vfs/README.md rename to tests/pkg/fatfs_vfs/README.md diff --git a/tests/pkg_fatfs_vfs/create_fat_image_file.sh b/tests/pkg/fatfs_vfs/create_fat_image_file.sh similarity index 100% rename from tests/pkg_fatfs_vfs/create_fat_image_file.sh rename to tests/pkg/fatfs_vfs/create_fat_image_file.sh diff --git a/tests/pkg_fatfs_vfs/main.c b/tests/pkg/fatfs_vfs/main.c similarity index 100% rename from tests/pkg_fatfs_vfs/main.c rename to tests/pkg/fatfs_vfs/main.c diff --git a/tests/pkg_fatfs_vfs/riot_fatfs_disk.tar.gz b/tests/pkg/fatfs_vfs/riot_fatfs_disk.tar.gz similarity index 100% rename from tests/pkg_fatfs_vfs/riot_fatfs_disk.tar.gz rename to tests/pkg/fatfs_vfs/riot_fatfs_disk.tar.gz diff --git a/tests/pkg_fatfs_vfs/tests-with-config/01-run.py b/tests/pkg/fatfs_vfs/tests-with-config/01-run.py similarity index 100% rename from tests/pkg_fatfs_vfs/tests-with-config/01-run.py rename to tests/pkg/fatfs_vfs/tests-with-config/01-run.py diff --git a/tests/pkg_fff/Makefile b/tests/pkg/fff/Makefile similarity index 90% rename from tests/pkg_fff/Makefile rename to tests/pkg/fff/Makefile index 81a603aaf0..84463a0f9c 100644 --- a/tests/pkg_fff/Makefile +++ b/tests/pkg/fff/Makefile @@ -1,4 +1,4 @@ -include ../Makefile.tests_common +include ../Makefile.pkg_common USEPKG += fff # If periph_i2c is pulled in the real implementation conflicts with the mock FEATURES_BLACKLIST += periph_i2c diff --git a/tests/pkg_fff/Makefile.ci b/tests/pkg/fff/Makefile.ci similarity index 100% rename from tests/pkg_fff/Makefile.ci rename to tests/pkg/fff/Makefile.ci diff --git a/tests/pkg_fff/app.config.test b/tests/pkg/fff/app.config.test similarity index 100% rename from tests/pkg_fff/app.config.test rename to tests/pkg/fff/app.config.test diff --git a/tests/pkg_fff/main.c b/tests/pkg/fff/main.c similarity index 100% rename from tests/pkg_fff/main.c rename to tests/pkg/fff/main.c diff --git a/tests/pkg_fff/tests/01-run.py b/tests/pkg/fff/tests/01-run.py similarity index 100% rename from tests/pkg_fff/tests/01-run.py rename to tests/pkg/fff/tests/01-run.py diff --git a/tests/pkg_flashdb_mtd/Makefile b/tests/pkg/flashdb_mtd/Makefile similarity index 93% rename from tests/pkg_flashdb_mtd/Makefile rename to tests/pkg/flashdb_mtd/Makefile index 898a689aa0..62a50737fe 100644 --- a/tests/pkg_flashdb_mtd/Makefile +++ b/tests/pkg/flashdb_mtd/Makefile @@ -1,4 +1,4 @@ -include ../Makefile.tests_common +include ../Makefile.pkg_common # select the MTD backend USEMODULE += flashdb_mtd diff --git a/tests/pkg/flashdb_mtd/kvdb_basic_sample.c b/tests/pkg/flashdb_mtd/kvdb_basic_sample.c new file mode 120000 index 0000000000..ccc7be6e36 --- /dev/null +++ b/tests/pkg/flashdb_mtd/kvdb_basic_sample.c @@ -0,0 +1 @@ +../flashdb_vfs/kvdb_basic_sample.c \ No newline at end of file diff --git a/tests/pkg/flashdb_mtd/kvdb_type_blob_sample.c b/tests/pkg/flashdb_mtd/kvdb_type_blob_sample.c new file mode 120000 index 0000000000..642fc910d3 --- /dev/null +++ b/tests/pkg/flashdb_mtd/kvdb_type_blob_sample.c @@ -0,0 +1 @@ +../flashdb_vfs/kvdb_type_blob_sample.c \ No newline at end of file diff --git a/tests/pkg/flashdb_mtd/kvdb_type_string_sample.c b/tests/pkg/flashdb_mtd/kvdb_type_string_sample.c new file mode 120000 index 0000000000..33016f47eb --- /dev/null +++ b/tests/pkg/flashdb_mtd/kvdb_type_string_sample.c @@ -0,0 +1 @@ +../flashdb_vfs/kvdb_type_string_sample.c \ No newline at end of file diff --git a/tests/pkg/flashdb_mtd/main.c b/tests/pkg/flashdb_mtd/main.c new file mode 120000 index 0000000000..714ec8a114 --- /dev/null +++ b/tests/pkg/flashdb_mtd/main.c @@ -0,0 +1 @@ +../flashdb_vfs/main.c \ No newline at end of file diff --git a/tests/pkg/flashdb_mtd/tsdb_sample.c b/tests/pkg/flashdb_mtd/tsdb_sample.c new file mode 120000 index 0000000000..f5493a0e96 --- /dev/null +++ b/tests/pkg/flashdb_mtd/tsdb_sample.c @@ -0,0 +1 @@ +../flashdb_vfs/tsdb_sample.c \ No newline at end of file diff --git a/tests/pkg_flashdb_vfs/Makefile b/tests/pkg/flashdb_vfs/Makefile similarity index 91% rename from tests/pkg_flashdb_vfs/Makefile rename to tests/pkg/flashdb_vfs/Makefile index 4e7e851242..55d477de35 100644 --- a/tests/pkg_flashdb_vfs/Makefile +++ b/tests/pkg/flashdb_vfs/Makefile @@ -1,4 +1,4 @@ -include ../Makefile.tests_common +include ../Makefile.pkg_common # select the VFS backend USEMODULE += flashdb_vfs diff --git a/tests/pkg_flashdb_vfs/Makefile.ci b/tests/pkg/flashdb_vfs/Makefile.ci similarity index 100% rename from tests/pkg_flashdb_vfs/Makefile.ci rename to tests/pkg/flashdb_vfs/Makefile.ci diff --git a/tests/pkg_flashdb_vfs/kvdb_basic_sample.c b/tests/pkg/flashdb_vfs/kvdb_basic_sample.c similarity index 100% rename from tests/pkg_flashdb_vfs/kvdb_basic_sample.c rename to tests/pkg/flashdb_vfs/kvdb_basic_sample.c diff --git a/tests/pkg_flashdb_vfs/kvdb_type_blob_sample.c b/tests/pkg/flashdb_vfs/kvdb_type_blob_sample.c similarity index 100% rename from tests/pkg_flashdb_vfs/kvdb_type_blob_sample.c rename to tests/pkg/flashdb_vfs/kvdb_type_blob_sample.c diff --git a/tests/pkg_flashdb_vfs/kvdb_type_string_sample.c b/tests/pkg/flashdb_vfs/kvdb_type_string_sample.c similarity index 100% rename from tests/pkg_flashdb_vfs/kvdb_type_string_sample.c rename to tests/pkg/flashdb_vfs/kvdb_type_string_sample.c diff --git a/tests/pkg_flashdb_vfs/main.c b/tests/pkg/flashdb_vfs/main.c similarity index 100% rename from tests/pkg_flashdb_vfs/main.c rename to tests/pkg/flashdb_vfs/main.c diff --git a/tests/pkg_flashdb_vfs/tsdb_sample.c b/tests/pkg/flashdb_vfs/tsdb_sample.c similarity index 100% rename from tests/pkg_flashdb_vfs/tsdb_sample.c rename to tests/pkg/flashdb_vfs/tsdb_sample.c diff --git a/tests/pkg_flatbuffers/.gitignore b/tests/pkg/flatbuffers/.gitignore similarity index 100% rename from tests/pkg_flatbuffers/.gitignore rename to tests/pkg/flatbuffers/.gitignore diff --git a/tests/pkg_flatbuffers/Makefile b/tests/pkg/flatbuffers/Makefile similarity index 88% rename from tests/pkg_flatbuffers/Makefile rename to tests/pkg/flatbuffers/Makefile index 44032e14a5..cf71ce8204 100644 --- a/tests/pkg_flatbuffers/Makefile +++ b/tests/pkg/flatbuffers/Makefile @@ -1,4 +1,4 @@ -include ../Makefile.tests_common +include ../Makefile.pkg_common USEPKG += flatbuffers diff --git a/tests/pkg_flatbuffers/Makefile.ci b/tests/pkg/flatbuffers/Makefile.ci similarity index 100% rename from tests/pkg_flatbuffers/Makefile.ci rename to tests/pkg/flatbuffers/Makefile.ci diff --git a/tests/pkg_flatbuffers/README.md b/tests/pkg/flatbuffers/README.md similarity index 92% rename from tests/pkg_flatbuffers/README.md rename to tests/pkg/flatbuffers/README.md index b4a19ec098..370a9c0e0c 100644 --- a/tests/pkg_flatbuffers/README.md +++ b/tests/pkg/flatbuffers/README.md @@ -15,7 +15,7 @@ Usage Simply flash and run the application on the board of your choice using: - make BOARD= -C tests/pkg_flatbuffers flash term + make BOARD= -C tests/pkg/flatbuffers flash term Expected result --------------- diff --git a/tests/pkg_flatbuffers/app.config.test b/tests/pkg/flatbuffers/app.config.test similarity index 100% rename from tests/pkg_flatbuffers/app.config.test rename to tests/pkg/flatbuffers/app.config.test diff --git a/tests/pkg_flatbuffers/main.cpp b/tests/pkg/flatbuffers/main.cpp similarity index 100% rename from tests/pkg_flatbuffers/main.cpp rename to tests/pkg/flatbuffers/main.cpp diff --git a/tests/pkg_flatbuffers/monster.fbs b/tests/pkg/flatbuffers/monster.fbs similarity index 100% rename from tests/pkg_flatbuffers/monster.fbs rename to tests/pkg/flatbuffers/monster.fbs diff --git a/tests/pkg_flatbuffers/tests/01-run.py b/tests/pkg/flatbuffers/tests/01-run.py similarity index 100% rename from tests/pkg_flatbuffers/tests/01-run.py rename to tests/pkg/flatbuffers/tests/01-run.py diff --git a/tests/pkg_hacl/Makefile b/tests/pkg/hacl/Makefile similarity index 82% rename from tests/pkg_hacl/Makefile rename to tests/pkg/hacl/Makefile index 530bc4f53e..c9d4f4241d 100644 --- a/tests/pkg_hacl/Makefile +++ b/tests/pkg/hacl/Makefile @@ -1,4 +1,4 @@ -include ../Makefile.tests_common +include ../Makefile.pkg_common CFLAGS += -DTHREAD_STACKSIZE_MAIN=\(5*THREAD_STACKSIZE_DEFAULT\) USEPKG += hacl diff --git a/tests/pkg_hacl/Makefile.ci b/tests/pkg/hacl/Makefile.ci similarity index 100% rename from tests/pkg_hacl/Makefile.ci rename to tests/pkg/hacl/Makefile.ci diff --git a/tests/pkg_hacl/app.config.test b/tests/pkg/hacl/app.config.test similarity index 100% rename from tests/pkg_hacl/app.config.test rename to tests/pkg/hacl/app.config.test diff --git a/tests/pkg_hacl/main.c b/tests/pkg/hacl/main.c similarity index 100% rename from tests/pkg_hacl/main.c rename to tests/pkg/hacl/main.c diff --git a/tests/pkg_hacl/tests/01-run.py b/tests/pkg/hacl/tests/01-run.py similarity index 100% rename from tests/pkg_hacl/tests/01-run.py rename to tests/pkg/hacl/tests/01-run.py diff --git a/tests/pkg_heatshrink/Makefile b/tests/pkg/heatshrink/Makefile similarity index 71% rename from tests/pkg_heatshrink/Makefile rename to tests/pkg/heatshrink/Makefile index 635366f54f..796bda98bc 100644 --- a/tests/pkg_heatshrink/Makefile +++ b/tests/pkg/heatshrink/Makefile @@ -1,4 +1,4 @@ -include ../Makefile.tests_common +include ../Makefile.pkg_common USEPKG += heatshrink USEMODULE += embunit diff --git a/tests/pkg_heatshrink/Makefile.ci b/tests/pkg/heatshrink/Makefile.ci similarity index 100% rename from tests/pkg_heatshrink/Makefile.ci rename to tests/pkg/heatshrink/Makefile.ci diff --git a/tests/pkg_heatshrink/app.config.test b/tests/pkg/heatshrink/app.config.test similarity index 100% rename from tests/pkg_heatshrink/app.config.test rename to tests/pkg/heatshrink/app.config.test diff --git a/tests/pkg_heatshrink/main.c b/tests/pkg/heatshrink/main.c similarity index 100% rename from tests/pkg_heatshrink/main.c rename to tests/pkg/heatshrink/main.c diff --git a/tests/pkg_heatshrink/tests/01-run.py b/tests/pkg/heatshrink/tests/01-run.py similarity index 100% rename from tests/pkg_heatshrink/tests/01-run.py rename to tests/pkg/heatshrink/tests/01-run.py diff --git a/tests/pkg_jsmn/Makefile b/tests/pkg/jsmn/Makefile similarity index 62% rename from tests/pkg_jsmn/Makefile rename to tests/pkg/jsmn/Makefile index d0543864f1..0f589cb47d 100644 --- a/tests/pkg_jsmn/Makefile +++ b/tests/pkg/jsmn/Makefile @@ -1,4 +1,4 @@ -include ../Makefile.tests_common +include ../Makefile.pkg_common USEPKG += jsmn diff --git a/tests/pkg_jsmn/app.config.test b/tests/pkg/jsmn/app.config.test similarity index 100% rename from tests/pkg_jsmn/app.config.test rename to tests/pkg/jsmn/app.config.test diff --git a/tests/pkg_jsmn/simple.c b/tests/pkg/jsmn/simple.c similarity index 100% rename from tests/pkg_jsmn/simple.c rename to tests/pkg/jsmn/simple.c diff --git a/tests/pkg_jsmn/tests/01-run.py b/tests/pkg/jsmn/tests/01-run.py similarity index 100% rename from tests/pkg_jsmn/tests/01-run.py rename to tests/pkg/jsmn/tests/01-run.py diff --git a/tests/pkg_libb2/Makefile b/tests/pkg/libb2/Makefile similarity index 69% rename from tests/pkg_libb2/Makefile rename to tests/pkg/libb2/Makefile index d550bd5b05..afca07a50f 100644 --- a/tests/pkg_libb2/Makefile +++ b/tests/pkg/libb2/Makefile @@ -1,4 +1,4 @@ -include ../Makefile.tests_common +include ../Makefile.pkg_common USEPKG += libb2 USEMODULE += embunit diff --git a/tests/pkg_libb2/Makefile.ci b/tests/pkg/libb2/Makefile.ci similarity index 100% rename from tests/pkg_libb2/Makefile.ci rename to tests/pkg/libb2/Makefile.ci diff --git a/tests/pkg_libb2/app.config.test b/tests/pkg/libb2/app.config.test similarity index 100% rename from tests/pkg_libb2/app.config.test rename to tests/pkg/libb2/app.config.test diff --git a/tests/pkg_libb2/main.c b/tests/pkg/libb2/main.c similarity index 100% rename from tests/pkg_libb2/main.c rename to tests/pkg/libb2/main.c diff --git a/tests/pkg_libb2/tests/01-run.py b/tests/pkg/libb2/tests/01-run.py similarity index 100% rename from tests/pkg_libb2/tests/01-run.py rename to tests/pkg/libb2/tests/01-run.py diff --git a/tests/pkg_libbase58/Makefile b/tests/pkg/libbase58/Makefile similarity index 70% rename from tests/pkg_libbase58/Makefile rename to tests/pkg/libbase58/Makefile index d997e19c84..95d2911764 100644 --- a/tests/pkg_libbase58/Makefile +++ b/tests/pkg/libbase58/Makefile @@ -1,4 +1,4 @@ -include ../Makefile.tests_common +include ../Makefile.pkg_common USEMODULE += embunit USEPKG += libbase58 diff --git a/tests/pkg_libbase58/main.c b/tests/pkg/libbase58/main.c similarity index 100% rename from tests/pkg_libbase58/main.c rename to tests/pkg/libbase58/main.c diff --git a/tests/pkg_libbase58/tests/01-run.py b/tests/pkg/libbase58/tests/01-run.py similarity index 100% rename from tests/pkg_libbase58/tests/01-run.py rename to tests/pkg/libbase58/tests/01-run.py diff --git a/tests/pkg_libcose/Makefile b/tests/pkg/libcose/Makefile similarity index 93% rename from tests/pkg_libcose/Makefile rename to tests/pkg/libcose/Makefile index 8206fe43b0..5477eed985 100644 --- a/tests/pkg_libcose/Makefile +++ b/tests/pkg/libcose/Makefile @@ -1,4 +1,4 @@ -include ../Makefile.tests_common +include ../Makefile.pkg_common TEST_ON_CI_WHITELIST += native diff --git a/tests/pkg_libcose/Makefile.ci b/tests/pkg/libcose/Makefile.ci similarity index 100% rename from tests/pkg_libcose/Makefile.ci rename to tests/pkg/libcose/Makefile.ci diff --git a/tests/pkg_libcose/app.config.test b/tests/pkg/libcose/app.config.test similarity index 100% rename from tests/pkg_libcose/app.config.test rename to tests/pkg/libcose/app.config.test diff --git a/tests/pkg_libcose/main.c b/tests/pkg/libcose/main.c similarity index 100% rename from tests/pkg_libcose/main.c rename to tests/pkg/libcose/main.c diff --git a/tests/pkg_libcose/tests/01-run.py b/tests/pkg/libcose/tests/01-run.py similarity index 100% rename from tests/pkg_libcose/tests/01-run.py rename to tests/pkg/libcose/tests/01-run.py diff --git a/tests/pkg_libcose_encrypt/Makefile b/tests/pkg/libcose_encrypt/Makefile similarity index 89% rename from tests/pkg_libcose_encrypt/Makefile rename to tests/pkg/libcose_encrypt/Makefile index cc0351a471..786f71e3e5 100644 --- a/tests/pkg_libcose_encrypt/Makefile +++ b/tests/pkg/libcose_encrypt/Makefile @@ -1,4 +1,4 @@ -include ../Makefile.tests_common +include ../Makefile.pkg_common TEST_ON_CI_WHITELIST += native diff --git a/tests/pkg_libcose_encrypt/Makefile.ci b/tests/pkg/libcose_encrypt/Makefile.ci similarity index 100% rename from tests/pkg_libcose_encrypt/Makefile.ci rename to tests/pkg/libcose_encrypt/Makefile.ci diff --git a/tests/pkg_libcose_encrypt/app.config.test b/tests/pkg/libcose_encrypt/app.config.test similarity index 100% rename from tests/pkg_libcose_encrypt/app.config.test rename to tests/pkg/libcose_encrypt/app.config.test diff --git a/tests/pkg_libcose_encrypt/main.c b/tests/pkg/libcose_encrypt/main.c similarity index 100% rename from tests/pkg_libcose_encrypt/main.c rename to tests/pkg/libcose_encrypt/main.c diff --git a/tests/pkg_libcose_encrypt/tests/01-run.py b/tests/pkg/libcose_encrypt/tests/01-run.py similarity index 100% rename from tests/pkg_libcose_encrypt/tests/01-run.py rename to tests/pkg/libcose_encrypt/tests/01-run.py diff --git a/tests/pkg_libfixmath/Makefile b/tests/pkg/libfixmath/Makefile similarity index 71% rename from tests/pkg_libfixmath/Makefile rename to tests/pkg/libfixmath/Makefile index 5ddd984d17..30ad8681a4 100644 --- a/tests/pkg_libfixmath/Makefile +++ b/tests/pkg/libfixmath/Makefile @@ -1,4 +1,4 @@ -include ../Makefile.tests_common +include ../Makefile.pkg_common USEPKG += libfixmath USEMODULE += libfixmath diff --git a/tests/pkg_libfixmath/app.config.test b/tests/pkg/libfixmath/app.config.test similarity index 100% rename from tests/pkg_libfixmath/app.config.test rename to tests/pkg/libfixmath/app.config.test diff --git a/tests/pkg_libfixmath/do-test.py b/tests/pkg/libfixmath/do-test.py similarity index 100% rename from tests/pkg_libfixmath/do-test.py rename to tests/pkg/libfixmath/do-test.py diff --git a/tests/pkg_libfixmath/main.c b/tests/pkg/libfixmath/main.c similarity index 100% rename from tests/pkg_libfixmath/main.c rename to tests/pkg/libfixmath/main.c diff --git a/tests/pkg_libfixmath/tests/01-run.py b/tests/pkg/libfixmath/tests/01-run.py similarity index 100% rename from tests/pkg_libfixmath/tests/01-run.py rename to tests/pkg/libfixmath/tests/01-run.py diff --git a/tests/pkg_libfixmath_unittests/Makefile b/tests/pkg/libfixmath_unittests/Makefile similarity index 91% rename from tests/pkg_libfixmath_unittests/Makefile rename to tests/pkg/libfixmath_unittests/Makefile index dfbe881e7a..2d1a5f1c9a 100644 --- a/tests/pkg_libfixmath_unittests/Makefile +++ b/tests/pkg/libfixmath_unittests/Makefile @@ -1,4 +1,4 @@ -include ../Makefile.tests_common +include ../Makefile.pkg_common USEMODULE += libfixmath-unittests diff --git a/tests/pkg_libfixmath_unittests/Makefile.ci b/tests/pkg/libfixmath_unittests/Makefile.ci similarity index 100% rename from tests/pkg_libfixmath_unittests/Makefile.ci rename to tests/pkg/libfixmath_unittests/Makefile.ci diff --git a/tests/pkg_libfixmath_unittests/main.c b/tests/pkg/libfixmath_unittests/main.c similarity index 100% rename from tests/pkg_libfixmath_unittests/main.c rename to tests/pkg/libfixmath_unittests/main.c diff --git a/tests/pkg_libfixmath_unittests/tests/01-run.py b/tests/pkg/libfixmath_unittests/tests/01-run.py similarity index 100% rename from tests/pkg_libfixmath_unittests/tests/01-run.py rename to tests/pkg/libfixmath_unittests/tests/01-run.py diff --git a/tests/pkg_libhydrogen/Makefile b/tests/pkg/libhydrogen/Makefile similarity index 71% rename from tests/pkg_libhydrogen/Makefile rename to tests/pkg/libhydrogen/Makefile index f171720b31..a770047417 100644 --- a/tests/pkg_libhydrogen/Makefile +++ b/tests/pkg/libhydrogen/Makefile @@ -1,4 +1,4 @@ -include ../Makefile.tests_common +include ../Makefile.pkg_common USEPKG += libhydrogen USEMODULE += embunit diff --git a/tests/pkg_libhydrogen/Makefile.ci b/tests/pkg/libhydrogen/Makefile.ci similarity index 100% rename from tests/pkg_libhydrogen/Makefile.ci rename to tests/pkg/libhydrogen/Makefile.ci diff --git a/tests/pkg_libhydrogen/app.config.test b/tests/pkg/libhydrogen/app.config.test similarity index 100% rename from tests/pkg_libhydrogen/app.config.test rename to tests/pkg/libhydrogen/app.config.test diff --git a/tests/pkg_libhydrogen/main.c b/tests/pkg/libhydrogen/main.c similarity index 100% rename from tests/pkg_libhydrogen/main.c rename to tests/pkg/libhydrogen/main.c diff --git a/tests/pkg_libhydrogen/tests/01-run.py b/tests/pkg/libhydrogen/tests/01-run.py similarity index 100% rename from tests/pkg_libhydrogen/tests/01-run.py rename to tests/pkg/libhydrogen/tests/01-run.py diff --git a/tests/pkg_libschc/Makefile b/tests/pkg/libschc/Makefile similarity index 92% rename from tests/pkg_libschc/Makefile rename to tests/pkg/libschc/Makefile index 8bedc0df23..75f216c58a 100644 --- a/tests/pkg_libschc/Makefile +++ b/tests/pkg/libschc/Makefile @@ -1,4 +1,4 @@ -include ../Makefile.tests_common +include ../Makefile.pkg_common USEMODULE += embunit USEMODULE += event diff --git a/tests/pkg_libschc/Makefile.ci b/tests/pkg/libschc/Makefile.ci similarity index 100% rename from tests/pkg_libschc/Makefile.ci rename to tests/pkg/libschc/Makefile.ci diff --git a/tests/pkg_libschc/main.c b/tests/pkg/libschc/main.c similarity index 100% rename from tests/pkg_libschc/main.c rename to tests/pkg/libschc/main.c diff --git a/tests/pkg_libschc/tests/01-run.py b/tests/pkg/libschc/tests/01-run.py similarity index 100% rename from tests/pkg_libschc/tests/01-run.py rename to tests/pkg/libschc/tests/01-run.py diff --git a/tests/pkg_libschc/unittests.c b/tests/pkg/libschc/unittests.c similarity index 100% rename from tests/pkg_libschc/unittests.c rename to tests/pkg/libschc/unittests.c diff --git a/tests/pkg_littlefs/Makefile b/tests/pkg/littlefs/Makefile similarity index 76% rename from tests/pkg_littlefs/Makefile rename to tests/pkg/littlefs/Makefile index d3c0eab1a7..4b57fbea26 100644 --- a/tests/pkg_littlefs/Makefile +++ b/tests/pkg/littlefs/Makefile @@ -1,4 +1,4 @@ -include ../Makefile.tests_common +include ../Makefile.pkg_common USEMODULE += littlefs USEMODULE += embunit diff --git a/tests/pkg_littlefs/Makefile.ci b/tests/pkg/littlefs/Makefile.ci similarity index 100% rename from tests/pkg_littlefs/Makefile.ci rename to tests/pkg/littlefs/Makefile.ci diff --git a/tests/pkg_littlefs/main.c b/tests/pkg/littlefs/main.c similarity index 100% rename from tests/pkg_littlefs/main.c rename to tests/pkg/littlefs/main.c diff --git a/tests/pkg_littlefs/tests/01-run.py b/tests/pkg/littlefs/tests/01-run.py similarity index 100% rename from tests/pkg_littlefs/tests/01-run.py rename to tests/pkg/littlefs/tests/01-run.py diff --git a/tests/pkg_littlefs2/Makefile b/tests/pkg/littlefs2/Makefile similarity index 76% rename from tests/pkg_littlefs2/Makefile rename to tests/pkg/littlefs2/Makefile index ec9c0568a6..dc7359e10f 100644 --- a/tests/pkg_littlefs2/Makefile +++ b/tests/pkg/littlefs2/Makefile @@ -1,4 +1,4 @@ -include ../Makefile.tests_common +include ../Makefile.pkg_common USEPKG += littlefs2 USEMODULE += embunit diff --git a/tests/pkg_littlefs2/Makefile.ci b/tests/pkg/littlefs2/Makefile.ci similarity index 100% rename from tests/pkg_littlefs2/Makefile.ci rename to tests/pkg/littlefs2/Makefile.ci diff --git a/tests/pkg_littlefs2/app.config.test b/tests/pkg/littlefs2/app.config.test similarity index 100% rename from tests/pkg_littlefs2/app.config.test rename to tests/pkg/littlefs2/app.config.test diff --git a/tests/pkg_littlefs2/main.c b/tests/pkg/littlefs2/main.c similarity index 100% rename from tests/pkg_littlefs2/main.c rename to tests/pkg/littlefs2/main.c diff --git a/tests/pkg_littlefs2/tests/01-run.py b/tests/pkg/littlefs2/tests/01-run.py similarity index 100% rename from tests/pkg_littlefs2/tests/01-run.py rename to tests/pkg/littlefs2/tests/01-run.py diff --git a/tests/pkg_lora-serialization/Makefile b/tests/pkg/lora-serialization/Makefile similarity index 67% rename from tests/pkg_lora-serialization/Makefile rename to tests/pkg/lora-serialization/Makefile index 861df18cbd..b7ea7d6104 100644 --- a/tests/pkg_lora-serialization/Makefile +++ b/tests/pkg/lora-serialization/Makefile @@ -1,4 +1,4 @@ -include ../Makefile.tests_common +include ../Makefile.pkg_common USEPKG += lora-serialization diff --git a/tests/pkg_lora-serialization/app.config.test b/tests/pkg/lora-serialization/app.config.test similarity index 100% rename from tests/pkg_lora-serialization/app.config.test rename to tests/pkg/lora-serialization/app.config.test diff --git a/tests/pkg_lora-serialization/main.c b/tests/pkg/lora-serialization/main.c similarity index 100% rename from tests/pkg_lora-serialization/main.c rename to tests/pkg/lora-serialization/main.c diff --git a/tests/pkg_lora-serialization/tests/01-run.py b/tests/pkg/lora-serialization/tests/01-run.py similarity index 100% rename from tests/pkg_lora-serialization/tests/01-run.py rename to tests/pkg/lora-serialization/tests/01-run.py diff --git a/tests/pkg_lvgl/Makefile b/tests/pkg/lvgl/Makefile similarity index 93% rename from tests/pkg_lvgl/Makefile rename to tests/pkg/lvgl/Makefile index 05b92a38cf..d8f220b604 100644 --- a/tests/pkg_lvgl/Makefile +++ b/tests/pkg/lvgl/Makefile @@ -1,5 +1,5 @@ BOARD ?= stm32f429i-disc1 -include ../Makefile.tests_common +include ../Makefile.pkg_common # No interactive_sync DISABLE_MODULE += test_utils_interactive_sync diff --git a/tests/pkg_lvgl/Makefile.ci b/tests/pkg/lvgl/Makefile.ci similarity index 100% rename from tests/pkg_lvgl/Makefile.ci rename to tests/pkg/lvgl/Makefile.ci diff --git a/tests/pkg_lvgl/README.md b/tests/pkg/lvgl/README.md similarity index 92% rename from tests/pkg_lvgl/README.md rename to tests/pkg/lvgl/README.md index 744c997347..d14fa00f9c 100644 --- a/tests/pkg_lvgl/README.md +++ b/tests/pkg/lvgl/README.md @@ -11,7 +11,7 @@ The application works without modification on the stm32f429i-disc1 board. To build, flash and run the application for this board, just use: ``` -make BOARD=stm32f429i-disc1 -C tests/pkg_lvgl flash +make BOARD=stm32f429i-disc1 -C tests/pkg/lvgl flash ``` ### Expected result diff --git a/tests/pkg_lvgl/app.config.test b/tests/pkg/lvgl/app.config.test similarity index 100% rename from tests/pkg_lvgl/app.config.test rename to tests/pkg/lvgl/app.config.test diff --git a/tests/pkg_lvgl/main.c b/tests/pkg/lvgl/main.c similarity index 100% rename from tests/pkg_lvgl/main.c rename to tests/pkg/lvgl/main.c diff --git a/tests/pkg_lvgl_touch/Makefile b/tests/pkg/lvgl_touch/Makefile similarity index 94% rename from tests/pkg_lvgl_touch/Makefile rename to tests/pkg/lvgl_touch/Makefile index e4e7d23f60..30a62476c3 100644 --- a/tests/pkg_lvgl_touch/Makefile +++ b/tests/pkg/lvgl_touch/Makefile @@ -1,5 +1,5 @@ BOARD ?= stm32f429i-disc1 -include ../Makefile.tests_common +include ../Makefile.pkg_common # No interactive_sync DISABLE_MODULE += test_utils_interactive_sync diff --git a/tests/pkg_lvgl_touch/Makefile.ci b/tests/pkg/lvgl_touch/Makefile.ci similarity index 100% rename from tests/pkg_lvgl_touch/Makefile.ci rename to tests/pkg/lvgl_touch/Makefile.ci diff --git a/tests/pkg_lvgl_touch/README.md b/tests/pkg/lvgl_touch/README.md similarity index 89% rename from tests/pkg_lvgl_touch/README.md rename to tests/pkg/lvgl_touch/README.md index 43f6c0441e..2da340b442 100644 --- a/tests/pkg_lvgl_touch/README.md +++ b/tests/pkg/lvgl_touch/README.md @@ -9,7 +9,7 @@ The application works without modification on the stm32f429i-disc1 board. To build, flash and run the application for this board, just use: ``` -make BOARD=stm32f429i-disc1 -C tests/pkg_lvgl_touch flash +make BOARD=stm32f429i-disc1 -C tests/pkg/lvgl_touch flash ``` ### Expected result diff --git a/tests/pkg_lvgl_touch/app.config.test b/tests/pkg/lvgl_touch/app.config.test similarity index 100% rename from tests/pkg_lvgl_touch/app.config.test rename to tests/pkg/lvgl_touch/app.config.test diff --git a/tests/pkg_lvgl_touch/main.c b/tests/pkg/lvgl_touch/main.c similarity index 100% rename from tests/pkg_lvgl_touch/main.c rename to tests/pkg/lvgl_touch/main.c diff --git a/tests/pkg_lz4/Makefile b/tests/pkg/lz4/Makefile similarity index 89% rename from tests/pkg_lz4/Makefile rename to tests/pkg/lz4/Makefile index 518ab2e5b3..e1b2d2ab29 100644 --- a/tests/pkg_lz4/Makefile +++ b/tests/pkg/lz4/Makefile @@ -1,4 +1,4 @@ -include ../Makefile.tests_common +include ../Makefile.pkg_common USEPKG += lz4 diff --git a/tests/pkg_lz4/Makefile.ci b/tests/pkg/lz4/Makefile.ci similarity index 100% rename from tests/pkg_lz4/Makefile.ci rename to tests/pkg/lz4/Makefile.ci diff --git a/tests/pkg_lz4/app.config.test b/tests/pkg/lz4/app.config.test similarity index 100% rename from tests/pkg_lz4/app.config.test rename to tests/pkg/lz4/app.config.test diff --git a/tests/pkg_lz4/main.c b/tests/pkg/lz4/main.c similarity index 100% rename from tests/pkg_lz4/main.c rename to tests/pkg/lz4/main.c diff --git a/tests/pkg_lz4/tests/01-run.py b/tests/pkg/lz4/tests/01-run.py similarity index 100% rename from tests/pkg_lz4/tests/01-run.py rename to tests/pkg/lz4/tests/01-run.py diff --git a/tests/pkg_mbedtls/Makefile b/tests/pkg/mbedtls/Makefile similarity index 95% rename from tests/pkg_mbedtls/Makefile rename to tests/pkg/mbedtls/Makefile index 5634c3938c..82f76ecb47 100644 --- a/tests/pkg_mbedtls/Makefile +++ b/tests/pkg/mbedtls/Makefile @@ -1,4 +1,4 @@ -include ../Makefile.tests_common +include ../Makefile.pkg_common USEPKG += mbedtls USEMODULE += mbedtls_entropy diff --git a/tests/pkg_mbedtls/Makefile.ci b/tests/pkg/mbedtls/Makefile.ci similarity index 100% rename from tests/pkg_mbedtls/Makefile.ci rename to tests/pkg/mbedtls/Makefile.ci diff --git a/tests/pkg_mbedtls/main.c b/tests/pkg/mbedtls/main.c similarity index 100% rename from tests/pkg_mbedtls/main.c rename to tests/pkg/mbedtls/main.c diff --git a/tests/pkg_mbedtls/tests/01-run.py b/tests/pkg/mbedtls/tests/01-run.py similarity index 100% rename from tests/pkg_mbedtls/tests/01-run.py rename to tests/pkg/mbedtls/tests/01-run.py diff --git a/tests/pkg_micro-ecc-with-hwrng/Makefile b/tests/pkg/micro-ecc-with-hwrng/Makefile similarity index 73% rename from tests/pkg_micro-ecc-with-hwrng/Makefile rename to tests/pkg/micro-ecc-with-hwrng/Makefile index 9136274665..eeb383195a 100644 --- a/tests/pkg_micro-ecc-with-hwrng/Makefile +++ b/tests/pkg/micro-ecc-with-hwrng/Makefile @@ -1,4 +1,4 @@ -include ../Makefile.tests_common +include ../Makefile.pkg_common FEATURES_REQUIRED = periph_hwrng diff --git a/tests/pkg_micro-ecc-with-hwrng/Makefile.ci b/tests/pkg/micro-ecc-with-hwrng/Makefile.ci similarity index 100% rename from tests/pkg_micro-ecc-with-hwrng/Makefile.ci rename to tests/pkg/micro-ecc-with-hwrng/Makefile.ci diff --git a/tests/pkg_micro-ecc-with-hwrng/main.c b/tests/pkg/micro-ecc-with-hwrng/main.c similarity index 100% rename from tests/pkg_micro-ecc-with-hwrng/main.c rename to tests/pkg/micro-ecc-with-hwrng/main.c diff --git a/tests/pkg_micro-ecc-with-hwrng/tests/01-run.py b/tests/pkg/micro-ecc-with-hwrng/tests/01-run.py similarity index 100% rename from tests/pkg_micro-ecc-with-hwrng/tests/01-run.py rename to tests/pkg/micro-ecc-with-hwrng/tests/01-run.py diff --git a/tests/pkg_micro-ecc/Makefile b/tests/pkg/micro-ecc/Makefile similarity index 86% rename from tests/pkg_micro-ecc/Makefile rename to tests/pkg/micro-ecc/Makefile index 7e246a00c7..cbc2d9d63d 100644 --- a/tests/pkg_micro-ecc/Makefile +++ b/tests/pkg/micro-ecc/Makefile @@ -1,4 +1,4 @@ -include ../Makefile.tests_common +include ../Makefile.pkg_common USEMODULE += hashes USEPKG += micro-ecc diff --git a/tests/pkg_micro-ecc/Makefile.ci b/tests/pkg/micro-ecc/Makefile.ci similarity index 100% rename from tests/pkg_micro-ecc/Makefile.ci rename to tests/pkg/micro-ecc/Makefile.ci diff --git a/tests/pkg_micro-ecc/app.config.test b/tests/pkg/micro-ecc/app.config.test similarity index 100% rename from tests/pkg_micro-ecc/app.config.test rename to tests/pkg/micro-ecc/app.config.test diff --git a/tests/pkg_micro-ecc/main.c b/tests/pkg/micro-ecc/main.c similarity index 100% rename from tests/pkg_micro-ecc/main.c rename to tests/pkg/micro-ecc/main.c diff --git a/tests/pkg_micro-ecc/tests/01-run.py b/tests/pkg/micro-ecc/tests/01-run.py similarity index 100% rename from tests/pkg_micro-ecc/tests/01-run.py rename to tests/pkg/micro-ecc/tests/01-run.py diff --git a/tests/pkg_microcoap/Makefile b/tests/pkg/microcoap/Makefile similarity index 96% rename from tests/pkg_microcoap/Makefile rename to tests/pkg/microcoap/Makefile index af6362647f..8b3e36fba9 100644 --- a/tests/pkg_microcoap/Makefile +++ b/tests/pkg/microcoap/Makefile @@ -1,4 +1,4 @@ -include ../Makefile.tests_common +include ../Makefile.pkg_common # Include packages that pull up and auto-init the link layer. # NOTE: 6LoWPAN will be included if IEEE802.15.4 devices are present diff --git a/tests/pkg_microcoap/Makefile.ci b/tests/pkg/microcoap/Makefile.ci similarity index 100% rename from tests/pkg_microcoap/Makefile.ci rename to tests/pkg/microcoap/Makefile.ci diff --git a/tests/pkg_microcoap/README.md b/tests/pkg/microcoap/README.md similarity index 100% rename from tests/pkg_microcoap/README.md rename to tests/pkg/microcoap/README.md diff --git a/tests/pkg_microcoap/coap.c b/tests/pkg/microcoap/coap.c similarity index 100% rename from tests/pkg_microcoap/coap.c rename to tests/pkg/microcoap/coap.c diff --git a/tests/pkg_microcoap/main.c b/tests/pkg/microcoap/main.c similarity index 100% rename from tests/pkg_microcoap/main.c rename to tests/pkg/microcoap/main.c diff --git a/tests/pkg_microcoap/microcoap_sock.c b/tests/pkg/microcoap/microcoap_sock.c similarity index 100% rename from tests/pkg_microcoap/microcoap_sock.c rename to tests/pkg/microcoap/microcoap_sock.c diff --git a/tests/pkg_minmea/Makefile b/tests/pkg/minmea/Makefile similarity index 69% rename from tests/pkg_minmea/Makefile rename to tests/pkg/minmea/Makefile index 9747dd09a0..74a75f4dce 100644 --- a/tests/pkg_minmea/Makefile +++ b/tests/pkg/minmea/Makefile @@ -1,4 +1,4 @@ -include ../Makefile.tests_common +include ../Makefile.pkg_common USEPKG += minmea diff --git a/tests/pkg_minmea/Makefile.ci b/tests/pkg/minmea/Makefile.ci similarity index 100% rename from tests/pkg_minmea/Makefile.ci rename to tests/pkg/minmea/Makefile.ci diff --git a/tests/pkg_minmea/app.config.test b/tests/pkg/minmea/app.config.test similarity index 100% rename from tests/pkg_minmea/app.config.test rename to tests/pkg/minmea/app.config.test diff --git a/tests/pkg_minmea/main.c b/tests/pkg/minmea/main.c similarity index 100% rename from tests/pkg_minmea/main.c rename to tests/pkg/minmea/main.c diff --git a/tests/pkg_minmea/tests/01-run.py b/tests/pkg/minmea/tests/01-run.py similarity index 100% rename from tests/pkg_minmea/tests/01-run.py rename to tests/pkg/minmea/tests/01-run.py diff --git a/tests/pkg_monocypher/Makefile b/tests/pkg/monocypher/Makefile similarity index 89% rename from tests/pkg_monocypher/Makefile rename to tests/pkg/monocypher/Makefile index bf9abd64a9..1e0203ac38 100644 --- a/tests/pkg_monocypher/Makefile +++ b/tests/pkg/monocypher/Makefile @@ -1,4 +1,4 @@ -include ../Makefile.tests_common +include ../Makefile.pkg_common # required for Monocypher (as described in the package documentation) CFLAGS += "-DTHREAD_STACKSIZE_MAIN=(4096 + THREAD_STACKSIZE_DEFAULT + THREAD_EXTRA_STACKSIZE_PRINTF)" diff --git a/tests/pkg_monocypher/Makefile.ci b/tests/pkg/monocypher/Makefile.ci similarity index 100% rename from tests/pkg_monocypher/Makefile.ci rename to tests/pkg/monocypher/Makefile.ci diff --git a/tests/pkg_monocypher/app.config.test b/tests/pkg/monocypher/app.config.test similarity index 100% rename from tests/pkg_monocypher/app.config.test rename to tests/pkg/monocypher/app.config.test diff --git a/tests/pkg_monocypher/main.c b/tests/pkg/monocypher/main.c similarity index 100% rename from tests/pkg_monocypher/main.c rename to tests/pkg/monocypher/main.c diff --git a/tests/pkg_monocypher/tests/01-run.py b/tests/pkg/monocypher/tests/01-run.py similarity index 100% rename from tests/pkg_monocypher/tests/01-run.py rename to tests/pkg/monocypher/tests/01-run.py diff --git a/tests/pkg_nanocbor/Makefile b/tests/pkg/nanocbor/Makefile similarity index 75% rename from tests/pkg_nanocbor/Makefile rename to tests/pkg/nanocbor/Makefile index 23f3dde927..a25a573a52 100644 --- a/tests/pkg_nanocbor/Makefile +++ b/tests/pkg/nanocbor/Makefile @@ -1,4 +1,4 @@ -include ../Makefile.tests_common +include ../Makefile.pkg_common USEPKG += nanocbor # Used for verification diff --git a/tests/pkg_nanocbor/app.config.test b/tests/pkg/nanocbor/app.config.test similarity index 100% rename from tests/pkg_nanocbor/app.config.test rename to tests/pkg/nanocbor/app.config.test diff --git a/tests/pkg_nanocbor/main.c b/tests/pkg/nanocbor/main.c similarity index 100% rename from tests/pkg_nanocbor/main.c rename to tests/pkg/nanocbor/main.c diff --git a/tests/pkg_nanocbor/tests/01-run.py b/tests/pkg/nanocbor/tests/01-run.py similarity index 100% rename from tests/pkg_nanocbor/tests/01-run.py rename to tests/pkg/nanocbor/tests/01-run.py diff --git a/tests/pkg_nanopb/Makefile b/tests/pkg/nanopb/Makefile similarity index 62% rename from tests/pkg_nanopb/Makefile rename to tests/pkg/nanopb/Makefile index db58d06f4c..293e3c8302 100644 --- a/tests/pkg_nanopb/Makefile +++ b/tests/pkg/nanopb/Makefile @@ -1,4 +1,4 @@ -include ../Makefile.tests_common +include ../Makefile.pkg_common USEPKG += nanopb diff --git a/tests/pkg_nanopb/Makefile.ci b/tests/pkg/nanopb/Makefile.ci similarity index 100% rename from tests/pkg_nanopb/Makefile.ci rename to tests/pkg/nanopb/Makefile.ci diff --git a/tests/pkg_nanopb/README.md b/tests/pkg/nanopb/README.md similarity index 100% rename from tests/pkg_nanopb/README.md rename to tests/pkg/nanopb/README.md diff --git a/tests/pkg_nanopb/app.config.test b/tests/pkg/nanopb/app.config.test similarity index 100% rename from tests/pkg_nanopb/app.config.test rename to tests/pkg/nanopb/app.config.test diff --git a/tests/pkg_nanopb/main.c b/tests/pkg/nanopb/main.c similarity index 100% rename from tests/pkg_nanopb/main.c rename to tests/pkg/nanopb/main.c diff --git a/tests/pkg_nanopb/simple.proto b/tests/pkg/nanopb/simple.proto similarity index 100% rename from tests/pkg_nanopb/simple.proto rename to tests/pkg/nanopb/simple.proto diff --git a/tests/pkg_nanopb/tests/01-run.py b/tests/pkg/nanopb/tests/01-run.py similarity index 100% rename from tests/pkg_nanopb/tests/01-run.py rename to tests/pkg/nanopb/tests/01-run.py diff --git a/tests/pkg_nanors/Makefile b/tests/pkg/nanors/Makefile similarity index 69% rename from tests/pkg_nanors/Makefile rename to tests/pkg/nanors/Makefile index 8d8738fc4c..d385d20204 100644 --- a/tests/pkg_nanors/Makefile +++ b/tests/pkg/nanors/Makefile @@ -1,4 +1,4 @@ -include ../Makefile.tests_common +include ../Makefile.pkg_common USEPKG += nanors USEMODULE += random diff --git a/tests/pkg_nanors/Makefile.ci b/tests/pkg/nanors/Makefile.ci similarity index 100% rename from tests/pkg_nanors/Makefile.ci rename to tests/pkg/nanors/Makefile.ci diff --git a/tests/pkg_nanors/app.config.test b/tests/pkg/nanors/app.config.test similarity index 100% rename from tests/pkg_nanors/app.config.test rename to tests/pkg/nanors/app.config.test diff --git a/tests/pkg_nanors/main.c b/tests/pkg/nanors/main.c similarity index 100% rename from tests/pkg_nanors/main.c rename to tests/pkg/nanors/main.c diff --git a/tests/pkg_nanors/tests/01-run.py b/tests/pkg/nanors/tests/01-run.py similarity index 100% rename from tests/pkg_nanors/tests/01-run.py rename to tests/pkg/nanors/tests/01-run.py diff --git a/tests/pkg_openwsn/Makefile b/tests/pkg/openwsn/Makefile similarity index 98% rename from tests/pkg_openwsn/Makefile rename to tests/pkg/openwsn/Makefile index 4b7d1211df..7f0038b38a 100644 --- a/tests/pkg_openwsn/Makefile +++ b/tests/pkg/openwsn/Makefile @@ -1,6 +1,6 @@ BOARD ?= iotlab-m3 -include ../Makefile.tests_common +include ../Makefile.pkg_common # list of arm boards that provide at86rf2xx radios, cc2538_rf or nrf52840 # radios diff --git a/tests/pkg_openwsn/README.md b/tests/pkg/openwsn/README.md similarity index 96% rename from tests/pkg_openwsn/README.md rename to tests/pkg/openwsn/README.md index 75c740ba9b..6dd1b637b6 100644 --- a/tests/pkg_openwsn/README.md +++ b/tests/pkg/openwsn/README.md @@ -140,22 +140,22 @@ to be specified for every node, `IOTLAB_NODE=m3-%.saclay.iot-lab.info` 2. flash the root node $ IOTLAB_NODE=${ROOT_IOTLAB_NODE} USEMODULE=openwsn_serial \ - BOARD=iotlab-m3 make -C tests/pkg_openwsn flash + BOARD=iotlab-m3 make -C tests/pkg/openwsn flash 3. open a shell to the leaf nodes so in two shell windows, do (one in each): - $ BOARD=iotlab-m3 make -C tests/pkg_openwsn all -j4 - $ BOARD=iotlab-m3 IOTLAB_NODE=${LEAF_IOTLAB_NODE0} make -C tests/pkg_openwsn flash-only - $ BOARD=iotlab-m3 IOTLAB_NODE=${LEAF_IOTLAB_NODE1} make -C tests/pkg_openwsn flash-only + $ BOARD=iotlab-m3 make -C tests/pkg/openwsn all -j4 + $ BOARD=iotlab-m3 IOTLAB_NODE=${LEAF_IOTLAB_NODE0} make -C tests/pkg/openwsn flash-only + $ BOARD=iotlab-m3 IOTLAB_NODE=${LEAF_IOTLAB_NODE1} make -C tests/pkg/openwsn flash-only 4. open a shell to the leaf nodes so in two shell windows, do (one in each): - $ BOARD=iotlab-m3 IOTLAB_NODE=${LEAF_IOTLAB_NODE0} make -C tests/pkg_openwsn term - $ BOARD=iotlab-m3 IOTLAB_NODE=${LEAF_IOTLAB_NODE1} make -C tests/pkg_openwsn term + $ BOARD=iotlab-m3 IOTLAB_NODE=${LEAF_IOTLAB_NODE0} make -C tests/pkg/openwsn term + $ BOARD=iotlab-m3 IOTLAB_NODE=${LEAF_IOTLAB_NODE1} make -C tests/pkg/openwsn term 5. in a third shell, launch openvisualizer: - $ BOARD=iotlab-m3 IOTLAB_NODE=${ROOT_IOTLAB_NODE} make -C tests/pkg_openwsn openv-termroot + $ BOARD=iotlab-m3 IOTLAB_NODE=${ROOT_IOTLAB_NODE} make -C tests/pkg/openwsn openv-termroot ### Network Setup @@ -280,11 +280,11 @@ follows: on iotlab: $ IOTLAB_NODE=${ROOT_IOTLAB_NODE} BOARD=iotlab-m3 \ - make -C tests/pkg_openwsn openv-termtun + make -C tests/pkg/openwsn openv-termtun on local boards: $ PORT= BOARD=samr21-xpro \ - make -C tests/pkg_openwsn openv-termtun + make -C tests/pkg/openwsn openv-termtun Once DAOs are received you can ping nodes in the network from your host: diff --git a/tests/pkg_openwsn/main.c b/tests/pkg/openwsn/main.c similarity index 100% rename from tests/pkg_openwsn/main.c rename to tests/pkg/openwsn/main.c diff --git a/tests/pkg_openwsn/udp.c b/tests/pkg/openwsn/udp.c similarity index 100% rename from tests/pkg_openwsn/udp.c rename to tests/pkg/openwsn/udp.c diff --git a/tests/pkg_openwsn_sock_udp/Makefile b/tests/pkg/openwsn_sock_udp/Makefile similarity index 96% rename from tests/pkg_openwsn_sock_udp/Makefile rename to tests/pkg/openwsn_sock_udp/Makefile index b28df44cf8..ea99a226ae 100644 --- a/tests/pkg_openwsn_sock_udp/Makefile +++ b/tests/pkg/openwsn_sock_udp/Makefile @@ -1,6 +1,6 @@ BOARD ?= samr21-xpro -include ../Makefile.tests_common +include ../Makefile.pkg_common # list of arm boards that provide at86rf2xx radios, cc2538_rf or nrf52840 # radios diff --git a/tests/pkg_openwsn_sock_udp/constants.h b/tests/pkg/openwsn_sock_udp/constants.h similarity index 100% rename from tests/pkg_openwsn_sock_udp/constants.h rename to tests/pkg/openwsn_sock_udp/constants.h diff --git a/tests/pkg_openwsn_sock_udp/external_modules/openwsn_scheduler_mock/Makefile b/tests/pkg/openwsn_sock_udp/external_modules/openwsn_scheduler_mock/Makefile similarity index 100% rename from tests/pkg_openwsn_sock_udp/external_modules/openwsn_scheduler_mock/Makefile rename to tests/pkg/openwsn_sock_udp/external_modules/openwsn_scheduler_mock/Makefile diff --git a/tests/pkg_openwsn_sock_udp/external_modules/openwsn_scheduler_mock/Makefile.include b/tests/pkg/openwsn_sock_udp/external_modules/openwsn_scheduler_mock/Makefile.include similarity index 100% rename from tests/pkg_openwsn_sock_udp/external_modules/openwsn_scheduler_mock/Makefile.include rename to tests/pkg/openwsn_sock_udp/external_modules/openwsn_scheduler_mock/Makefile.include diff --git a/tests/pkg_openwsn_sock_udp/external_modules/openwsn_scheduler_mock/include/scheduler_types.h b/tests/pkg/openwsn_sock_udp/external_modules/openwsn_scheduler_mock/include/scheduler_types.h similarity index 100% rename from tests/pkg_openwsn_sock_udp/external_modules/openwsn_scheduler_mock/include/scheduler_types.h rename to tests/pkg/openwsn_sock_udp/external_modules/openwsn_scheduler_mock/include/scheduler_types.h diff --git a/tests/pkg_openwsn_sock_udp/external_modules/openwsn_scheduler_mock/scheduler.c b/tests/pkg/openwsn_sock_udp/external_modules/openwsn_scheduler_mock/scheduler.c similarity index 100% rename from tests/pkg_openwsn_sock_udp/external_modules/openwsn_scheduler_mock/scheduler.c rename to tests/pkg/openwsn_sock_udp/external_modules/openwsn_scheduler_mock/scheduler.c diff --git a/tests/pkg_openwsn_sock_udp/main.c b/tests/pkg/openwsn_sock_udp/main.c similarity index 100% rename from tests/pkg_openwsn_sock_udp/main.c rename to tests/pkg/openwsn_sock_udp/main.c diff --git a/tests/pkg_openwsn_sock_udp/stack.c b/tests/pkg/openwsn_sock_udp/stack.c similarity index 100% rename from tests/pkg_openwsn_sock_udp/stack.c rename to tests/pkg/openwsn_sock_udp/stack.c diff --git a/tests/pkg_openwsn_sock_udp/stack.h b/tests/pkg/openwsn_sock_udp/stack.h similarity index 100% rename from tests/pkg_openwsn_sock_udp/stack.h rename to tests/pkg/openwsn_sock_udp/stack.h diff --git a/tests/pkg_openwsn_sock_udp/tests/01-run.py b/tests/pkg/openwsn_sock_udp/tests/01-run.py similarity index 100% rename from tests/pkg_openwsn_sock_udp/tests/01-run.py rename to tests/pkg/openwsn_sock_udp/tests/01-run.py diff --git a/tests/pkg_qcbor/Makefile b/tests/pkg/qcbor/Makefile similarity index 75% rename from tests/pkg_qcbor/Makefile rename to tests/pkg/qcbor/Makefile index bc8b9a28d8..295cf273ff 100644 --- a/tests/pkg_qcbor/Makefile +++ b/tests/pkg/qcbor/Makefile @@ -1,4 +1,4 @@ -include ../Makefile.tests_common +include ../Makefile.pkg_common USEPKG += qcbor # Used for verification diff --git a/tests/pkg_qcbor/Makefile.ci b/tests/pkg/qcbor/Makefile.ci similarity index 100% rename from tests/pkg_qcbor/Makefile.ci rename to tests/pkg/qcbor/Makefile.ci diff --git a/tests/pkg_qcbor/app.config.test b/tests/pkg/qcbor/app.config.test similarity index 100% rename from tests/pkg_qcbor/app.config.test rename to tests/pkg/qcbor/app.config.test diff --git a/tests/pkg_qcbor/main.c b/tests/pkg/qcbor/main.c similarity index 100% rename from tests/pkg_qcbor/main.c rename to tests/pkg/qcbor/main.c diff --git a/tests/pkg_qcbor/tests/01-run.py b/tests/pkg/qcbor/tests/01-run.py similarity index 100% rename from tests/pkg_qcbor/tests/01-run.py rename to tests/pkg/qcbor/tests/01-run.py diff --git a/tests/pkg_qdsa/Makefile b/tests/pkg/qdsa/Makefile similarity index 82% rename from tests/pkg_qdsa/Makefile rename to tests/pkg/qdsa/Makefile index 29a486e486..d04b162129 100644 --- a/tests/pkg_qdsa/Makefile +++ b/tests/pkg/qdsa/Makefile @@ -1,4 +1,4 @@ -include ../Makefile.tests_common +include ../Makefile.pkg_common CFLAGS += -DTHREAD_STACKSIZE_MAIN=\(4*THREAD_STACKSIZE_DEFAULT\) diff --git a/tests/pkg_qdsa/Makefile.ci b/tests/pkg/qdsa/Makefile.ci similarity index 100% rename from tests/pkg_qdsa/Makefile.ci rename to tests/pkg/qdsa/Makefile.ci diff --git a/tests/pkg_qdsa/app.config.test b/tests/pkg/qdsa/app.config.test similarity index 100% rename from tests/pkg_qdsa/app.config.test rename to tests/pkg/qdsa/app.config.test diff --git a/tests/pkg_qdsa/main.c b/tests/pkg/qdsa/main.c similarity index 100% rename from tests/pkg_qdsa/main.c rename to tests/pkg/qdsa/main.c diff --git a/tests/pkg_qdsa/tests/01-run.py b/tests/pkg/qdsa/tests/01-run.py similarity index 100% rename from tests/pkg_qdsa/tests/01-run.py rename to tests/pkg/qdsa/tests/01-run.py diff --git a/tests/pkg_qr-code-generator/Kconfig b/tests/pkg/qr-code-generator/Kconfig similarity index 100% rename from tests/pkg_qr-code-generator/Kconfig rename to tests/pkg/qr-code-generator/Kconfig diff --git a/tests/pkg_qr-code-generator/Makefile b/tests/pkg/qr-code-generator/Makefile similarity index 90% rename from tests/pkg_qr-code-generator/Makefile rename to tests/pkg/qr-code-generator/Makefile index f728b51e4a..d2b8001ae9 100644 --- a/tests/pkg_qr-code-generator/Makefile +++ b/tests/pkg/qr-code-generator/Makefile @@ -1,4 +1,4 @@ -include ../Makefile.tests_common +include ../Makefile.pkg_common USEPKG += qr-code-generator diff --git a/tests/pkg_qr-code-generator/Makefile.board.dep b/tests/pkg/qr-code-generator/Makefile.board.dep similarity index 100% rename from tests/pkg_qr-code-generator/Makefile.board.dep rename to tests/pkg/qr-code-generator/Makefile.board.dep diff --git a/tests/pkg_qr-code-generator/app.config.test b/tests/pkg/qr-code-generator/app.config.test similarity index 100% rename from tests/pkg_qr-code-generator/app.config.test rename to tests/pkg/qr-code-generator/app.config.test diff --git a/tests/pkg_qr-code-generator/main.c b/tests/pkg/qr-code-generator/main.c similarity index 100% rename from tests/pkg_qr-code-generator/main.c rename to tests/pkg/qr-code-generator/main.c diff --git a/tests/pkg_qr-code-generator/tests/01-run.py b/tests/pkg/qr-code-generator/tests/01-run.py similarity index 100% rename from tests/pkg_qr-code-generator/tests/01-run.py rename to tests/pkg/qr-code-generator/tests/01-run.py diff --git a/tests/pkg_relic/Makefile b/tests/pkg/relic/Makefile similarity index 97% rename from tests/pkg_relic/Makefile rename to tests/pkg/relic/Makefile index 24509c97cd..5387a8c1ab 100644 --- a/tests/pkg_relic/Makefile +++ b/tests/pkg/relic/Makefile @@ -1,4 +1,4 @@ -include ../Makefile.tests_common +include ../Makefile.pkg_common # The following boards are known to fail or have not been tested. BOARD_BLACKLIST := arduino-duemilanove \ diff --git a/tests/pkg_relic/Makefile.ci b/tests/pkg/relic/Makefile.ci similarity index 100% rename from tests/pkg_relic/Makefile.ci rename to tests/pkg/relic/Makefile.ci diff --git a/tests/pkg_relic/app.config.test b/tests/pkg/relic/app.config.test similarity index 100% rename from tests/pkg_relic/app.config.test rename to tests/pkg/relic/app.config.test diff --git a/tests/pkg_relic/main.c b/tests/pkg/relic/main.c similarity index 100% rename from tests/pkg_relic/main.c rename to tests/pkg/relic/main.c diff --git a/tests/pkg_relic/tests/01-run.py b/tests/pkg/relic/tests/01-run.py similarity index 100% rename from tests/pkg_relic/tests/01-run.py rename to tests/pkg/relic/tests/01-run.py diff --git a/tests/pkg_semtech-loramac/Makefile b/tests/pkg/semtech-loramac/Makefile similarity index 95% rename from tests/pkg_semtech-loramac/Makefile rename to tests/pkg/semtech-loramac/Makefile index 1699e229d7..2720aad90c 100644 --- a/tests/pkg_semtech-loramac/Makefile +++ b/tests/pkg/semtech-loramac/Makefile @@ -1,6 +1,6 @@ BOARD ?= b-l072z-lrwan1 -include ../Makefile.tests_common +include ../Makefile.pkg_common BOARD_WITHOUT_LORAMAC_RX := \ arduino-mega2560 \ diff --git a/tests/pkg_semtech-loramac/Makefile.ci b/tests/pkg/semtech-loramac/Makefile.ci similarity index 100% rename from tests/pkg_semtech-loramac/Makefile.ci rename to tests/pkg/semtech-loramac/Makefile.ci diff --git a/tests/pkg_semtech-loramac/README.md b/tests/pkg/semtech-loramac/README.md similarity index 97% rename from tests/pkg_semtech-loramac/README.md rename to tests/pkg/semtech-loramac/README.md index fa5e638876..4b838fa2c5 100644 --- a/tests/pkg_semtech-loramac/README.md +++ b/tests/pkg/semtech-loramac/README.md @@ -51,7 +51,7 @@ board. Depending on the type of radio device, set the `LORA_DRIVER` variable accordingly: For example: - LORA_DRIVER=sx1272 make BOARD=nucleo-f411re -C tests/pkg_semtech-loramac flash term + LORA_DRIVER=sx1272 make BOARD=nucleo-f411re -C tests/pkg/semtech-loramac flash term will build the application for a nucleo-f411re with an SX1272 based mbed LoRa shield. @@ -60,7 +60,7 @@ The SX1276 is the default value. The other parameter that has to be set at build time is the geographic region: `EU868`, `US915`, etc. See LoRaWAN regional parameters for more information. - LORA_REGION=US915 LORA_DRIVER=sx1272 make BOARD=nucleo-f411re -C tests/pkg_semtech-loramac flash term + LORA_REGION=US915 LORA_DRIVER=sx1272 make BOARD=nucleo-f411re -C tests/pkg/semtech-loramac flash term will build the application for a nucleo-f411re with an SX1272 based mbed LoRa shield for US915 region. @@ -247,17 +247,17 @@ for ABP. The test assumes that both devices have the same Application EUI. 1. flash device with appropriate keys and test - $ DEVEUI_OTA=<...> DEVEUI_ABP=<...> APPEUI=<...> APPKEY=<...> DEVADDR=<...> NWKSKEY=<...> APPSKEY=<...> RX2_DR=<...> make BOARD=b-l072z-lrwan1 -C tests/pkg_semtech-loramac test + $ DEVEUI_OTA=<...> DEVEUI_ABP=<...> APPEUI=<...> APPKEY=<...> DEVADDR=<...> NWKSKEY=<...> APPSKEY=<...> RX2_DR=<...> make BOARD=b-l072z-lrwan1 -C tests/pkg/semtech-loramac test #### With iotlab 1. setup the iotlab experiment: - $ make -C tests/pkg_semtech-loramac iotlab-exp + $ make -C tests/pkg/semtech-loramac iotlab-exp 2. flash device with the appropriate keys and test - $ DEVEUI=<...> APPEUI=<...> APPKEY=<...> DEVADDR=<...> NWKSKEY=<...> APPSKEY=<...> RX2_DR=<...> IOTLAB_NODE=auto make -C tests/pkg_semtech-loramac flash test + $ DEVEUI=<...> APPEUI=<...> APPKEY=<...> DEVADDR=<...> NWKSKEY=<...> APPSKEY=<...> RX2_DR=<...> IOTLAB_NODE=auto make -C tests/pkg/semtech-loramac flash test 3. stop the iotlab experiment: diff --git a/tests/pkg_semtech-loramac/main.c b/tests/pkg/semtech-loramac/main.c similarity index 100% rename from tests/pkg_semtech-loramac/main.c rename to tests/pkg/semtech-loramac/main.c diff --git a/tests/pkg_semtech-loramac/tests-with-config/01-run.py b/tests/pkg/semtech-loramac/tests-with-config/01-run.py similarity index 100% rename from tests/pkg_semtech-loramac/tests-with-config/01-run.py rename to tests/pkg/semtech-loramac/tests-with-config/01-run.py diff --git a/tests/pkg_spiffs/Makefile b/tests/pkg/spiffs/Makefile similarity index 76% rename from tests/pkg_spiffs/Makefile rename to tests/pkg/spiffs/Makefile index c7c7a08147..d44b3f8c4f 100644 --- a/tests/pkg_spiffs/Makefile +++ b/tests/pkg/spiffs/Makefile @@ -1,4 +1,4 @@ -include ../Makefile.tests_common +include ../Makefile.pkg_common USEMODULE += spiffs USEMODULE += embunit diff --git a/tests/pkg_spiffs/Makefile.ci b/tests/pkg/spiffs/Makefile.ci similarity index 100% rename from tests/pkg_spiffs/Makefile.ci rename to tests/pkg/spiffs/Makefile.ci diff --git a/tests/pkg_spiffs/main.c b/tests/pkg/spiffs/main.c similarity index 100% rename from tests/pkg_spiffs/main.c rename to tests/pkg/spiffs/main.c diff --git a/tests/pkg_spiffs/tests/01-run.py b/tests/pkg/spiffs/tests/01-run.py similarity index 100% rename from tests/pkg_spiffs/tests/01-run.py rename to tests/pkg/spiffs/tests/01-run.py diff --git a/tests/pkg_tflite-micro/Kconfig b/tests/pkg/tflite-micro/Kconfig similarity index 100% rename from tests/pkg_tflite-micro/Kconfig rename to tests/pkg/tflite-micro/Kconfig diff --git a/tests/pkg_tflite-micro/Makefile b/tests/pkg/tflite-micro/Makefile similarity index 92% rename from tests/pkg_tflite-micro/Makefile rename to tests/pkg/tflite-micro/Makefile index a5c30fe016..54e3d83271 100644 --- a/tests/pkg_tflite-micro/Makefile +++ b/tests/pkg/tflite-micro/Makefile @@ -1,7 +1,7 @@ # Ensure minimal size by default DEVELHELP ?= 0 -include ../Makefile.tests_common +include ../Makefile.pkg_common USEPKG += tflite-micro diff --git a/tests/pkg_tflite-micro/Makefile.ci b/tests/pkg/tflite-micro/Makefile.ci similarity index 100% rename from tests/pkg_tflite-micro/Makefile.ci rename to tests/pkg/tflite-micro/Makefile.ci diff --git a/tests/pkg_tflite-micro/README.md b/tests/pkg/tflite-micro/README.md similarity index 97% rename from tests/pkg_tflite-micro/README.md rename to tests/pkg/tflite-micro/README.md index 1404cafa69..95fc9fa28c 100644 --- a/tests/pkg_tflite-micro/README.md +++ b/tests/pkg/tflite-micro/README.md @@ -18,7 +18,7 @@ To get started with TensorFlow Lite on microcontrollers, please refer to Simply run the application on the board of your choice using: - make BOARD= -C tests/pkg_tensorflow-lite flash term + make BOARD= -C tests/pkg/tensorflow-lite flash term Set `EXAMPLE=hello_world` from the command line to try the upstream hello_world example. diff --git a/tests/pkg_tflite-micro/app.config.test b/tests/pkg/tflite-micro/app.config.test similarity index 100% rename from tests/pkg_tflite-micro/app.config.test rename to tests/pkg/tflite-micro/app.config.test diff --git a/tests/pkg_tflite-micro/external_modules/mnist/.gitignore b/tests/pkg/tflite-micro/external_modules/mnist/.gitignore similarity index 100% rename from tests/pkg_tflite-micro/external_modules/mnist/.gitignore rename to tests/pkg/tflite-micro/external_modules/mnist/.gitignore diff --git a/tests/pkg_tflite-micro/external_modules/mnist/Kconfig b/tests/pkg/tflite-micro/external_modules/mnist/Kconfig similarity index 100% rename from tests/pkg_tflite-micro/external_modules/mnist/Kconfig rename to tests/pkg/tflite-micro/external_modules/mnist/Kconfig diff --git a/tests/pkg_tflite-micro/external_modules/mnist/Makefile b/tests/pkg/tflite-micro/external_modules/mnist/Makefile similarity index 100% rename from tests/pkg_tflite-micro/external_modules/mnist/Makefile rename to tests/pkg/tflite-micro/external_modules/mnist/Makefile diff --git a/tests/pkg_tflite-micro/external_modules/mnist/digit b/tests/pkg/tflite-micro/external_modules/mnist/digit similarity index 100% rename from tests/pkg_tflite-micro/external_modules/mnist/digit rename to tests/pkg/tflite-micro/external_modules/mnist/digit diff --git a/tests/pkg_tflite-micro/external_modules/mnist/generate_digit.py b/tests/pkg/tflite-micro/external_modules/mnist/generate_digit.py similarity index 100% rename from tests/pkg_tflite-micro/external_modules/mnist/generate_digit.py rename to tests/pkg/tflite-micro/external_modules/mnist/generate_digit.py diff --git a/tests/pkg_tflite-micro/external_modules/mnist/main_functions.cc b/tests/pkg/tflite-micro/external_modules/mnist/main_functions.cc similarity index 100% rename from tests/pkg_tflite-micro/external_modules/mnist/main_functions.cc rename to tests/pkg/tflite-micro/external_modules/mnist/main_functions.cc diff --git a/tests/pkg_tflite-micro/external_modules/mnist/mnist_mlp.py b/tests/pkg/tflite-micro/external_modules/mnist/mnist_mlp.py similarity index 100% rename from tests/pkg_tflite-micro/external_modules/mnist/mnist_mlp.py rename to tests/pkg/tflite-micro/external_modules/mnist/mnist_mlp.py diff --git a/tests/pkg_tflite-micro/external_modules/mnist/model.tflite b/tests/pkg/tflite-micro/external_modules/mnist/model.tflite similarity index 100% rename from tests/pkg_tflite-micro/external_modules/mnist/model.tflite rename to tests/pkg/tflite-micro/external_modules/mnist/model.tflite diff --git a/tests/pkg_tflite-micro/main.cpp b/tests/pkg/tflite-micro/main.cpp similarity index 100% rename from tests/pkg_tflite-micro/main.cpp rename to tests/pkg/tflite-micro/main.cpp diff --git a/tests/pkg_tflite-micro/tests/01-run.py b/tests/pkg/tflite-micro/tests/01-run.py similarity index 100% rename from tests/pkg_tflite-micro/tests/01-run.py rename to tests/pkg/tflite-micro/tests/01-run.py diff --git a/tests/pkg_tiny-asn1/Makefile b/tests/pkg/tiny-asn1/Makefile similarity index 64% rename from tests/pkg_tiny-asn1/Makefile rename to tests/pkg/tiny-asn1/Makefile index 21818d54b8..8460ad7917 100644 --- a/tests/pkg_tiny-asn1/Makefile +++ b/tests/pkg/tiny-asn1/Makefile @@ -1,4 +1,4 @@ -include ../Makefile.tests_common +include ../Makefile.pkg_common USEPKG += tiny-asn1 diff --git a/tests/pkg_tiny-asn1/Makefile.ci b/tests/pkg/tiny-asn1/Makefile.ci similarity index 100% rename from tests/pkg_tiny-asn1/Makefile.ci rename to tests/pkg/tiny-asn1/Makefile.ci diff --git a/tests/pkg_tiny-asn1/README.md b/tests/pkg/tiny-asn1/README.md similarity index 100% rename from tests/pkg_tiny-asn1/README.md rename to tests/pkg/tiny-asn1/README.md diff --git a/tests/pkg_tiny-asn1/app.config.test b/tests/pkg/tiny-asn1/app.config.test similarity index 100% rename from tests/pkg_tiny-asn1/app.config.test rename to tests/pkg/tiny-asn1/app.config.test diff --git a/tests/pkg_tiny-asn1/main.c b/tests/pkg/tiny-asn1/main.c similarity index 100% rename from tests/pkg_tiny-asn1/main.c rename to tests/pkg/tiny-asn1/main.c diff --git a/tests/pkg_tiny-asn1/tests/01-run.py b/tests/pkg/tiny-asn1/tests/01-run.py similarity index 100% rename from tests/pkg_tiny-asn1/tests/01-run.py rename to tests/pkg/tiny-asn1/tests/01-run.py diff --git a/tests/pkg_tinycbor/Makefile b/tests/pkg/tinycbor/Makefile similarity index 79% rename from tests/pkg_tinycbor/Makefile rename to tests/pkg/tinycbor/Makefile index fd8b1560e4..19ed65aa87 100644 --- a/tests/pkg_tinycbor/Makefile +++ b/tests/pkg/tinycbor/Makefile @@ -1,4 +1,4 @@ -include ../Makefile.tests_common +include ../Makefile.pkg_common USEMODULE += embunit USEMODULE += fmt diff --git a/tests/pkg_tinycbor/app.config.test b/tests/pkg/tinycbor/app.config.test similarity index 100% rename from tests/pkg_tinycbor/app.config.test rename to tests/pkg/tinycbor/app.config.test diff --git a/tests/pkg_tinycbor/main.c b/tests/pkg/tinycbor/main.c similarity index 100% rename from tests/pkg_tinycbor/main.c rename to tests/pkg/tinycbor/main.c diff --git a/tests/pkg_tinycbor/tests/01-run.py b/tests/pkg/tinycbor/tests/01-run.py similarity index 100% rename from tests/pkg_tinycbor/tests/01-run.py rename to tests/pkg/tinycbor/tests/01-run.py diff --git a/tests/pkg_tinycrypt/Makefile b/tests/pkg/tinycrypt/Makefile similarity index 69% rename from tests/pkg_tinycrypt/Makefile rename to tests/pkg/tinycrypt/Makefile index cfc500650c..57d6cb2103 100644 --- a/tests/pkg_tinycrypt/Makefile +++ b/tests/pkg/tinycrypt/Makefile @@ -1,4 +1,4 @@ -include ../Makefile.tests_common +include ../Makefile.pkg_common USEPKG += tinycrypt USEMODULE = fmt diff --git a/tests/pkg_tinycrypt/app.config.test b/tests/pkg/tinycrypt/app.config.test similarity index 100% rename from tests/pkg_tinycrypt/app.config.test rename to tests/pkg/tinycrypt/app.config.test diff --git a/tests/pkg_tinycrypt/main.c b/tests/pkg/tinycrypt/main.c similarity index 100% rename from tests/pkg_tinycrypt/main.c rename to tests/pkg/tinycrypt/main.c diff --git a/tests/pkg_tinycrypt/tests/01-run.py b/tests/pkg/tinycrypt/tests/01-run.py similarity index 100% rename from tests/pkg_tinycrypt/tests/01-run.py rename to tests/pkg/tinycrypt/tests/01-run.py diff --git a/tests/pkg_tinydtls_sock_async/Makefile b/tests/pkg/tinydtls_sock_async/Makefile similarity index 97% rename from tests/pkg_tinydtls_sock_async/Makefile rename to tests/pkg/tinydtls_sock_async/Makefile index 04548eb882..30728069d2 100644 --- a/tests/pkg_tinydtls_sock_async/Makefile +++ b/tests/pkg/tinydtls_sock_async/Makefile @@ -1,4 +1,4 @@ -include ../Makefile.tests_common +include ../Makefile.pkg_common # Include packages that pull up and auto-init the link layer. # NOTE: 6LoWPAN will be included if IEEE802.15.4 devices are present diff --git a/tests/pkg_tinydtls_sock_async/Makefile.ci b/tests/pkg/tinydtls_sock_async/Makefile.ci similarity index 100% rename from tests/pkg_tinydtls_sock_async/Makefile.ci rename to tests/pkg/tinydtls_sock_async/Makefile.ci diff --git a/tests/pkg_tinydtls_sock_async/README.md b/tests/pkg/tinydtls_sock_async/README.md similarity index 100% rename from tests/pkg_tinydtls_sock_async/README.md rename to tests/pkg/tinydtls_sock_async/README.md diff --git a/tests/pkg_tinydtls_sock_async/dtls-client.c b/tests/pkg/tinydtls_sock_async/dtls-client.c similarity index 100% rename from tests/pkg_tinydtls_sock_async/dtls-client.c rename to tests/pkg/tinydtls_sock_async/dtls-client.c diff --git a/tests/pkg_tinydtls_sock_async/dtls-server.c b/tests/pkg/tinydtls_sock_async/dtls-server.c similarity index 100% rename from tests/pkg_tinydtls_sock_async/dtls-server.c rename to tests/pkg/tinydtls_sock_async/dtls-server.c diff --git a/tests/pkg_tinydtls_sock_async/main.c b/tests/pkg/tinydtls_sock_async/main.c similarity index 100% rename from tests/pkg_tinydtls_sock_async/main.c rename to tests/pkg/tinydtls_sock_async/main.c diff --git a/tests/pkg_tinydtls_sock_async/tinydtls_common.h b/tests/pkg/tinydtls_sock_async/tinydtls_common.h similarity index 100% rename from tests/pkg_tinydtls_sock_async/tinydtls_common.h rename to tests/pkg/tinydtls_sock_async/tinydtls_common.h diff --git a/tests/pkg_tinydtls_sock_async/tinydtls_keys.h b/tests/pkg/tinydtls_sock_async/tinydtls_keys.h similarity index 100% rename from tests/pkg_tinydtls_sock_async/tinydtls_keys.h rename to tests/pkg/tinydtls_sock_async/tinydtls_keys.h diff --git a/tests/pkg_tinyusb_cdc_acm_stdio/Makefile b/tests/pkg/tinyusb_cdc_acm_stdio/Makefile similarity index 87% rename from tests/pkg_tinyusb_cdc_acm_stdio/Makefile rename to tests/pkg/tinyusb_cdc_acm_stdio/Makefile index a3b5a59126..c11672db84 100644 --- a/tests/pkg_tinyusb_cdc_acm_stdio/Makefile +++ b/tests/pkg/tinyusb_cdc_acm_stdio/Makefile @@ -1,5 +1,5 @@ BOARD ?= samr21-xpro -include ../Makefile.tests_common +include ../Makefile.pkg_common USB_VID ?= $(USB_VID_TESTING) USB_PID ?= $(USB_PID_TESTING) diff --git a/tests/pkg_tinyusb_cdc_acm_stdio/app.config.test b/tests/pkg/tinyusb_cdc_acm_stdio/app.config.test similarity index 100% rename from tests/pkg_tinyusb_cdc_acm_stdio/app.config.test rename to tests/pkg/tinyusb_cdc_acm_stdio/app.config.test diff --git a/tests/pkg/tinyusb_cdc_acm_stdio/main.c b/tests/pkg/tinyusb_cdc_acm_stdio/main.c new file mode 120000 index 0000000000..d533f5512f --- /dev/null +++ b/tests/pkg/tinyusb_cdc_acm_stdio/main.c @@ -0,0 +1 @@ +../../usbus_cdc_acm_stdio/main.c \ No newline at end of file diff --git a/tests/pkg_tinyusb_cdc_msc/Makefile b/tests/pkg/tinyusb_cdc_msc/Makefile similarity index 87% rename from tests/pkg_tinyusb_cdc_msc/Makefile rename to tests/pkg/tinyusb_cdc_msc/Makefile index 2d91da8506..79b6013dfe 100644 --- a/tests/pkg_tinyusb_cdc_msc/Makefile +++ b/tests/pkg/tinyusb_cdc_msc/Makefile @@ -1,5 +1,5 @@ BOARD ?= samr21-xpro -include ../Makefile.tests_common +include ../Makefile.pkg_common USB_VID ?= $(USB_VID_TESTING) USB_PID ?= $(USB_PID_TESTING) diff --git a/tests/pkg_tinyusb_cdc_msc/README.md b/tests/pkg/tinyusb_cdc_msc/README.md similarity index 95% rename from tests/pkg_tinyusb_cdc_msc/README.md rename to tests/pkg/tinyusb_cdc_msc/README.md index a3b596fddc..8b18e9179d 100644 --- a/tests/pkg_tinyusb_cdc_msc/README.md +++ b/tests/pkg/tinyusb_cdc_msc/README.md @@ -16,7 +16,7 @@ variables `USB_VID` and `USB_PID` in the makefile or at the command line, for example ``` -USB_VID=1234 USB_PID=5678 BOARD=... make -C tests/pkg_tinyusb_cdc_msc +USB_VID=1234 USB_PID=5678 BOARD=... make -C tests/pkg/tinyusb_cdc_msc ``` ## Usage diff --git a/tests/pkg_tinyusb_cdc_msc/app.config.test b/tests/pkg/tinyusb_cdc_msc/app.config.test similarity index 100% rename from tests/pkg_tinyusb_cdc_msc/app.config.test rename to tests/pkg/tinyusb_cdc_msc/app.config.test diff --git a/tests/pkg_tinyusb_cdc_msc/main.c b/tests/pkg/tinyusb_cdc_msc/main.c similarity index 100% rename from tests/pkg_tinyusb_cdc_msc/main.c rename to tests/pkg/tinyusb_cdc_msc/main.c diff --git a/tests/pkg_tinyusb_cdc_msc/msc_disk.c b/tests/pkg/tinyusb_cdc_msc/msc_disk.c similarity index 100% rename from tests/pkg_tinyusb_cdc_msc/msc_disk.c rename to tests/pkg/tinyusb_cdc_msc/msc_disk.c diff --git a/tests/pkg_tinyusb_netdev/Makefile b/tests/pkg/tinyusb_netdev/Makefile similarity index 92% rename from tests/pkg_tinyusb_netdev/Makefile rename to tests/pkg/tinyusb_netdev/Makefile index 9938a3fb71..42533a6850 100644 --- a/tests/pkg_tinyusb_netdev/Makefile +++ b/tests/pkg/tinyusb_netdev/Makefile @@ -1,6 +1,6 @@ BOARD ?= samr21-xpro -include ../Makefile.tests_common +include ../Makefile.pkg_common USB_VID ?= $(USB_VID_TESTING) USB_PID ?= $(USB_PID_TESTING) diff --git a/tests/pkg_tinyusb_netdev/Makefile.ci b/tests/pkg/tinyusb_netdev/Makefile.ci similarity index 100% rename from tests/pkg_tinyusb_netdev/Makefile.ci rename to tests/pkg/tinyusb_netdev/Makefile.ci diff --git a/tests/pkg_tinyusb_netdev/README.md b/tests/pkg/tinyusb_netdev/README.md similarity index 94% rename from tests/pkg_tinyusb_netdev/README.md rename to tests/pkg/tinyusb_netdev/README.md index 239d947908..493478f1d8 100644 --- a/tests/pkg_tinyusb_netdev/README.md +++ b/tests/pkg/tinyusb_netdev/README.md @@ -20,14 +20,14 @@ The test application use the protocol defined by the CLASS variable, which defaults to the RNDIS protocol (`tinyusb_class_net_rndis`). This can be changed by setting this variable in the make command line, for example: ``` -CLASS=tinyusb_class_net_cdc_ecm BOARD=... make -C tests/pkg_tinyusb_netdev flash +CLASS=tinyusb_class_net_cdc_ecm BOARD=... make -C tests/pkg/tinyusb_netdev flash ``` The CDC ECM protocol (`tinyusb_class_net_cdc_ecm`) and the RNDIS protocol (`tinyusb_class_net_rndis`) can be used simultaneously to support all operating systems, for example : ``` CLASS='tinyusb_class_net_rndis tinyusb_class_net_cdc_ecm' \ -BOARD=... make -C tests/pkg_tinyusb_netdev flash +BOARD=... make -C tests/pkg/tinyusb_netdev flash ``` In this case, the CDC ECM protocol is the default protocol and the RNDIS protocol the alternative protocol defined as second device configuration. diff --git a/tests/pkg_tinyusb_netdev/main.c b/tests/pkg/tinyusb_netdev/main.c similarity index 100% rename from tests/pkg_tinyusb_netdev/main.c rename to tests/pkg/tinyusb_netdev/main.c diff --git a/tests/pkg_tinyvcdiff/Makefile b/tests/pkg/tinyvcdiff/Makefile similarity index 89% rename from tests/pkg_tinyvcdiff/Makefile rename to tests/pkg/tinyvcdiff/Makefile index 6bb74da9e2..4e9724e8dc 100644 --- a/tests/pkg_tinyvcdiff/Makefile +++ b/tests/pkg/tinyvcdiff/Makefile @@ -1,4 +1,4 @@ -include ../Makefile.tests_common +include ../Makefile.pkg_common BLOBS += source.bin delta.bin target.bin diff --git a/tests/pkg_tinyvcdiff/Makefile.ci b/tests/pkg/tinyvcdiff/Makefile.ci similarity index 100% rename from tests/pkg_tinyvcdiff/Makefile.ci rename to tests/pkg/tinyvcdiff/Makefile.ci diff --git a/tests/pkg_tinyvcdiff/README.md b/tests/pkg/tinyvcdiff/README.md similarity index 100% rename from tests/pkg_tinyvcdiff/README.md rename to tests/pkg/tinyvcdiff/README.md diff --git a/tests/pkg_tinyvcdiff/app.config.test b/tests/pkg/tinyvcdiff/app.config.test similarity index 100% rename from tests/pkg_tinyvcdiff/app.config.test rename to tests/pkg/tinyvcdiff/app.config.test diff --git a/tests/pkg_tinyvcdiff/delta.bin b/tests/pkg/tinyvcdiff/delta.bin similarity index 100% rename from tests/pkg_tinyvcdiff/delta.bin rename to tests/pkg/tinyvcdiff/delta.bin diff --git a/tests/pkg_tinyvcdiff/fakemtd.c b/tests/pkg/tinyvcdiff/fakemtd.c similarity index 100% rename from tests/pkg_tinyvcdiff/fakemtd.c rename to tests/pkg/tinyvcdiff/fakemtd.c diff --git a/tests/pkg_tinyvcdiff/fakemtd.h b/tests/pkg/tinyvcdiff/fakemtd.h similarity index 100% rename from tests/pkg_tinyvcdiff/fakemtd.h rename to tests/pkg/tinyvcdiff/fakemtd.h diff --git a/tests/pkg_tinyvcdiff/main.c b/tests/pkg/tinyvcdiff/main.c similarity index 100% rename from tests/pkg_tinyvcdiff/main.c rename to tests/pkg/tinyvcdiff/main.c diff --git a/tests/pkg_tinyvcdiff/source.bin b/tests/pkg/tinyvcdiff/source.bin similarity index 100% rename from tests/pkg_tinyvcdiff/source.bin rename to tests/pkg/tinyvcdiff/source.bin diff --git a/tests/pkg_tinyvcdiff/target.bin b/tests/pkg/tinyvcdiff/target.bin similarity index 100% rename from tests/pkg_tinyvcdiff/target.bin rename to tests/pkg/tinyvcdiff/target.bin diff --git a/tests/pkg_tinyvcdiff/tests/01-run.py b/tests/pkg/tinyvcdiff/tests/01-run.py similarity index 100% rename from tests/pkg_tinyvcdiff/tests/01-run.py rename to tests/pkg/tinyvcdiff/tests/01-run.py diff --git a/tests/pkg_tweetnacl/Makefile b/tests/pkg/tweetnacl/Makefile similarity index 84% rename from tests/pkg_tweetnacl/Makefile rename to tests/pkg/tweetnacl/Makefile index 2adb67f6ed..4c6e4c576c 100644 --- a/tests/pkg_tweetnacl/Makefile +++ b/tests/pkg/tweetnacl/Makefile @@ -1,4 +1,4 @@ -include ../Makefile.tests_common +include ../Makefile.pkg_common TEST_ON_CI_WHITELIST += native diff --git a/tests/pkg_tweetnacl/Makefile.ci b/tests/pkg/tweetnacl/Makefile.ci similarity index 100% rename from tests/pkg_tweetnacl/Makefile.ci rename to tests/pkg/tweetnacl/Makefile.ci diff --git a/tests/pkg_tweetnacl/app.config.test b/tests/pkg/tweetnacl/app.config.test similarity index 100% rename from tests/pkg_tweetnacl/app.config.test rename to tests/pkg/tweetnacl/app.config.test diff --git a/tests/pkg_tweetnacl/main.c b/tests/pkg/tweetnacl/main.c similarity index 100% rename from tests/pkg_tweetnacl/main.c rename to tests/pkg/tweetnacl/main.c diff --git a/tests/pkg_tweetnacl/tests/01-run.py b/tests/pkg/tweetnacl/tests/01-run.py similarity index 100% rename from tests/pkg_tweetnacl/tests/01-run.py rename to tests/pkg/tweetnacl/tests/01-run.py diff --git a/tests/pkg_u8g2/Makefile b/tests/pkg/u8g2/Makefile similarity index 97% rename from tests/pkg_u8g2/Makefile rename to tests/pkg/u8g2/Makefile index c7148c9e64..14203ff5c1 100644 --- a/tests/pkg_u8g2/Makefile +++ b/tests/pkg/u8g2/Makefile @@ -1,4 +1,4 @@ -include ../Makefile.tests_common +include ../Makefile.pkg_common USEMODULE += ztimer USEMODULE += ztimer_usec diff --git a/tests/pkg_u8g2/Makefile.ci b/tests/pkg/u8g2/Makefile.ci similarity index 100% rename from tests/pkg_u8g2/Makefile.ci rename to tests/pkg/u8g2/Makefile.ci diff --git a/tests/pkg_u8g2/README.md b/tests/pkg/u8g2/README.md similarity index 100% rename from tests/pkg_u8g2/README.md rename to tests/pkg/u8g2/README.md diff --git a/tests/pkg_u8g2/main.c b/tests/pkg/u8g2/main.c similarity index 100% rename from tests/pkg_u8g2/main.c rename to tests/pkg/u8g2/main.c diff --git a/tests/pkg_u8g2/tests/01-run.py b/tests/pkg/u8g2/tests/01-run.py similarity index 100% rename from tests/pkg_u8g2/tests/01-run.py rename to tests/pkg/u8g2/tests/01-run.py diff --git a/tests/pkg_ubasic/Makefile b/tests/pkg/ubasic/Makefile similarity index 76% rename from tests/pkg_ubasic/Makefile rename to tests/pkg/ubasic/Makefile index f40baa0cba..f677106922 100644 --- a/tests/pkg_ubasic/Makefile +++ b/tests/pkg/ubasic/Makefile @@ -1,4 +1,4 @@ -include ../Makefile.tests_common +include ../Makefile.pkg_common USEPKG += ubasic USEMODULE += ubasic_tests diff --git a/tests/pkg_ubasic/Makefile.ci b/tests/pkg/ubasic/Makefile.ci similarity index 100% rename from tests/pkg_ubasic/Makefile.ci rename to tests/pkg/ubasic/Makefile.ci diff --git a/tests/pkg_ubasic/tests/01-run.py b/tests/pkg/ubasic/tests/01-run.py similarity index 100% rename from tests/pkg_ubasic/tests/01-run.py rename to tests/pkg/ubasic/tests/01-run.py diff --git a/tests/pkg_ucglib/Makefile b/tests/pkg/ucglib/Makefile similarity index 96% rename from tests/pkg_ucglib/Makefile rename to tests/pkg/ucglib/Makefile index d129aa2648..ff8f4993e7 100644 --- a/tests/pkg_ucglib/Makefile +++ b/tests/pkg/ucglib/Makefile @@ -1,4 +1,4 @@ -include ../Makefile.tests_common +include ../Makefile.pkg_common USEMODULE += xtimer diff --git a/tests/pkg_ucglib/Makefile.ci b/tests/pkg/ucglib/Makefile.ci similarity index 100% rename from tests/pkg_ucglib/Makefile.ci rename to tests/pkg/ucglib/Makefile.ci diff --git a/tests/pkg_ucglib/README.md b/tests/pkg/ucglib/README.md similarity index 100% rename from tests/pkg_ucglib/README.md rename to tests/pkg/ucglib/README.md diff --git a/tests/pkg_ucglib/logo.h b/tests/pkg/ucglib/logo.h similarity index 100% rename from tests/pkg_ucglib/logo.h rename to tests/pkg/ucglib/logo.h diff --git a/tests/pkg_ucglib/main.c b/tests/pkg/ucglib/main.c similarity index 100% rename from tests/pkg_ucglib/main.c rename to tests/pkg/ucglib/main.c diff --git a/tests/pkg_ucglib/tests/01-run.py b/tests/pkg/ucglib/tests/01-run.py similarity index 100% rename from tests/pkg_ucglib/tests/01-run.py rename to tests/pkg/ucglib/tests/01-run.py diff --git a/tests/pkg_umorse/Makefile b/tests/pkg/umorse/Makefile similarity index 86% rename from tests/pkg_umorse/Makefile rename to tests/pkg/umorse/Makefile index b3cfc76ee2..7c5ba4a4b8 100644 --- a/tests/pkg_umorse/Makefile +++ b/tests/pkg/umorse/Makefile @@ -1,4 +1,4 @@ -include ../Makefile.tests_common +include ../Makefile.pkg_common USEPKG += umorse diff --git a/tests/pkg_umorse/Makefile.ci b/tests/pkg/umorse/Makefile.ci similarity index 100% rename from tests/pkg_umorse/Makefile.ci rename to tests/pkg/umorse/Makefile.ci diff --git a/tests/pkg_umorse/README.md b/tests/pkg/umorse/README.md similarity index 100% rename from tests/pkg_umorse/README.md rename to tests/pkg/umorse/README.md diff --git a/tests/pkg_umorse/app.config.test b/tests/pkg/umorse/app.config.test similarity index 100% rename from tests/pkg_umorse/app.config.test rename to tests/pkg/umorse/app.config.test diff --git a/tests/pkg_umorse/main.c b/tests/pkg/umorse/main.c similarity index 100% rename from tests/pkg_umorse/main.c rename to tests/pkg/umorse/main.c diff --git a/tests/pkg_umorse/tests/01-run.py b/tests/pkg/umorse/tests/01-run.py similarity index 100% rename from tests/pkg_umorse/tests/01-run.py rename to tests/pkg/umorse/tests/01-run.py diff --git a/tests/pkg_utensor/Makefile b/tests/pkg/utensor/Makefile similarity index 89% rename from tests/pkg_utensor/Makefile rename to tests/pkg/utensor/Makefile index b7960fc777..1c7c906299 100644 --- a/tests/pkg_utensor/Makefile +++ b/tests/pkg/utensor/Makefile @@ -1,4 +1,4 @@ -include ../Makefile.tests_common +include ../Makefile.pkg_common USEPKG += utensor diff --git a/tests/pkg_utensor/Makefile.ci b/tests/pkg/utensor/Makefile.ci similarity index 100% rename from tests/pkg_utensor/Makefile.ci rename to tests/pkg/utensor/Makefile.ci diff --git a/tests/pkg_utensor/README.md b/tests/pkg/utensor/README.md similarity index 98% rename from tests/pkg_utensor/README.md rename to tests/pkg/utensor/README.md index 345a02d22e..d811ea2975 100644 --- a/tests/pkg_utensor/README.md +++ b/tests/pkg/utensor/README.md @@ -77,6 +77,6 @@ Here are the steps required to train a new model and update the C++ files in the 4. Generate the C++ model files that will be included later in the RIOT build: ``` - cd $RIOTBASE/tests/pkg_utensor + cd $RIOTBASE/tests/pkg/utensor utensor-cli convert /tmp/utensor-mnist-demo/mnist_model/deep_mlp.pb --target utensor --output-nodes=y_pred ``` diff --git a/tests/pkg_utensor/app.config.test b/tests/pkg/utensor/app.config.test similarity index 100% rename from tests/pkg_utensor/app.config.test rename to tests/pkg/utensor/app.config.test diff --git a/tests/pkg_utensor/digit b/tests/pkg/utensor/digit similarity index 100% rename from tests/pkg_utensor/digit rename to tests/pkg/utensor/digit diff --git a/tests/pkg_utensor/external_modules/models/Kconfig b/tests/pkg/utensor/external_modules/models/Kconfig similarity index 100% rename from tests/pkg_utensor/external_modules/models/Kconfig rename to tests/pkg/utensor/external_modules/models/Kconfig diff --git a/tests/pkg_utensor/external_modules/models/Makefile b/tests/pkg/utensor/external_modules/models/Makefile similarity index 100% rename from tests/pkg_utensor/external_modules/models/Makefile rename to tests/pkg/utensor/external_modules/models/Makefile diff --git a/tests/pkg_utensor/external_modules/models/Makefile.include b/tests/pkg/utensor/external_modules/models/Makefile.include similarity index 100% rename from tests/pkg_utensor/external_modules/models/Makefile.include rename to tests/pkg/utensor/external_modules/models/Makefile.include diff --git a/tests/pkg_utensor/external_modules/models/deep_mlp.cpp b/tests/pkg/utensor/external_modules/models/deep_mlp.cpp similarity index 100% rename from tests/pkg_utensor/external_modules/models/deep_mlp.cpp rename to tests/pkg/utensor/external_modules/models/deep_mlp.cpp diff --git a/tests/pkg_utensor/external_modules/models/deep_mlp.hpp b/tests/pkg/utensor/external_modules/models/deep_mlp.hpp similarity index 100% rename from tests/pkg_utensor/external_modules/models/deep_mlp.hpp rename to tests/pkg/utensor/external_modules/models/deep_mlp.hpp diff --git a/tests/pkg_utensor/external_modules/models/deep_mlp_weight.hpp b/tests/pkg/utensor/external_modules/models/deep_mlp_weight.hpp similarity index 100% rename from tests/pkg_utensor/external_modules/models/deep_mlp_weight.hpp rename to tests/pkg/utensor/external_modules/models/deep_mlp_weight.hpp diff --git a/tests/pkg_utensor/generate_digit.py b/tests/pkg/utensor/generate_digit.py similarity index 100% rename from tests/pkg_utensor/generate_digit.py rename to tests/pkg/utensor/generate_digit.py diff --git a/tests/pkg_utensor/main.cpp b/tests/pkg/utensor/main.cpp similarity index 100% rename from tests/pkg_utensor/main.cpp rename to tests/pkg/utensor/main.cpp diff --git a/tests/pkg_utensor/tests/01-run.py b/tests/pkg/utensor/tests/01-run.py similarity index 100% rename from tests/pkg_utensor/tests/01-run.py rename to tests/pkg/utensor/tests/01-run.py diff --git a/tests/pkg_uzlib/Makefile b/tests/pkg/uzlib/Makefile similarity index 84% rename from tests/pkg_uzlib/Makefile rename to tests/pkg/uzlib/Makefile index df6a4f3e13..1d266651fc 100644 --- a/tests/pkg_uzlib/Makefile +++ b/tests/pkg/uzlib/Makefile @@ -1,4 +1,4 @@ -include ../Makefile.tests_common +include ../Makefile.pkg_common # required packages USEPKG += uzlib diff --git a/tests/pkg_uzlib/Makefile.ci b/tests/pkg/uzlib/Makefile.ci similarity index 100% rename from tests/pkg_uzlib/Makefile.ci rename to tests/pkg/uzlib/Makefile.ci diff --git a/tests/pkg_uzlib/app.config.test b/tests/pkg/uzlib/app.config.test similarity index 100% rename from tests/pkg_uzlib/app.config.test rename to tests/pkg/uzlib/app.config.test diff --git a/tests/pkg_uzlib/main.c b/tests/pkg/uzlib/main.c similarity index 100% rename from tests/pkg_uzlib/main.c rename to tests/pkg/uzlib/main.c diff --git a/tests/pkg_uzlib/tests/01-run.py b/tests/pkg/uzlib/tests/01-run.py similarity index 100% rename from tests/pkg_uzlib/tests/01-run.py rename to tests/pkg/uzlib/tests/01-run.py diff --git a/tests/pkg_wolfcrypt-ed25519-verify/Makefile b/tests/pkg/wolfcrypt-ed25519-verify/Makefile similarity index 89% rename from tests/pkg_wolfcrypt-ed25519-verify/Makefile rename to tests/pkg/wolfcrypt-ed25519-verify/Makefile index 05f53a831c..5c676721ce 100644 --- a/tests/pkg_wolfcrypt-ed25519-verify/Makefile +++ b/tests/pkg/wolfcrypt-ed25519-verify/Makefile @@ -1,4 +1,4 @@ -include ../Makefile.tests_common +include ../Makefile.pkg_common # Ensure there is enough stack space CFLAGS += -DTHREAD_STACKSIZE_MAIN=THREAD_STACKSIZE_LARGE diff --git a/tests/pkg_wolfcrypt-ed25519-verify/Makefile.ci b/tests/pkg/wolfcrypt-ed25519-verify/Makefile.ci similarity index 100% rename from tests/pkg_wolfcrypt-ed25519-verify/Makefile.ci rename to tests/pkg/wolfcrypt-ed25519-verify/Makefile.ci diff --git a/tests/pkg_wolfcrypt-ed25519-verify/README.md b/tests/pkg/wolfcrypt-ed25519-verify/README.md similarity index 100% rename from tests/pkg_wolfcrypt-ed25519-verify/README.md rename to tests/pkg/wolfcrypt-ed25519-verify/README.md diff --git a/tests/pkg_wolfcrypt-ed25519-verify/main.c b/tests/pkg/wolfcrypt-ed25519-verify/main.c similarity index 100% rename from tests/pkg_wolfcrypt-ed25519-verify/main.c rename to tests/pkg/wolfcrypt-ed25519-verify/main.c diff --git a/tests/pkg_wolfcrypt-ed25519-verify/tests/01-run.py b/tests/pkg/wolfcrypt-ed25519-verify/tests/01-run.py similarity index 100% rename from tests/pkg_wolfcrypt-ed25519-verify/tests/01-run.py rename to tests/pkg/wolfcrypt-ed25519-verify/tests/01-run.py diff --git a/tests/pkg_wolfcrypt-ed25519-verify/tools/Makefile b/tests/pkg/wolfcrypt-ed25519-verify/tools/Makefile similarity index 100% rename from tests/pkg_wolfcrypt-ed25519-verify/tools/Makefile rename to tests/pkg/wolfcrypt-ed25519-verify/tools/Makefile diff --git a/tests/pkg_wolfcrypt-ed25519-verify/tools/ed25519_sign_msg.c b/tests/pkg/wolfcrypt-ed25519-verify/tools/ed25519_sign_msg.c similarity index 100% rename from tests/pkg_wolfcrypt-ed25519-verify/tools/ed25519_sign_msg.c rename to tests/pkg/wolfcrypt-ed25519-verify/tools/ed25519_sign_msg.c diff --git a/tests/pkg_wolfssl/Makefile b/tests/pkg/wolfssl/Makefile similarity index 96% rename from tests/pkg_wolfssl/Makefile rename to tests/pkg/wolfssl/Makefile index 07772e52c8..63dc246d1f 100644 --- a/tests/pkg_wolfssl/Makefile +++ b/tests/pkg/wolfssl/Makefile @@ -1,4 +1,4 @@ -include ../Makefile.tests_common +include ../Makefile.pkg_common # This is an optimized stack value based on testing, if you observe # a segmentation fault please increase this stack size. diff --git a/tests/pkg_wolfssl/Makefile.ci b/tests/pkg/wolfssl/Makefile.ci similarity index 100% rename from tests/pkg_wolfssl/Makefile.ci rename to tests/pkg/wolfssl/Makefile.ci diff --git a/tests/pkg_wolfssl/README.md b/tests/pkg/wolfssl/README.md similarity index 100% rename from tests/pkg_wolfssl/README.md rename to tests/pkg/wolfssl/README.md diff --git a/tests/pkg_wolfssl/main.c b/tests/pkg/wolfssl/main.c similarity index 100% rename from tests/pkg_wolfssl/main.c rename to tests/pkg/wolfssl/main.c diff --git a/tests/pkg_wolfssl/tests/01-run.py b/tests/pkg/wolfssl/tests/01-run.py similarity index 100% rename from tests/pkg_wolfssl/tests/01-run.py rename to tests/pkg/wolfssl/tests/01-run.py diff --git a/tests/pkg_yxml/Makefile b/tests/pkg/yxml/Makefile similarity index 69% rename from tests/pkg_yxml/Makefile rename to tests/pkg/yxml/Makefile index 8c8fd8e367..7309d8bf91 100644 --- a/tests/pkg_yxml/Makefile +++ b/tests/pkg/yxml/Makefile @@ -1,4 +1,4 @@ -include ../Makefile.tests_common +include ../Makefile.pkg_common USEPKG += yxml USEMODULE += embunit diff --git a/tests/pkg_yxml/Makefile.ci b/tests/pkg/yxml/Makefile.ci similarity index 100% rename from tests/pkg_yxml/Makefile.ci rename to tests/pkg/yxml/Makefile.ci diff --git a/tests/pkg_yxml/app.config.test b/tests/pkg/yxml/app.config.test similarity index 100% rename from tests/pkg_yxml/app.config.test rename to tests/pkg/yxml/app.config.test diff --git a/tests/pkg_yxml/main.c b/tests/pkg/yxml/main.c similarity index 100% rename from tests/pkg_yxml/main.c rename to tests/pkg/yxml/main.c diff --git a/tests/pkg_yxml/tests/01-run.py b/tests/pkg/yxml/tests/01-run.py similarity index 100% rename from tests/pkg_yxml/tests/01-run.py rename to tests/pkg/yxml/tests/01-run.py diff --git a/tests/pkg_flashdb_mtd/kvdb_basic_sample.c b/tests/pkg_flashdb_mtd/kvdb_basic_sample.c deleted file mode 120000 index f4f023e594..0000000000 --- a/tests/pkg_flashdb_mtd/kvdb_basic_sample.c +++ /dev/null @@ -1 +0,0 @@ -../pkg_flashdb_vfs/kvdb_basic_sample.c \ No newline at end of file diff --git a/tests/pkg_flashdb_mtd/kvdb_type_blob_sample.c b/tests/pkg_flashdb_mtd/kvdb_type_blob_sample.c deleted file mode 120000 index 11c3209373..0000000000 --- a/tests/pkg_flashdb_mtd/kvdb_type_blob_sample.c +++ /dev/null @@ -1 +0,0 @@ -../pkg_flashdb_vfs/kvdb_type_blob_sample.c \ No newline at end of file diff --git a/tests/pkg_flashdb_mtd/kvdb_type_string_sample.c b/tests/pkg_flashdb_mtd/kvdb_type_string_sample.c deleted file mode 120000 index 44cc225516..0000000000 --- a/tests/pkg_flashdb_mtd/kvdb_type_string_sample.c +++ /dev/null @@ -1 +0,0 @@ -../pkg_flashdb_vfs/kvdb_type_string_sample.c \ No newline at end of file diff --git a/tests/pkg_flashdb_mtd/main.c b/tests/pkg_flashdb_mtd/main.c deleted file mode 120000 index f5b2da9970..0000000000 --- a/tests/pkg_flashdb_mtd/main.c +++ /dev/null @@ -1 +0,0 @@ -../pkg_flashdb_vfs/main.c \ No newline at end of file diff --git a/tests/pkg_flashdb_mtd/tsdb_sample.c b/tests/pkg_flashdb_mtd/tsdb_sample.c deleted file mode 120000 index 232bdff554..0000000000 --- a/tests/pkg_flashdb_mtd/tsdb_sample.c +++ /dev/null @@ -1 +0,0 @@ -../pkg_flashdb_vfs/tsdb_sample.c \ No newline at end of file diff --git a/tests/pkg_tinyusb_cdc_acm_stdio/main.c b/tests/pkg_tinyusb_cdc_acm_stdio/main.c deleted file mode 120000 index 121c7ff68e..0000000000 --- a/tests/pkg_tinyusb_cdc_acm_stdio/main.c +++ /dev/null @@ -1 +0,0 @@ -../usbus_cdc_acm_stdio/main.c \ No newline at end of file diff --git a/tests/usbus_msc/README.md b/tests/usbus_msc/README.md index 001396f5e3..21dd32f163 100644 --- a/tests/usbus_msc/README.md +++ b/tests/usbus_msc/README.md @@ -16,7 +16,7 @@ variables `USB_VID` and `USB_PID` in the makefile or at the command line, for example ``` -USB_VID=1234 USB_PID=5678 BOARD=... make -C tests/pkg_tinyusb_cdc_msc +USB_VID=1234 USB_PID=5678 BOARD=... make -C tests/pkg/tinyusb_cdc_msc ``` ## Usage