mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
tests/drivers: add Kconfig configuration files and to CI test
This commit is contained in:
parent
93dad87fbf
commit
72fda0679a
6
.murdock
6
.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
|
||||
|
4
tests/driver_ad7746/app.config.test
Normal file
4
tests/driver_ad7746/app.config.test
Normal file
@ -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
|
4
tests/driver_adcxx1c/app.config.test
Normal file
4
tests/driver_adcxx1c/app.config.test
Normal file
@ -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
|
3
tests/driver_ads101x/app.config.test
Normal file
3
tests/driver_ads101x/app.config.test
Normal file
@ -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
|
4
tests/driver_adt7310/app.config.test
Normal file
4
tests/driver_adt7310/app.config.test
Normal file
@ -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
|
4
tests/driver_adxl345/app.config.test
Normal file
4
tests/driver_adxl345/app.config.test
Normal file
@ -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
|
5
tests/driver_aip31068/app.config.test
Normal file
5
tests/driver_aip31068/app.config.test
Normal file
@ -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
|
5
tests/driver_apa102/app.config.test
Normal file
5
tests/driver_apa102/app.config.test
Normal file
@ -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
|
5
tests/driver_apds99xx/app.config.test
Normal file
5
tests/driver_apds99xx/app.config.test
Normal file
@ -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
|
6
tests/driver_apds99xx_full/app.config.test
Normal file
6
tests/driver_apds99xx_full/app.config.test
Normal file
@ -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
|
20
tests/driver_at/app.config.test
Normal file
20
tests/driver_at/app.config.test
Normal file
@ -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
|
3
tests/driver_at24cxxx/app.config.test
Normal file
3
tests/driver_at24cxxx/app.config.test
Normal file
@ -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
|
3
tests/driver_at24mac/app.config.test
Normal file
3
tests/driver_at24mac/app.config.test
Normal file
@ -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
|
4
tests/driver_at25xxx/app.config.test
Normal file
4
tests/driver_at25xxx/app.config.test
Normal file
@ -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
|
5
tests/driver_at30tse75x/app.config.test
Normal file
5
tests/driver_at30tse75x/app.config.test
Normal file
@ -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
|
5
tests/driver_ata8520e/app.config.test
Normal file
5
tests/driver_ata8520e/app.config.test
Normal file
@ -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
|
Loading…
Reference in New Issue
Block a user