diff --git a/.murdock b/.murdock index 3f55f40018..825f0a5d42 100755 --- a/.murdock +++ b/.murdock @@ -16,8 +16,12 @@ tests/driver_b* tests/driver_ccs811 tests/driver_ccs811_full tests/driver_dcf77 tests/driver_dfplayer tests/driver_dht tests/driver_ds18 tests/driver_ds75lx tests/driver_ds1307 tests/driver_ds3231 tests/driver_ds3234 tests/driver_dsp0401 tests/driver_dynamixel tests/driver_edbg_eui tests/driver_f* tests/driver_g* -tests/driver_h* tests/driver_i* tests/driver_j* tests/driver_my9221 -tests/driver_o* tests/driver_p* tests/driver_q* tests/driver_r*"} +tests/driver_h* tests/driver_i* tests/driver_j* tests/driver_l* +tests/driver_mag3110 tests/driver_mhz19 tests/driver_mma7660 +tests/driver_motor_driver tests/driver_mpl3115a2 tests/driver_mpu9x50 +tests/driver_mq3 tests/driver_my9221 tests/driver_nvram_spi tests/mtd_flashpage +tests/mtd_mapper tests/driver_o* tests/driver_p* tests/driver_q* +tests/driver_r*"} : ${TEST_KCONFIG_native:="examples/hello-world tests/periph_*"} export RIOT_CI_BUILD=1 diff --git a/tests/driver_l3g4200d/app.config.test b/tests/driver_l3g4200d/app.config.test new file mode 100644 index 0000000000..7761831e46 --- /dev/null +++ b/tests/driver_l3g4200d/app.config.test @@ -0,0 +1,4 @@ +# this file enables modules defined in Kconfig. Do not use this file for +# application configuration. This is only needed during migration. +CONFIG_MODULE_L3G4200D=y +CONFIG_MODULE_XTIMER=y diff --git a/tests/driver_lc709203f/app.config.test b/tests/driver_lc709203f/app.config.test new file mode 100644 index 0000000000..979a86c1b4 --- /dev/null +++ b/tests/driver_lc709203f/app.config.test @@ -0,0 +1,4 @@ +# this file enables modules defined in Kconfig. Do not use this file for +# application configuration. This is only needed during migration. +CONFIG_MODULE_LC709203F=y +CONFIG_MODULE_XTIMER=y diff --git a/tests/driver_lis2dh12/app.config.test b/tests/driver_lis2dh12/app.config.test new file mode 100644 index 0000000000..0f24ddbf00 --- /dev/null +++ b/tests/driver_lis2dh12/app.config.test @@ -0,0 +1,9 @@ +# this file enables modules defined in Kconfig. Do not use this file for +# application configuration. This is only needed during migration. +CONFIG_MODULE_FMT=y +CONFIG_MODULE_XTIMER=y +CONFIG_MODULE_LIS2DH12=y +CONFIG_MODULE_LIS2DH12_SPI=y + +# for using lis2dh12 with interrupt function +CONFIG_MODULE_LIS2DH12_INT=y diff --git a/tests/driver_lis3dh/app.config.test b/tests/driver_lis3dh/app.config.test new file mode 100644 index 0000000000..21a787e8f0 --- /dev/null +++ b/tests/driver_lis3dh/app.config.test @@ -0,0 +1,5 @@ +# this file enables modules defined in Kconfig. Do not use this file for +# application configuration. This is only needed during migration. +CONFIG_MODULE_PERIPH_GPIO_IRQ=y +CONFIG_MODULE_LIS3DH=y +CONFIG_MODULE_XTIMER=y diff --git a/tests/driver_lis3mdl/app.config.test b/tests/driver_lis3mdl/app.config.test new file mode 100644 index 0000000000..7bc65954ba --- /dev/null +++ b/tests/driver_lis3mdl/app.config.test @@ -0,0 +1,4 @@ +# this file enables modules defined in Kconfig. Do not use this file for +# application configuration. This is only needed during migration. +CONFIG_MODULE_LIS3MDL=y +CONFIG_MODULE_XTIMER=y diff --git a/tests/driver_lpd8808/app.config.test b/tests/driver_lpd8808/app.config.test new file mode 100644 index 0000000000..743d7c0f48 --- /dev/null +++ b/tests/driver_lpd8808/app.config.test @@ -0,0 +1,4 @@ +# this file enables modules defined in Kconfig. Do not use this file for +# application configuration. This is only needed during migration. +CONFIG_MODULE_LPD8808=y +CONFIG_MODULE_XTIMER=y diff --git a/tests/driver_lpsxxx/app.config.test b/tests/driver_lpsxxx/app.config.test new file mode 100644 index 0000000000..6c29310b0a --- /dev/null +++ b/tests/driver_lpsxxx/app.config.test @@ -0,0 +1,4 @@ +# this file enables modules defined in Kconfig. Do not use this file for +# application configuration. This is only needed during migration. +CONFIG_MODULE_LPS331AP=y +CONFIG_MODULE_XTIMER=y diff --git a/tests/driver_lsm303dlhc/app.config.test b/tests/driver_lsm303dlhc/app.config.test new file mode 100644 index 0000000000..c51566c9f6 --- /dev/null +++ b/tests/driver_lsm303dlhc/app.config.test @@ -0,0 +1,4 @@ +# this file enables modules defined in Kconfig. Do not use this file for +# application configuration. This is only needed during migration. +CONFIG_MODULE_LSM303DLHC=y +CONFIG_MODULE_XTIMER=y diff --git a/tests/driver_lsm6dsl/app.config.test b/tests/driver_lsm6dsl/app.config.test new file mode 100644 index 0000000000..341a6372fd --- /dev/null +++ b/tests/driver_lsm6dsl/app.config.test @@ -0,0 +1,4 @@ +# this file enables modules defined in Kconfig. Do not use this file for +# application configuration. This is only needed during migration. +CONFIG_MODULE_LSM6DSL=y +CONFIG_MODULE_XTIMER=y diff --git a/tests/driver_ltc4150/app.config.test b/tests/driver_ltc4150/app.config.test new file mode 100644 index 0000000000..970177b103 --- /dev/null +++ b/tests/driver_ltc4150/app.config.test @@ -0,0 +1,5 @@ +# this file enables modules defined in Kconfig. Do not use this file for +# application configuration. This is only needed during migration. +CONFIG_MODULE_FMT=y +CONFIG_MODULE_FMT_TABLE=y +CONFIG_MODULE_LTC4150=y diff --git a/tests/driver_mag3110/app.config.test b/tests/driver_mag3110/app.config.test new file mode 100644 index 0000000000..00013faf95 --- /dev/null +++ b/tests/driver_mag3110/app.config.test @@ -0,0 +1,4 @@ +# this file enables modules defined in Kconfig. Do not use this file for +# application configuration. This is only needed during migration. +CONFIG_MODULE_MAG3110=y +CONFIG_MODULE_XTIMER=y diff --git a/tests/driver_mhz19/app.config.test b/tests/driver_mhz19/app.config.test new file mode 100644 index 0000000000..c53768432f --- /dev/null +++ b/tests/driver_mhz19/app.config.test @@ -0,0 +1,7 @@ +# this file enables modules defined in Kconfig. Do not use this file for +# application configuration. This is only needed during migration. +CONFIG_MODULE_XTIMER=y + +# Use UART mode by default +CONFIG_MODULE_MHZ19_UART=y +#CONFIG_MODULE_MHZ19_PWM=y diff --git a/tests/driver_mma7660/app.config.test b/tests/driver_mma7660/app.config.test new file mode 100644 index 0000000000..e111f52b9d --- /dev/null +++ b/tests/driver_mma7660/app.config.test @@ -0,0 +1,4 @@ +# this file enables modules defined in Kconfig. Do not use this file for +# application configuration. This is only needed during migration. +CONFIG_MODULE_MMA7660=y +CONFIG_MODULE_XTIMER=y diff --git a/tests/driver_mma8x5x/app.config.test b/tests/driver_mma8x5x/app.config.test new file mode 100644 index 0000000000..f9d324d3c6 --- /dev/null +++ b/tests/driver_mma8x5x/app.config.test @@ -0,0 +1,4 @@ +# this file enables modules defined in Kconfig. Do not use this file for +# application configuration. This is only needed during migration. +CONFIG_MODULE_MMA8X5X=y +CONFIG_MODULE_XTIMER=y diff --git a/tests/driver_motor_driver/app.config.test b/tests/driver_motor_driver/app.config.test new file mode 100644 index 0000000000..da65f95c55 --- /dev/null +++ b/tests/driver_motor_driver/app.config.test @@ -0,0 +1,7 @@ +# this file enables modules defined in Kconfig. Do not use this file for +# application configuration. This is only needed during migration. +CONFIG_MODULE_MOTOR_DRIVER=y +CONFIG_MODULE_SHELL=y +CONFIG_MODULE_SHELL_COMMANDS=y +CONFIG_MODULE_XTIMER=y +CONFIG_MODULE_PERIPH_QDEC=y diff --git a/tests/driver_mpl3115a2/app.config.test b/tests/driver_mpl3115a2/app.config.test new file mode 100644 index 0000000000..528ec2d1b8 --- /dev/null +++ b/tests/driver_mpl3115a2/app.config.test @@ -0,0 +1,4 @@ +# this file enables modules defined in Kconfig. Do not use this file for +# application configuration. This is only needed during migration. +CONFIG_MODULE_MPL3115A2=y +CONFIG_MODULE_XTIMER=y diff --git a/tests/driver_mpu9x50/app.config.test b/tests/driver_mpu9x50/app.config.test new file mode 100644 index 0000000000..7ae4813113 --- /dev/null +++ b/tests/driver_mpu9x50/app.config.test @@ -0,0 +1,4 @@ +# this file enables modules defined in Kconfig. Do not use this file for +# application configuration. This is only needed during migration. +CONFIG_MODULE_MPU9150=y +CONFIG_MODULE_XTIMER=y diff --git a/tests/driver_mq3/app.config.test b/tests/driver_mq3/app.config.test new file mode 100644 index 0000000000..420a16be0a --- /dev/null +++ b/tests/driver_mq3/app.config.test @@ -0,0 +1,4 @@ +# this file enables modules defined in Kconfig. Do not use this file for +# application configuration. This is only needed during migration. +CONFIG_MODULE_MQ3=y +CONFIG_MODULE_XTIMER=y diff --git a/tests/driver_nvram_spi/app.config.test b/tests/driver_nvram_spi/app.config.test new file mode 100644 index 0000000000..a56d76d65f --- /dev/null +++ b/tests/driver_nvram_spi/app.config.test @@ -0,0 +1,4 @@ +# this file enables modules defined in Kconfig. Do not use this file for +# application configuration. This is only needed during migration. +CONFIG_MODULE_NVRAM_SPI=y +CONFIG_MODULE_XTIMER=y diff --git a/tests/mtd_flashpage/app.config.test b/tests/mtd_flashpage/app.config.test new file mode 100644 index 0000000000..a6bff3edf4 --- /dev/null +++ b/tests/mtd_flashpage/app.config.test @@ -0,0 +1,5 @@ +# this file enables modules defined in Kconfig. Do not use this file for +# application configuration. This is only needed during migration. +CONFIG_MODULE_TEST_UTILS_INTERACTIVE_SYNC=y +CONFIG_MODULE_MTD_FLASHPAGE=y +CONFIG_MODULE_EMBUNIT=y diff --git a/tests/mtd_mapper/app.config.test b/tests/mtd_mapper/app.config.test new file mode 100644 index 0000000000..b3c52ae0ca --- /dev/null +++ b/tests/mtd_mapper/app.config.test @@ -0,0 +1,5 @@ +# this file enables modules defined in Kconfig. Do not use this file for +# application configuration. This is only needed during migration. +CONFIG_MODULE_TEST_UTILS_INTERACTIVE_SYNC=y +CONFIG_MODULE_MTD_MAPPER=y +CONFIG_MODULE_EMBUNIT=y