diff --git a/.murdock b/.murdock index 7fcab56f82..3cd47cad45 100755 --- a/.murdock +++ b/.murdock @@ -2,7 +2,11 @@ : ${TEST_BOARDS_AVAILABLE:="esp32-wroom-32 samr21-xpro"} : ${TEST_BOARDS_LLVM_COMPILE:="iotlab-m3 native nrf52dk mulle nucleo-f401re samr21-xpro slstk3402a"} -: ${TEST_KCONFIG_samr21_xpro:="examples/hello-world tests/periph_*"} +: ${TEST_KCONFIG_samr21_xpro:="examples/hello-world tests/periph_* +tests/driver_ad7746 tests/driver_adcxx1c tests/driver_ads101x tests/driver_adt101x +tests/driver_adt7310 tests/driver_adxl345 tests/driver_aip31068 tests/driver_apa102 +tests/driver_apds99xx tests/driver_apds99xx_full tests/driver_at tests/driver_at24cxxx +tests/driver_at24mac tests/driver_at25xxx tests/driver_at30tse75x tests/driver_ata8520e"} : ${TEST_KCONFIG_native:="examples/hello-world tests/periph_*"} export RIOT_CI_BUILD=1 diff --git a/tests/driver_ad7746/app.config.test b/tests/driver_ad7746/app.config.test new file mode 100644 index 0000000000..96cdd8614a --- /dev/null +++ b/tests/driver_ad7746/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_AD7746=y +CONFIG_MODULE_XTIMER=y diff --git a/tests/driver_adcxx1c/app.config.test b/tests/driver_adcxx1c/app.config.test new file mode 100644 index 0000000000..038dc8fd2d --- /dev/null +++ b/tests/driver_adcxx1c/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_ADC081C=y +CONFIG_MODULE_XTIMER=y diff --git a/tests/driver_ads101x/app.config.test b/tests/driver_ads101x/app.config.test new file mode 100644 index 0000000000..c97a99d4ac --- /dev/null +++ b/tests/driver_ads101x/app.config.test @@ -0,0 +1,3 @@ +# this file enables modules defined in Kconfig. Do not use this file for +# application configuration. This is only needed during migration. +CONFIG_MODULE_ADS101X=y diff --git a/tests/driver_adt7310/app.config.test b/tests/driver_adt7310/app.config.test new file mode 100644 index 0000000000..da5e1f1f9d --- /dev/null +++ b/tests/driver_adt7310/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_ADT7310=y +CONFIG_MODULE_XTIMER=y diff --git a/tests/driver_adxl345/app.config.test b/tests/driver_adxl345/app.config.test new file mode 100644 index 0000000000..f5fd1c5715 --- /dev/null +++ b/tests/driver_adxl345/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_XTIMER=y +CONFIG_MODULE_ADXL345=y diff --git a/tests/driver_aip31068/app.config.test b/tests/driver_aip31068/app.config.test new file mode 100644 index 0000000000..ddd3e24aca --- /dev/null +++ b/tests/driver_aip31068/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_AIP31068=y +CONFIG_MODULE_XTIMER=y +CONFIG_MODULE_SHELL=y diff --git a/tests/driver_apa102/app.config.test b/tests/driver_apa102/app.config.test new file mode 100644 index 0000000000..7b857d461a --- /dev/null +++ b/tests/driver_apa102/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_APA102=y +CONFIG_MODULE_COLOR=y +CONFIG_MODULE_XTIMER=y diff --git a/tests/driver_apds99xx/app.config.test b/tests/driver_apds99xx/app.config.test new file mode 100644 index 0000000000..7d9b6c8278 --- /dev/null +++ b/tests/driver_apds99xx/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_APDS9960=y +CONFIG_MODULE_XTIMER=y diff --git a/tests/driver_apds99xx_full/app.config.test b/tests/driver_apds99xx_full/app.config.test new file mode 100644 index 0000000000..1f5bc62048 --- /dev/null +++ b/tests/driver_apds99xx_full/app.config.test @@ -0,0 +1,6 @@ +# 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_APDS9960=y +CONFIG_MODULE_APDS99XX_FULL=y +CONFIG_MODULE_CORE_THREAD_FLAGS=y diff --git a/tests/driver_at/app.config.test b/tests/driver_at/app.config.test new file mode 100644 index 0000000000..74fa68728a --- /dev/null +++ b/tests/driver_at/app.config.test @@ -0,0 +1,20 @@ +# this file enables modules defined in Kconfig. Do not use this file for +# application configuration. This is only needed during migration. +# dependencies of AT driver +CONFIG_MODULE_ISRPIPE=y +CONFIG_MODULE_ISRPIPE_READ_TIMEOUT=y + +CONFIG_MODULE_AT=y + +# support URC processing +CONFIG_MODULE_AT_URC=y + +# enable event thread to process URCs upon arrival +CONFIG_MODULE_EVENT=y +CONFIG_MODULE_EVENT_THREAD=y + +# support URC upon arrival +CONFIG_MODULE_AT_URC_ISR=y + +# enable shell +CONFIG_MODULE_SHELL=y diff --git a/tests/driver_at24cxxx/app.config.test b/tests/driver_at24cxxx/app.config.test new file mode 100644 index 0000000000..fc4739be58 --- /dev/null +++ b/tests/driver_at24cxxx/app.config.test @@ -0,0 +1,3 @@ +# this file enables modules defined in Kconfig. Do not use this file for +# application configuration. This is only needed during migration. +CONFIG_MODULE_AT24C256=y diff --git a/tests/driver_at24mac/app.config.test b/tests/driver_at24mac/app.config.test new file mode 100644 index 0000000000..d9f9a2b4f1 --- /dev/null +++ b/tests/driver_at24mac/app.config.test @@ -0,0 +1,3 @@ +# this file enables modules defined in Kconfig. Do not use this file for +# application configuration. This is only needed during migration. +CONFIG_MODULE_AT24MAC=y diff --git a/tests/driver_at25xxx/app.config.test b/tests/driver_at25xxx/app.config.test new file mode 100644 index 0000000000..528faa94d5 --- /dev/null +++ b/tests/driver_at25xxx/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_AT25XXX=y +CONFIG_MODULE_EMBUNIT=y diff --git a/tests/driver_at30tse75x/app.config.test b/tests/driver_at30tse75x/app.config.test new file mode 100644 index 0000000000..2fe7cd3077 --- /dev/null +++ b/tests/driver_at30tse75x/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_AT30TSE75X=y +CONFIG_MODULE_SHELL=y +CONFIG_MODULE_SHELL_COMMANDS=y diff --git a/tests/driver_ata8520e/app.config.test b/tests/driver_ata8520e/app.config.test new file mode 100644 index 0000000000..08023d550f --- /dev/null +++ b/tests/driver_ata8520e/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_ATA8520E=y +CONFIG_MODULE_SHELL=y +CONFIG_MODULE_SHELL_COMMANDS=y