diff --git a/tests/can_trx/main.c b/tests/can_trx/main.c index d1ae119281..89e211066f 100644 --- a/tests/can_trx/main.c +++ b/tests/can_trx/main.c @@ -21,8 +21,8 @@ #include #include +#include "kernel_defines.h" #include "can/can_trx.h" - #include "shell.h" #ifdef MODULE_TJA1042 diff --git a/tests/driver_dynamixel/main.c b/tests/driver_dynamixel/main.c index 12a808fd7b..5acbc786e1 100644 --- a/tests/driver_dynamixel/main.c +++ b/tests/driver_dynamixel/main.c @@ -11,6 +11,7 @@ #include "stdio_uart.h" #include "board.h" #include "periph/gpio.h" +#include "container.h" #include #include diff --git a/tests/driver_feetech/main.c b/tests/driver_feetech/main.c index d0f04f46ef..d7d3e0496e 100644 --- a/tests/driver_feetech/main.c +++ b/tests/driver_feetech/main.c @@ -9,6 +9,7 @@ #include "feetech.h" #include "shell.h" #include "stdio_uart.h" +#include "container.h" #include #include diff --git a/tests/driver_sdcard_spi/main.c b/tests/driver_sdcard_spi/main.c index dc49501356..30b2fe52dc 100644 --- a/tests/driver_sdcard_spi/main.c +++ b/tests/driver_sdcard_spi/main.c @@ -22,6 +22,7 @@ #include "sdcard_spi_internal.h" #include "sdcard_spi_params.h" #include "fmt.h" +#include "container.h" #include #include #include diff --git a/tests/driver_sht1x/main.c b/tests/driver_sht1x/main.c index 9524469d14..80cb0d9039 100644 --- a/tests/driver_sht1x/main.c +++ b/tests/driver_sht1x/main.c @@ -20,9 +20,11 @@ */ #include +#include #include "shell.h" #include "sht1x_params.h" +#include "container.h" #define SHT1X_NUM ARRAY_SIZE(sht1x_params) extern sht1x_dev_t sht1x_devs[SHT1X_NUM]; diff --git a/tests/gnrc_dhcpv6_client_6lbr/main.c b/tests/gnrc_dhcpv6_client_6lbr/main.c index e0eeb3ec91..8ca9ce4d1c 100644 --- a/tests/gnrc_dhcpv6_client_6lbr/main.c +++ b/tests/gnrc_dhcpv6_client_6lbr/main.c @@ -13,6 +13,7 @@ * @author Martine Lenders */ +#include #include "shell.h" int main(void) diff --git a/tests/gnrc_dhcpv6_client_stateless/main.c b/tests/gnrc_dhcpv6_client_stateless/main.c index e0eeb3ec91..8ca9ce4d1c 100644 --- a/tests/gnrc_dhcpv6_client_stateless/main.c +++ b/tests/gnrc_dhcpv6_client_stateless/main.c @@ -13,6 +13,7 @@ * @author Martine Lenders */ +#include #include "shell.h" int main(void) diff --git a/tests/gnrc_dhcpv6_relay/main.c b/tests/gnrc_dhcpv6_relay/main.c index 6002f3a272..45e8a481bd 100644 --- a/tests/gnrc_dhcpv6_relay/main.c +++ b/tests/gnrc_dhcpv6_relay/main.c @@ -13,6 +13,7 @@ * @author Martine Lenders */ +#include #include "shell.h" int main(void) diff --git a/tests/periph_flashpage_unittest/main.c b/tests/periph_flashpage_unittest/main.c index 380793e287..6e3d231e12 100644 --- a/tests/periph_flashpage_unittest/main.c +++ b/tests/periph_flashpage_unittest/main.c @@ -23,6 +23,7 @@ #include "cpu.h" #include "embUnit.h" #include "embUnit/embUnit.h" +#include "modules.h" /* need to define these values before including the header */ #ifndef FLASHPAGE_SIZE diff --git a/tests/phydat_dump/main.c b/tests/phydat_dump/main.c index 8ce6d1ff22..f4225b78c7 100644 --- a/tests/phydat_dump/main.c +++ b/tests/phydat_dump/main.c @@ -19,6 +19,7 @@ #include #include "phydat.h" +#include "container.h" typedef struct { phydat_t dat; diff --git a/tests/pkg_fatfs/main.c b/tests/pkg_fatfs/main.c index 90eeb452a1..9c35925aa9 100644 --- a/tests/pkg_fatfs/main.c +++ b/tests/pkg_fatfs/main.c @@ -24,6 +24,7 @@ #include "mtd.h" #include "fatfs_diskio_mtd.h" #include "shell.h" +#include "container.h" #include #include #include diff --git a/tests/pkg_tinycbor/main.c b/tests/pkg_tinycbor/main.c index 546d701fdf..bd198001a4 100644 --- a/tests/pkg_tinycbor/main.c +++ b/tests/pkg_tinycbor/main.c @@ -25,6 +25,7 @@ #include "embUnit/embUnit.h" #include "fmt.h" #include "cbor.h" +#include "container.h" const char *tests[] = { "00", /* 0 */ diff --git a/tests/unittests/tests-clif/tests-clif.c b/tests/unittests/tests-clif/tests-clif.c index f2e7177916..105ec5e592 100644 --- a/tests/unittests/tests-clif/tests-clif.c +++ b/tests/unittests/tests-clif/tests-clif.c @@ -9,6 +9,7 @@ #include #include "embUnit.h" #include "tests-clif.h" +#include "container.h" #include "clif.h" diff --git a/tests/unittests/tests-core/tests-core-macros.c b/tests/unittests/tests-core/tests-core-macros.c index 1170d6b9b8..76b5b4554f 100644 --- a/tests/unittests/tests-core/tests-core-macros.c +++ b/tests/unittests/tests-core/tests-core-macros.c @@ -6,6 +6,7 @@ * directory for more details. */ +#include #include #include #include "embUnit.h" diff --git a/tests/unittests/tests-core/tests-core-priority-queue.c b/tests/unittests/tests-core/tests-core-priority-queue.c index f13bc54354..481a67f3ee 100644 --- a/tests/unittests/tests-core/tests-core-priority-queue.c +++ b/tests/unittests/tests-core/tests-core-priority-queue.c @@ -7,6 +7,8 @@ */ #include +#include "container.h" + #include "embUnit.h" #include "priority_queue.h" diff --git a/tests/unittests/tests-sht1x/tests-sht1x.c b/tests/unittests/tests-sht1x/tests-sht1x.c index 9b45db0801..8eccf50685 100644 --- a/tests/unittests/tests-sht1x/tests-sht1x.c +++ b/tests/unittests/tests-sht1x/tests-sht1x.c @@ -8,6 +8,7 @@ #include #include +#include "container.h" #include "embUnit/embUnit.h" #include "tests-sht1x.h" diff --git a/tests/unittests/tests-uri_parser/tests-uri_parser.c b/tests/unittests/tests-uri_parser/tests-uri_parser.c index 77e58e7a7b..3b2761848d 100644 --- a/tests/unittests/tests-uri_parser/tests-uri_parser.c +++ b/tests/unittests/tests-uri_parser/tests-uri_parser.c @@ -14,6 +14,7 @@ #include #include +#include "container.h" #include "embUnit.h" #include "uri_parser.h"