sanitycheck: inclusive language

change whitelist -> allow.

Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
Anas Nashif 2020-08-26 11:28:25 -04:00
commit dca317c730
237 changed files with 433 additions and 434 deletions

View file

@ -203,14 +203,14 @@ explained in this document.
tests: tests:
bluetooth.gatt: bluetooth.gatt:
build_only: true build_only: true
platform_whitelist: qemu_cortex_m3 qemu_x86 platform_allow: qemu_cortex_m3 qemu_x86
tags: bluetooth tags: bluetooth
bluetooth.gatt.br: bluetooth.gatt.br:
build_only: true build_only: true
extra_args: CONF_FILE="prj_br.conf" extra_args: CONF_FILE="prj_br.conf"
filter: not CONFIG_DEBUG filter: not CONFIG_DEBUG
platform_exclude: up_squared platform_exclude: up_squared
platform_whitelist: qemu_cortex_m3 qemu_x86 platform_allow: qemu_cortex_m3 qemu_x86
tags: bluetooth tags: bluetooth
@ -298,22 +298,22 @@ timeout: <number of seconds>
Length of time to run test in QEMU before automatically killing it. Length of time to run test in QEMU before automatically killing it.
Default to 60 seconds. Default to 60 seconds.
arch_whitelist: <list of arches, such as x86, arm, arc> arch_allow: <list of arches, such as x86, arm, arc>
Set of architectures that this test case should only be run for. Set of architectures that this test case should only be run for.
arch_exclude: <list of arches, such as x86, arm, arc> arch_exclude: <list of arches, such as x86, arm, arc>
Set of architectures that this test case should not run on. Set of architectures that this test case should not run on.
platform_whitelist: <list of platforms> platform_allow: <list of platforms>
Set of platforms that this test case should only be run for. Do not use Set of platforms that this test case should only be run for. Do not use
this option to limit testing or building in CI due to time or resource this option to limit testing or building in CI due to time or resource
constraints, this option should only be used if the test or sample can constraints, this option should only be used if the test or sample can
only be run on the whitelisted platform and nothing else. only be run on the allowed platform and nothing else.
integration_platforms: <YML list of platforms/boards> integration_platforms: <YML list of platforms/boards>
This option limits the scope to the listed platforms when sanitycheck is This option limits the scope to the listed platforms when sanitycheck is
invoked with the --integration option. Use this instead of invoked with the --integration option. Use this instead of
platform_whitelist if the goal is to limit scope due to timing or platform_allow if the goal is to limit scope due to timing or
resource constraints. resource constraints.
platform_exclude: <list of platforms> platform_exclude: <list of platforms>
@ -437,7 +437,7 @@ filter: <expression>
not (right associative) not (right associative)
all comparison operators (non-associative) all comparison operators (non-associative)
arch_whitelist, arch_exclude, platform_whitelist, platform_exclude arch_allow, arch_exclude, platform_allow, platform_exclude
are all syntactic sugar for these expressions. For instance are all syntactic sugar for these expressions. For instance
arch_exclude = x86 arc arch_exclude = x86 arc

View file

@ -8,6 +8,6 @@ tests:
type: one_line type: one_line
regex: regex:
- "Hello World! (.*)" - "Hello World! (.*)"
platform_whitelist: qemu_cortex_m3 mps2_an385 sam_e70_xplained platform_allow: qemu_cortex_m3 mps2_an385 sam_e70_xplained
tags: linker tags: linker
extra_sections: _SRAM2_RODATA_SECTION_NAME _SRAM_TEXT_SECTION_NAME _SRAM_RODATA_SECTION_NAME _SRAM_DATA_SECTION_NAME _CUSTOM_SECTION_NAME2 extra_sections: _SRAM2_RODATA_SECTION_NAME _SRAM_TEXT_SECTION_NAME _SRAM_RODATA_SECTION_NAME _SRAM_DATA_SECTION_NAME _CUSTOM_SECTION_NAME2

View file

@ -4,7 +4,7 @@ sample:
tests: tests:
sample.app_dev.out_of_tree: sample.app_dev.out_of_tree:
tags: out_of_tree tags: out_of_tree
platform_whitelist: nrf52840dk_nrf52840 nrf52dk_nrf52832 platform_allow: nrf52840dk_nrf52840 nrf52dk_nrf52832
harness: console harness: console
harness_config: harness_config:
type: one_line type: one_line

View file

@ -7,40 +7,40 @@ tests:
sample.minimal.mt.arm: sample.minimal.mt.arm:
build_only: true build_only: true
extra_args: CONF_FILE='common.conf;mt.conf;arm.conf' extra_args: CONF_FILE='common.conf;mt.conf;arm.conf'
platform_whitelist: reel_board frdm_k64f mps2_an385 nrf51dk_nrf51422 nucleo_f429zi disco_l475_iot1 platform_allow: reel_board frdm_k64f mps2_an385 nrf51dk_nrf51422 nucleo_f429zi disco_l475_iot1
sample.minimal.mt-no-preempt.arm: sample.minimal.mt-no-preempt.arm:
build_only: true build_only: true
extra_args: CONF_FILE='common.conf;mt.conf;no-preempt.conf;arm.conf' extra_args: CONF_FILE='common.conf;mt.conf;no-preempt.conf;arm.conf'
platform_whitelist: reel_board frdm_k64f mps2_an385 nrf51dk_nrf51422 nucleo_f429zi disco_l475_iot1 platform_allow: reel_board frdm_k64f mps2_an385 nrf51dk_nrf51422 nucleo_f429zi disco_l475_iot1
sample.minimal.mt-no-preempt-no-timers.arm: sample.minimal.mt-no-preempt-no-timers.arm:
build_only: true build_only: true
extra_args: CONF_FILE='common.conf;mt.conf;no-preempt.conf;no-timers.conf;arm.conf' extra_args: CONF_FILE='common.conf;mt.conf;no-preempt.conf;no-timers.conf;arm.conf'
platform_whitelist: reel_board frdm_k64f mps2_an385 nrf51dk_nrf51422 nucleo_f429zi disco_l475_iot1 platform_allow: reel_board frdm_k64f mps2_an385 nrf51dk_nrf51422 nucleo_f429zi disco_l475_iot1
sample.minimal.no-mt.arm: sample.minimal.no-mt.arm:
build_only: true build_only: true
extra_args: CONF_FILE='common.conf;no-mt.conf;arm.conf' extra_args: CONF_FILE='common.conf;no-mt.conf;arm.conf'
platform_whitelist: reel_board frdm_k64f mps2_an385 nrf51dk_nrf51422 nucleo_f429zi disco_l475_iot1 platform_allow: reel_board frdm_k64f mps2_an385 nrf51dk_nrf51422 nucleo_f429zi disco_l475_iot1
sample.minimal.no-mt-no-timers.arm: sample.minimal.no-mt-no-timers.arm:
build_only: true build_only: true
extra_args: CONF_FILE='common.conf;no-mt.conf;no-timers.conf;arm.conf' extra_args: CONF_FILE='common.conf;no-mt.conf;no-timers.conf;arm.conf'
platform_whitelist: reel_board frdm_k64f mps2_an385 nrf51dk_nrf51422 nucleo_f429zi disco_l475_iot1 platform_allow: reel_board frdm_k64f mps2_an385 nrf51dk_nrf51422 nucleo_f429zi disco_l475_iot1
sample.minimal.mt.x86: sample.minimal.mt.x86:
build_only: true build_only: true
extra_args: CONF_FILE='common.conf;mt.conf;x86.conf' extra_args: CONF_FILE='common.conf;mt.conf;x86.conf'
platform_whitelist: qemu_x86 platform_allow: qemu_x86
sample.minimal.mt-no-preempt.x86: sample.minimal.mt-no-preempt.x86:
build_only: true build_only: true
extra_args: CONF_FILE='common.conf;mt.conf;no-preempt.conf;x86.conf' extra_args: CONF_FILE='common.conf;mt.conf;no-preempt.conf;x86.conf'
platform_whitelist: qemu_x86 platform_allow: qemu_x86
sample.minimal.mt-no-preempt-no-timers.x86: sample.minimal.mt-no-preempt-no-timers.x86:
build_only: true build_only: true
extra_args: CONF_FILE='common.conf;mt.conf;no-preempt.conf;no-timers.conf;x86.conf' extra_args: CONF_FILE='common.conf;mt.conf;no-preempt.conf;no-timers.conf;x86.conf'
platform_whitelist: qemu_x86 platform_allow: qemu_x86
sample.minimal.no-mt.x86: sample.minimal.no-mt.x86:
build_only: true build_only: true
extra_args: CONF_FILE='common.conf;no-mt.conf;x86.conf' extra_args: CONF_FILE='common.conf;no-mt.conf;x86.conf'
platform_whitelist: qemu_x86 platform_allow: qemu_x86
sample.minimal.no-mt-no-timers.x86: sample.minimal.no-mt-no-timers.x86:
build_only: true build_only: true
extra_args: CONF_FILE='common.conf;no-mt.conf;no-timers.conf;x86.conf' extra_args: CONF_FILE='common.conf;no-mt.conf;no-timers.conf;x86.conf'
platform_whitelist: qemu_x86 platform_allow: qemu_x86

View file

@ -5,4 +5,4 @@ tests:
tags: drivers pwm tags: drivers pwm
depends_on: pwm depends_on: pwm
harness: motor harness: motor
platform_whitelist: bbc_microbit platform_allow: bbc_microbit

View file

@ -3,5 +3,5 @@ sample:
tests: tests:
sample.bluetooth.beacon: sample.bluetooth.beacon:
harness: bluetooth harness: bluetooth
platform_whitelist: qemu_cortex_m3 qemu_x86 nrf52dk_nrf52832 platform_allow: qemu_cortex_m3 qemu_x86 nrf52dk_nrf52832
tags: bluetooth tags: bluetooth

View file

@ -3,5 +3,5 @@ sample:
tests: tests:
sample.bluetooth.central: sample.bluetooth.central:
harness: bluetooth harness: bluetooth
platform_whitelist: qemu_cortex_m3 qemu_x86 platform_allow: qemu_cortex_m3 qemu_x86
tags: bluetooth tags: bluetooth

View file

@ -2,6 +2,6 @@ sample:
name: Bluetooth Central HR name: Bluetooth Central HR
tests: tests:
sample.bluetooth.central_hr: sample.bluetooth.central_hr:
arch_whitelist: x86 arch_allow: x86
harness: bluetooth harness: bluetooth
tags: bluetooth tags: bluetooth

View file

@ -2,6 +2,6 @@ sample:
name: Bluetooth Central HT name: Bluetooth Central HT
tests: tests:
sample.bluetooth.central_ht: sample.bluetooth.central_ht:
arch_whitelist: x86 arch_allow: x86
harness: bluetooth harness: bluetooth
tags: bluetooth tags: bluetooth

View file

@ -3,5 +3,5 @@ sample:
tests: tests:
sample.bluetooth.eddystone: sample.bluetooth.eddystone:
harness: bluetooth harness: bluetooth
platform_whitelist: qemu_cortex_m3 qemu_x86 platform_allow: qemu_cortex_m3 qemu_x86
tags: bluetooth tags: bluetooth

View file

@ -3,5 +3,5 @@ sample:
tests: tests:
sample.bluetooth.handsfree: sample.bluetooth.handsfree:
harness: bluetooth harness: bluetooth
platform_whitelist: qemu_cortex_m3 qemu_x86 platform_allow: qemu_cortex_m3 qemu_x86
tags: bluetooth tags: bluetooth

View file

@ -3,5 +3,5 @@ sample:
tests: tests:
sample.bluetooth.hci_pwr_ctrl: sample.bluetooth.hci_pwr_ctrl:
harness: bluetooth harness: bluetooth
platform_whitelist: bbc_microbit nrf51dk_nrf51422 nrf52dk_nrf52832 qemu_cortex_m3 qemu_x86 platform_allow: bbc_microbit nrf51dk_nrf51422 nrf52dk_nrf52832 qemu_cortex_m3 qemu_x86
tags: bluetooth tags: bluetooth

View file

@ -5,5 +5,5 @@ sample:
tests: tests:
sample.bluetooth.hci_rpmsg: sample.bluetooth.hci_rpmsg:
harness: bluetooth harness: bluetooth
platform_whitelist: nrf5340pdk_nrf5340_cpunet platform_allow: nrf5340pdk_nrf5340_cpunet
tags: bluetooth tags: bluetooth

View file

@ -5,6 +5,6 @@ sample:
tests: tests:
sample.bluetooth.hci_spi: sample.bluetooth.hci_spi:
harness: bluetooth harness: bluetooth
platform_whitelist: 96b_carbon_nrf51 nrf51dk_nrf51422 platform_allow: 96b_carbon_nrf51 nrf51dk_nrf51422
tags: bluetooth spi tags: bluetooth spi
depends_on: spi depends_on: spi

View file

@ -4,11 +4,11 @@ sample:
tests: tests:
sample.bluetooth.hci_uart.arm: sample.bluetooth.hci_uart.arm:
harness: bluetooth harness: bluetooth
platform_whitelist: 96b_nitrogen nrf51dk_nrf51422 platform_allow: 96b_nitrogen nrf51dk_nrf51422
nrf52dk_nrf52832 bbc_microbit nrf52dk_nrf52832 bbc_microbit
tags: uart bluetooth tags: uart bluetooth
sample.bluetooth.hci_uart.nrf5: sample.bluetooth.hci_uart.nrf5:
harness: bluetooth harness: bluetooth
platform_whitelist: 96b_nitrogen nrf51dk_nrf51422 platform_allow: 96b_nitrogen nrf51dk_nrf51422
nrf52dk_nrf52832 nrf52dk_nrf52832
tags: uart bluetooth tags: uart bluetooth

View file

@ -4,5 +4,5 @@ sample:
tests: tests:
sample.bluetooth.ibeacon: sample.bluetooth.ibeacon:
harness: bluetooth harness: bluetooth
platform_whitelist: bbc_microbit qemu_x86 platform_allow: bbc_microbit qemu_x86
tags: bluetooth tags: bluetooth

View file

@ -4,10 +4,10 @@ sample:
tests: tests:
sample.bluetooth.ipsp: sample.bluetooth.ipsp:
harness: bluetooth harness: bluetooth
platform_whitelist: qemu_x86 qemu_cortex_m3 platform_allow: qemu_x86 qemu_cortex_m3
tags: bluetooth net tags: bluetooth net
sample.bluetooth.ipsp.zep1656: sample.bluetooth.ipsp.zep1656:
harness: bluetooth harness: bluetooth
extra_args: CONF_FILE="prj_zep1656.conf" extra_args: CONF_FILE="prj_zep1656.conf"
platform_whitelist: qemu_x86 qemu_cortex_m3 platform_allow: qemu_x86 qemu_cortex_m3
tags: bluetooth net tags: bluetooth net

View file

@ -3,5 +3,5 @@ sample:
tests: tests:
sample.bluetooth.mesh: sample.bluetooth.mesh:
harness: bluetooth harness: bluetooth
platform_whitelist: bbc_microbit nrf51_blenano qemu_x86 platform_allow: bbc_microbit nrf51_blenano qemu_x86
tags: bluetooth tags: bluetooth

View file

@ -3,5 +3,5 @@ sample:
tests: tests:
sample.bluetooth.mesh_demo: sample.bluetooth.mesh_demo:
harness: bluetooth harness: bluetooth
platform_whitelist: bbc_microbit nrf51_blenano qemu_x86 platform_allow: bbc_microbit nrf51_blenano qemu_x86
tags: bluetooth tags: bluetooth

View file

@ -4,10 +4,10 @@ sample:
tests: tests:
sample.bluetooth.peripheral: sample.bluetooth.peripheral:
harness: bluetooth harness: bluetooth
platform_whitelist: qemu_cortex_m3 qemu_x86 nucleo_wb55rg platform_allow: qemu_cortex_m3 qemu_x86 nucleo_wb55rg
tags: bluetooth tags: bluetooth
sample.bluetooth.peripheral.x_nucleo_idb05a1_shield: sample.bluetooth.peripheral.x_nucleo_idb05a1_shield:
harness: bluetooth harness: bluetooth
platform_whitelist: nucleo_l4r5zi platform_allow: nucleo_l4r5zi
depends_on: arduino_spi arduino_gpio depends_on: arduino_spi arduino_gpio
extra_args: SHIELD=x_nucleo_idb05a1 extra_args: SHIELD=x_nucleo_idb05a1

View file

@ -4,5 +4,5 @@ sample:
tests: tests:
sample.bluetooth.peripheral_csc: sample.bluetooth.peripheral_csc:
harness: bluetooth harness: bluetooth
platform_whitelist: qemu_cortex_m3 qemu_x86 platform_allow: qemu_cortex_m3 qemu_x86
tags: bluetooth tags: bluetooth

View file

@ -4,5 +4,5 @@ sample:
tests: tests:
sample.bluetooth.peripheral_dis: sample.bluetooth.peripheral_dis:
harness: bluetooth harness: bluetooth
platform_whitelist: qemu_cortex_m3 qemu_x86 platform_allow: qemu_cortex_m3 qemu_x86
tags: bluetooth tags: bluetooth

View file

@ -4,5 +4,5 @@ sample:
tests: tests:
sample.bluetooth.peripheral_esp: sample.bluetooth.peripheral_esp:
harness: bluetooth harness: bluetooth
platform_whitelist: qemu_cortex_m3 qemu_x86 platform_allow: qemu_cortex_m3 qemu_x86
tags: bluetooth tags: bluetooth

View file

@ -4,5 +4,5 @@ sample:
tests: tests:
sample.bluetooth.peripheral_hids: sample.bluetooth.peripheral_hids:
harness: bluetooth harness: bluetooth
platform_whitelist: qemu_cortex_m3 qemu_x86 platform_allow: qemu_cortex_m3 qemu_x86
tags: bluetooth tags: bluetooth

View file

@ -4,14 +4,14 @@ sample:
tests: tests:
sample.bluetooth.peripheral_hr: sample.bluetooth.peripheral_hr:
harness: bluetooth harness: bluetooth
platform_whitelist: qemu_cortex_m3 qemu_x86 platform_allow: qemu_cortex_m3 qemu_x86
tags: bluetooth tags: bluetooth
sample.bluetooth.peripheral_hr_rv32m1_vega_ri5cy: sample.bluetooth.peripheral_hr_rv32m1_vega_ri5cy:
platform_whitelist: rv32m1_vega_ri5cy platform_allow: rv32m1_vega_ri5cy
tags: bluetooth tags: bluetooth
build_only: true build_only: true
sample.bluetooth.peripheral_hr.frdm_kw41z_shield: sample.bluetooth.peripheral_hr.frdm_kw41z_shield:
harness: bluetooth harness: bluetooth
platform_whitelist: mimxrt1020_evk mimxrt1050_evk mimxrt1060_evk frdm_k64f platform_allow: mimxrt1020_evk mimxrt1050_evk mimxrt1060_evk frdm_k64f
tags: bluetooth tags: bluetooth
extra_args: SHIELD=frdm_kw41z extra_args: SHIELD=frdm_kw41z

View file

@ -4,10 +4,10 @@ sample:
tests: tests:
sample.bluetooth.peripheral_ht: sample.bluetooth.peripheral_ht:
harness: bluetooth harness: bluetooth
platform_whitelist: qemu_cortex_m3 qemu_x86 platform_allow: qemu_cortex_m3 qemu_x86
tags: bluetooth tags: bluetooth
sample.bluetooth.peripheral_ht.frdm_kw41z_shield: sample.bluetooth.peripheral_ht.frdm_kw41z_shield:
harness: bluetooth harness: bluetooth
platform_whitelist: mimxrt1020_evk mimxrt1050_evk mimxrt1060_evk frdm_k64f platform_allow: mimxrt1020_evk mimxrt1050_evk mimxrt1060_evk frdm_k64f
tags: bluetooth tags: bluetooth
extra_args: SHIELD=frdm_kw41z extra_args: SHIELD=frdm_kw41z

View file

@ -4,5 +4,5 @@ sample:
tests: tests:
sample.bluetooth.peripheral_sc_only: sample.bluetooth.peripheral_sc_only:
harness: bluetooth harness: bluetooth
platform_whitelist: qemu_cortex_m3 qemu_x86 platform_allow: qemu_cortex_m3 qemu_x86
tags: bluetooth tags: bluetooth

View file

@ -4,5 +4,5 @@ sample:
tests: tests:
sample.bluetooth.scan_adv: sample.bluetooth.scan_adv:
harness: bluetooth harness: bluetooth
platform_whitelist: qemu_cortex_m3 qemu_x86 platform_allow: qemu_cortex_m3 qemu_x86
tags: bluetooth tags: bluetooth

View file

@ -4,5 +4,5 @@ sample:
tests: tests:
sample.bluetooth.st_ble_sensor: sample.bluetooth.st_ble_sensor:
harness: bluetooth harness: bluetooth
platform_whitelist: nucleo_wb55rg platform_allow: nucleo_wb55rg
tags: bluetooth tags: bluetooth

View file

@ -4,6 +4,6 @@ sample:
tests: tests:
sample.board.96b_argonkey.microphone: sample.board.96b_argonkey.microphone:
harness: sensor harness: sensor
platform_whitelist: 96b_argonkey platform_allow: 96b_argonkey
tags: sensors tags: sensors
depends_on: i2s gpio depends_on: i2s gpio

View file

@ -4,6 +4,6 @@ sample:
tests: tests:
sample.board.96b_argonkey.sensors: sample.board.96b_argonkey.sensors:
harness: sensor harness: sensor
platform_whitelist: 96b_argonkey platform_allow: 96b_argonkey
tags: sensors tags: sensors
depends_on: i2c spi gpio depends_on: i2c spi gpio

View file

@ -6,7 +6,7 @@ tests:
sample.board.arc_secure_services: sample.board.arc_secure_services:
# Requires multiple kernels in an AMP config. See README.rst # Requires multiple kernels in an AMP config. See README.rst
build_only: true build_only: true
platform_whitelist: nsim_sem em_starterkit_em7d_secure platform_allow: nsim_sem em_starterkit_em7d_secure
tags: secure tags: secure
harness: console harness: console
harness_config: harness_config:

View file

@ -2,5 +2,5 @@ sample:
name: BB micro:bit Display name: BB micro:bit Display
tests: tests:
sample.board.bbc_microbit.display: sample.board.bbc_microbit.display:
platform_whitelist: bbc_microbit platform_allow: bbc_microbit
tags: display tags: display

View file

@ -2,5 +2,5 @@ sample:
name: BBC micro:bit Line follower robot name: BBC micro:bit Line follower robot
tests: tests:
sample.board.bbc_microbit.line_follower_robot: sample.board.bbc_microbit.line_follower_robot:
platform_whitelist: bbc_microbit platform_allow: bbc_microbit
tags: microbit line-follower robot car tags: microbit line-follower robot car

View file

@ -2,5 +2,5 @@ sample:
name: Pong game using BBC Micro:bit name: Pong game using BBC Micro:bit
tests: tests:
sample.board.bbc_microbit.pong: sample.board.bbc_microbit.pong:
platform_whitelist: bbc_microbit platform_allow: bbc_microbit
tags: microbit mesh bluetooth tags: microbit mesh bluetooth

View file

@ -2,5 +2,5 @@ sample:
name: BBC micro:bit Sound name: BBC micro:bit Sound
tests: tests:
sample.board.bbc_microbit.sound: sample.board.bbc_microbit.sound:
platform_whitelist: bbc_microbit platform_allow: bbc_microbit
tags: sound tags: sound

View file

@ -2,5 +2,5 @@ sample:
name: Kukui general features name: Kukui general features
tests: tests:
sample.board.google_kukui: sample.board.google_kukui:
platform_whitelist: google_kukui platform_allow: google_kukui
tags: ec tags: ec

View file

@ -2,5 +2,5 @@ sample:
name: 2-way Audio Forwarding Sample name: 2-way Audio Forwarding Sample
tests: tests:
sample.board.intel_s1000_crb.audio: sample.board.intel_s1000_crb.audio:
platform_whitelist: intel_s1000_crb platform_allow: intel_s1000_crb
tags: audio tags: audio

View file

@ -2,5 +2,5 @@ sample:
name: I2S Audio Sample name: I2S Audio Sample
tests: tests:
sample.board.intel_s1000_crb.i2s: sample.board.intel_s1000_crb.i2s:
platform_whitelist: intel_s1000_crb platform_allow: intel_s1000_crb
tags: i2s tags: i2s

View file

@ -2,5 +2,5 @@ sample:
name: MEC150x board sample power management tests name: MEC150x board sample power management tests
tests: tests:
sample.board.mec15xxevb_assy6853: sample.board.mec15xxevb_assy6853:
platform_whitelist: mec15xxevb_assy6853 platform_allow: mec15xxevb_assy6853
tags: board tags: board

View file

@ -3,5 +3,5 @@ sample:
tests: tests:
sample.boards.nrf.battery: sample.boards.nrf.battery:
build_only: true build_only: true
platform_whitelist: particle_xenon thingy52_nrf52832 platform_allow: particle_xenon thingy52_nrf52832
tags: battery tags: battery

View file

@ -2,6 +2,6 @@ sample:
name: Bluetooth Mesh name: Bluetooth Mesh
tests: tests:
sample.bluetooth.mesh.onoff: sample.bluetooth.mesh.onoff:
platform_whitelist: nrf52840dk_nrf52840 platform_allow: nrf52840dk_nrf52840
tags: bluetooth tags: bluetooth
harness: bluetooth harness: bluetooth

View file

@ -2,11 +2,11 @@ sample:
name: Bluetooth Mesh name: Bluetooth Mesh
tests: tests:
sample.bluetooth.mesh.onoff_level_lighting_vnd: sample.bluetooth.mesh.onoff_level_lighting_vnd:
platform_whitelist: nrf52840dk_nrf52840 platform_allow: nrf52840dk_nrf52840
tags: bluetooth tags: bluetooth
harness: bluetooth harness: bluetooth
sample.bluetooth.mesh.onoff_level_lighting_vnd.mcumgr: sample.bluetooth.mesh.onoff_level_lighting_vnd.mcumgr:
platform_whitelist: nrf52840dk_nrf52840 platform_allow: nrf52840dk_nrf52840
tags: bluetooth tags: bluetooth
harness: bluetooth harness: bluetooth
extra_args: OVERLAY_CONFIG="prj_smp_svr.conf" extra_args: OVERLAY_CONFIG="prj_smp_svr.conf"

View file

@ -2,5 +2,5 @@ sample:
name: nrfx usage sample name: nrfx usage sample
tests: tests:
sample.board.nrf91.nrfx: sample.board.nrf91.nrfx:
platform_whitelist: nrf9160dk_nrf9160 platform_allow: nrf9160dk_nrf9160
tags: board tags: board

View file

@ -3,5 +3,5 @@ sample:
tests: tests:
sample.boards.nrf.system_off: sample.boards.nrf.system_off:
build_only: true build_only: true
platform_whitelist: nrf52840dk_nrf52840 nrf52dk_nrf52832 nrf51dk_nrf51422 platform_allow: nrf52840dk_nrf52840 nrf52dk_nrf52832 nrf51dk_nrf51422
tags: power tags: power

View file

@ -2,5 +2,5 @@ sample:
name: CCM usages example on Olimex STM32-E407 name: CCM usages example on Olimex STM32-E407
tests: tests:
sample.board.olimex_stm32_e407.ccm: sample.board.olimex_stm32_e407.ccm:
platform_whitelist: olimex_stm32_e407 platform_allow: olimex_stm32_e407
tags: board tags: board

View file

@ -3,6 +3,6 @@ sample:
name: mesh badge name: mesh badge
tests: tests:
sample.board.reel_board.mesh_badge: sample.board.reel_board.mesh_badge:
platform_whitelist: reel_board platform_allow: reel_board
tags: samples sensor tags: samples sensor
harness: sensor harness: sensor

View file

@ -4,6 +4,6 @@ sample:
tests: tests:
sample.board.sensortile_box.sensors: sample.board.sensortile_box.sensors:
harness: sensor harness: sensor
platform_whitelist: sensortile_box platform_allow: sensortile_box
tags: sensors tags: sensors
depends_on: i2c spi gpio depends_on: i2c spi gpio

View file

@ -3,5 +3,5 @@ sample:
tests: tests:
sample.boards.ti.cc13x2_cc26x2.system_off: sample.boards.ti.cc13x2_cc26x2.system_off:
build_only: true build_only: true
platform_whitelist: cc1352r1_launchxl platform_allow: cc1352r1_launchxl
tags: power tags: power

View file

@ -3,5 +3,5 @@ sample:
name: Example of using GPIOs on UP Squared board name: Example of using GPIOs on UP Squared board
tests: tests:
sample.board.up_squared.gpio_counter: sample.board.up_squared.gpio_counter:
platform_whitelist: up_squared up_squared_32 platform_allow: up_squared up_squared_32
tags: gpio tags: gpio

View file

@ -6,8 +6,8 @@ sample:
name: cfb sample name: cfb sample
tests: tests:
sample.display.cfb.ssd1306: sample.display.cfb.ssd1306:
platform_whitelist: frdm_k64f platform_allow: frdm_k64f
extra_args: SHIELD=ssd1306_128x64 extra_args: SHIELD=ssd1306_128x64
tags: shield tags: shield
sample.display.cfb.ssd16xx: sample.display.cfb.ssd16xx:
platform_whitelist: reel_board platform_allow: reel_board

View file

@ -6,4 +6,4 @@ sample:
name: cfb custom font sample name: cfb custom font sample
tests: tests:
sample.display.cfb_custom_font.ssd16xx: sample.display.cfb_custom_font.ssd16xx:
platform_whitelist: reel_board platform_allow: reel_board

View file

@ -6,8 +6,8 @@ sample:
name: cfb shell sample name: cfb shell sample
tests: tests:
sample.display.cfb_shell.ssd1306: sample.display.cfb_shell.ssd1306:
platform_whitelist: frdm_k64f platform_allow: frdm_k64f
extra_args: SHIELD=ssd1306_128x32 extra_args: SHIELD=ssd1306_128x32
tags: shield tags: shield
sample.display.cfb_shell.ssd16xx: sample.display.cfb_shell.ssd16xx:
platform_whitelist: reel_board platform_allow: reel_board

View file

@ -4,21 +4,21 @@ sample:
tests: tests:
sample.gui.lvgl: sample.gui.lvgl:
harness: display harness: display
platform_whitelist: reel_board mimxrt1050_evk mimxrt1060_evk mimxrt1064_evk platform_allow: reel_board mimxrt1050_evk mimxrt1060_evk mimxrt1064_evk
tags: samples display gui tags: samples display gui
sample.display.adafruit_2_8_tft_touch_v2: sample.display.adafruit_2_8_tft_touch_v2:
platform_whitelist: nrf52840dk_nrf52840 platform_allow: nrf52840dk_nrf52840
extra_args: SHIELD=adafruit_2_8_tft_touch_v2 extra_args: SHIELD=adafruit_2_8_tft_touch_v2
tags: shield tags: shield
sample.display.waveshare_epaper_gdeh0213b1: sample.display.waveshare_epaper_gdeh0213b1:
platform_whitelist: nrf52840dk_nrf52840 platform_allow: nrf52840dk_nrf52840
extra_args: SHIELD=waveshare_epaper_gdeh0213b1 extra_args: SHIELD=waveshare_epaper_gdeh0213b1
tags: shield tags: shield
sample.display.waveshare_epaper_gdeh0213b72: sample.display.waveshare_epaper_gdeh0213b72:
platform_whitelist: nrf52840dk_nrf52840 platform_allow: nrf52840dk_nrf52840
extra_args: SHIELD=waveshare_epaper_gdeh0213b72 extra_args: SHIELD=waveshare_epaper_gdeh0213b72
tags: shield tags: shield
sample.display.waveshare_epaper_gdeh029a1: sample.display.waveshare_epaper_gdeh029a1:
platform_whitelist: nrf52840dk_nrf52840 platform_allow: nrf52840dk_nrf52840
extra_args: SHIELD=waveshare_epaper_gdeh029a1 extra_args: SHIELD=waveshare_epaper_gdeh029a1
tags: shield tags: shield

View file

@ -4,7 +4,7 @@ tests:
sample.drivers.counter.alarm: sample.drivers.counter.alarm:
tags: drivers tags: drivers
harness: console harness: console
platform_whitelist: nucleo_f746zg nrf51dk_nrf51422 nrf52dk_nrf52832 platform_allow: nucleo_f746zg nrf51dk_nrf51422 nrf52dk_nrf52832
nrf52840dk_nrf52840 nrf9160dk_nrf9160 atsamd20_xpro nrf52840dk_nrf52840 nrf9160dk_nrf9160 atsamd20_xpro
harness_config: harness_config:
type: multi_line type: multi_line

View file

@ -3,4 +3,4 @@ sample:
tests: tests:
sample.basic.maxim_ds3231: sample.basic.maxim_ds3231:
build_only: true build_only: true
platform_whitelist: efr32mg_sltb004a frdm_k64f nrf51_pca10028 nucleo_l476rg particle_xenon platform_allow: efr32mg_sltb004a frdm_k64f nrf51_pca10028 nucleo_l476rg particle_xenon

View file

@ -32,6 +32,6 @@ tests:
- ".*: GCM Mode" - ".*: GCM Mode"
sample.drivers.crypto.stm32: sample.drivers.crypto.stm32:
tags: crypto tags: crypto
platform_whitelist: mikroe_mini_m4_for_stm32 platform_allow: mikroe_mini_m4_for_stm32
build_only: true build_only: true
extra_args: CONF_FILE=prj_stm32.conf extra_args: CONF_FILE=prj_stm32.conf

View file

@ -3,7 +3,7 @@ sample:
tests: tests:
sample.drivers.dac: sample.drivers.dac:
tags: DAC tags: DAC
platform_whitelist: arduino_zero frdm_k64f nucleo_l073rz nucleo_l152re twr_ke18f platform_allow: arduino_zero frdm_k64f nucleo_l073rz nucleo_l152re twr_ke18f
depends_on: dac depends_on: dac
harness: console harness: console
harness_config: harness_config:

View file

@ -3,37 +3,37 @@ sample:
name: display_sample name: display_sample
tests: tests:
sample.display.shield.adafruit_2_8_tft_touch_v2: sample.display.shield.adafruit_2_8_tft_touch_v2:
platform_whitelist: nrf52840dk_nrf52840 platform_allow: nrf52840dk_nrf52840
extra_args: SHIELD=adafruit_2_8_tft_touch_v2 extra_args: SHIELD=adafruit_2_8_tft_touch_v2
tags: display shield tags: display shield
sample.display.shield.ssd1306_128x32: sample.display.shield.ssd1306_128x32:
platform_whitelist: nrf52840dk_nrf52840 platform_allow: nrf52840dk_nrf52840
extra_args: SHIELD=ssd1306_128x32 extra_args: SHIELD=ssd1306_128x32
tags: display shield tags: display shield
sample.display.shield.ssd1306_128x64: sample.display.shield.ssd1306_128x64:
platform_whitelist: nrf52840dk_nrf52840 platform_allow: nrf52840dk_nrf52840
extra_args: SHIELD=ssd1306_128x64 extra_args: SHIELD=ssd1306_128x64
tags: display shield tags: display shield
sample.display.shield.waveshare_epaper_gdeh0213b1: sample.display.shield.waveshare_epaper_gdeh0213b1:
platform_whitelist: nrf52840dk_nrf52840 platform_allow: nrf52840dk_nrf52840
extra_args: SHIELD=waveshare_epaper_gdeh0213b1 extra_args: SHIELD=waveshare_epaper_gdeh0213b1
sample.display.st7789v_tl019fqv01: sample.display.st7789v_tl019fqv01:
platform_whitelist: nrf52dk_nrf52832 platform_allow: nrf52dk_nrf52832
extra_args: SHIELD=st7789v_tl019fqv01 extra_args: SHIELD=st7789v_tl019fqv01
tags: display shield tags: display shield
sample.display.st7789v_waveshare_240x240: sample.display.st7789v_waveshare_240x240:
platform_whitelist: nrf52dk_nrf52832 platform_allow: nrf52dk_nrf52832
extra_args: SHIELD=st7789v_waveshare_240x240 extra_args: SHIELD=st7789v_waveshare_240x240
tags: display shield tags: display shield
sample.display.mcux_elcdif: sample.display.mcux_elcdif:
platform_whitelist: mimxrt1050_evk platform_allow: mimxrt1050_evk
tags: display tags: display
sample.display.sdl: sample.display.sdl:
build_only: true build_only: true
platform_whitelist: native_posix_64 platform_allow: native_posix_64
tags: display tags: display
sample.display.dummy: sample.display.dummy:
platform_whitelist: native_posix platform_allow: native_posix
extra_configs: extra_configs:
- CONFIG_DUMMY_DISPLAY=y - CONFIG_DUMMY_DISPLAY=y
- CONFIG_SDL_DISPLAY=n - CONFIG_SDL_DISPLAY=n

View file

@ -3,6 +3,6 @@ sample:
name: HT16K33 sample name: HT16K33 sample
tests: tests:
sample.drivers.ht16k33: sample.drivers.ht16k33:
platform_whitelist: nrf52840dk_nrf52840 platform_allow: nrf52840dk_nrf52840
harness: TBD harness: TBD
tags: LED tags: LED

View file

@ -2,7 +2,7 @@ sample:
name: Display text strings on HD44780 based 20x4 LCD controller name: Display text strings on HD44780 based 20x4 LCD controller
tests: tests:
sample.drivers.lcd.hd44780: sample.drivers.lcd.hd44780:
platform_whitelist: arduino_due platform_allow: arduino_due
tags: display tags: display
harness: display harness: display
depends_on: gpio depends_on: gpio

View file

@ -3,6 +3,6 @@ sample:
name: APA102 sample name: APA102 sample
tests: tests:
sample.drivers.led.apa102: sample.drivers.led.apa102:
platform_whitelist: nucleo_l432kc platform_allow: nucleo_l432kc
tags: LED tags: LED
depends_on: spi depends_on: spi

View file

@ -3,5 +3,5 @@ sample:
name: LP3943 sample name: LP3943 sample
tests: tests:
sample.drivers.led.lp3943: sample.drivers.led.lp3943:
platform_whitelist: 96b_neonkey 96b_argonkey platform_allow: 96b_neonkey 96b_argonkey
tags: LED tags: LED

View file

@ -3,6 +3,6 @@ sample:
name: LP5562 sample name: LP5562 sample
tests: tests:
sample.drivers.led.lp5562: sample.drivers.led.lp5562:
platform_whitelist: nrf52840dk_nrf52840 platform_allow: nrf52840dk_nrf52840
tags: led tags: led
harness: TBD harness: TBD

View file

@ -3,5 +3,5 @@ sample:
name: LPD880x sample name: LPD880x sample
tests: tests:
sample.drivers.led.lpd8806: sample.drivers.led.lpd8806:
platform_whitelist: 96b_carbon platform_allow: 96b_carbon
tags: LED tags: LED

View file

@ -3,5 +3,5 @@ sample:
name: PCA9633 sample name: PCA9633 sample
tests: tests:
sample.drivers.led.pca9633: sample.drivers.led.pca9633:
platform_whitelist: stm32373c_eval platform_allow: stm32373c_eval
tags: LED tags: LED

View file

@ -3,5 +3,5 @@ sample:
name: WS2812 sample name: WS2812 sample
tests: tests:
sample.drivers.led.ws2812: sample.drivers.led.ws2812:
platform_whitelist: bbc_microbit nrf51dk_nrf51422 nrf52dk_nrf52832 platform_allow: bbc_microbit nrf51dk_nrf51422 nrf52dk_nrf52832
tags: LED tags: LED

View file

@ -5,4 +5,4 @@ sample:
name: LoRa Receive Sample name: LoRa Receive Sample
tests: tests:
sample.driver.lora.receive: sample.driver.lora.receive:
platform_whitelist: 96b_wistrio platform_allow: 96b_wistrio

View file

@ -5,4 +5,4 @@ sample:
name: LoRa Send Sample name: LoRa Send Sample
tests: tests:
sample.driver.lora.send: sample.driver.lora.send:
platform_whitelist: 96b_wistrio platform_allow: 96b_wistrio

View file

@ -2,7 +2,7 @@ sample:
name: SoC Flash on NRF52 name: SoC Flash on NRF52
tests: tests:
sample.drivers.flash.soc_flash_nrf: sample.drivers.flash.soc_flash_nrf:
platform_whitelist: nrf52dk_nrf52832 nrf9160dk_nrf9160 nrf9160dk_nrf9160ns platform_allow: nrf52dk_nrf52832 nrf9160dk_nrf9160 nrf9160dk_nrf9160ns
tags: flash nrf52 nrf9160 tags: flash nrf52 nrf9160
harness: console harness: console
harness_config: harness_config:

View file

@ -26,5 +26,5 @@ tests:
- "Waiting for reset..." - "Waiting for reset..."
- "Watchdog sample application" - "Watchdog sample application"
depends_on: watchdog depends_on: watchdog
platform_whitelist: nucleo_l496zg platform_allow: nucleo_l496zg
extra_args: CONF_FILE="prj.conf;nucleo_l496zg.conf" extra_args: CONF_FILE="prj.conf;nucleo_l496zg.conf"

View file

@ -2,7 +2,7 @@ sample:
name: MPU Test name: MPU Test
tests: tests:
sample.mpu.mpu_test: sample.mpu.mpu_test:
arch_whitelist: arm arch_allow: arm
filter: CONFIG_CPU_HAS_MPU filter: CONFIG_CPU_HAS_MPU
tags: mpu tags: mpu
harness: keyboard harness: keyboard

View file

@ -4,5 +4,5 @@ sample:
tests: tests:
sample.net.cloud.mqtt_azure: sample.net.cloud.mqtt_azure:
harness: net harness: net
platform_whitelist: sam_e70_xplained frdm_k64f qemu_x86 platform_allow: sam_e70_xplained frdm_k64f qemu_x86
tags: net mqtt cloud tags: net mqtt cloud

View file

@ -6,4 +6,4 @@ sample:
name: Native posix ethernet demo application name: Native posix ethernet demo application
tests: tests:
sample.net.eth_native_posix: sample.net.eth_native_posix:
platform_whitelist: native_posix native_posix_64 platform_allow: native_posix native_posix_64

View file

@ -6,5 +6,5 @@ sample:
name: gPTP sample app name: gPTP sample app
tests: tests:
sample.net.gptp: sample.net.gptp:
platform_whitelist: frdm_k64f sam_e70_xplained native_posix native_posix_64 platform_allow: frdm_k64f sam_e70_xplained native_posix native_posix_64
depends_on: netif depends_on: netif

View file

@ -1,7 +1,7 @@
common: common:
harness: net harness: net
tags: net ipv4_autoconf tags: net ipv4_autoconf
platform_whitelist: qemu_x86 native_posix native_posix_64 platform_allow: qemu_x86 native_posix native_posix_64
sample: sample:
description: Test IPv4 autoconf functionality description: Test IPv4 autoconf functionality
name: IPv4 autoconf sample app name: IPv4 autoconf sample app

View file

@ -6,5 +6,5 @@ sample:
name: LLDP sample app name: LLDP sample app
tests: tests:
sample.net.lldp: sample.net.lldp:
platform_whitelist: native_posix native_posix_64 platform_allow: native_posix native_posix_64
depends_on: netif depends_on: netif

View file

@ -5,27 +5,27 @@ tests:
sample.net.lwm2m_client: sample.net.lwm2m_client:
harness: net harness: net
depends_on: netif depends_on: netif
platform_whitelist: qemu_x86 frdm_k64f platform_allow: qemu_x86 frdm_k64f
tags: net lwm2m tags: net lwm2m
sample.net.lwm2m_client.dtls: sample.net.lwm2m_client.dtls:
harness: net harness: net
depends_on: netif depends_on: netif
extra_args: OVERLAY_CONFIG=overlay-dtls.conf extra_args: OVERLAY_CONFIG=overlay-dtls.conf
platform_whitelist: qemu_x86 frdm_k64f platform_allow: qemu_x86 frdm_k64f
tags: net lwm2m tags: net lwm2m
sample.net.lwm2m_client.bt: sample.net.lwm2m_client.bt:
harness: net harness: net
extra_args: OVERLAY_CONFIG=overlay-bt.conf extra_args: OVERLAY_CONFIG=overlay-bt.conf
platform_whitelist: nrf52dk_nrf52832 nrf52840dk_nrf52840 disco_l475_iot1 platform_allow: nrf52dk_nrf52832 nrf52840dk_nrf52840 disco_l475_iot1
tags: net lwm2m tags: net lwm2m
sample.net.lwm2m_client.queue_mode: sample.net.lwm2m_client.queue_mode:
harness: net harness: net
depends_on: netif depends_on: netif
extra_args: OVERLAY_CONFIG=overlay-queue.conf extra_args: OVERLAY_CONFIG=overlay-queue.conf
platform_whitelist: qemu_x86 platform_allow: qemu_x86
tags: net lwm2m tags: net lwm2m
sample.net.lwm2m_client.wnc_m14a2a: sample.net.lwm2m_client.wnc_m14a2a:
harness: net harness: net
extra_args: SHIELD=wnc_m14a2a extra_args: SHIELD=wnc_m14a2a
platform_whitelist: frdm_k64f nrf52840dk_nrf52840 platform_allow: frdm_k64f nrf52840dk_nrf52840
tags: net lwm2m tags: net lwm2m

View file

@ -3,5 +3,5 @@ sample:
tests: tests:
sample.net.mdns_responder: sample.net.mdns_responder:
harness: net harness: net
platform_whitelist: qemu_x86 qemu_cortex_m3 platform_allow: qemu_x86 qemu_cortex_m3
tags: net mdns tags: net mdns

View file

@ -6,10 +6,10 @@ common:
tags: net mqtt tags: net mqtt
tests: tests:
sample.net.mqtt_publisher: sample.net.mqtt_publisher:
platform_whitelist: frdm_k64f qemu_x86 platform_allow: frdm_k64f qemu_x86
sample.net.mqtt_publisher.userspace: sample.net.mqtt_publisher.userspace:
platform_whitelist: frdm_k64f qemu_x86 platform_allow: frdm_k64f qemu_x86
extra_args: CONFIG_USERSPACE=y extra_args: CONFIG_USERSPACE=y
sample.net.mqtt_publisher.bt: sample.net.mqtt_publisher.bt:
platform_whitelist: 96b_nitrogen platform_allow: 96b_nitrogen
tags: net mqtt bluetooth tags: net mqtt bluetooth

View file

@ -2,7 +2,7 @@ common:
tags: net socket can CAN tags: net socket can CAN
depends_on: can depends_on: can
harness: can harness: can
platform_whitelist: stm32f072b_disco nucleo_l432kc platform_allow: stm32f072b_disco nucleo_l432kc
sample: sample:
description: Test BSD sockets CAN support description: Test BSD sockets CAN support
name: Socket CAN example name: Socket CAN example

View file

@ -3,4 +3,4 @@ sample:
name: civetweb name: civetweb
tests: tests:
sample.net.sockets.civetweb: sample.net.sockets.civetweb:
platform_whitelist: sam_e70_xplained platform_allow: sam_e70_xplained

View file

@ -5,4 +5,4 @@ tests:
sample.net.sockets.coap_client: sample.net.sockets.coap_client:
harness: net harness: net
tags: net socket tags: net socket
platform_whitelist: qemu_x86 platform_allow: qemu_x86

View file

@ -5,4 +5,4 @@ tests:
sample.net.sockets.coap_server: sample.net.sockets.coap_server:
harness: net harness: net
tags: net socket tags: net socket
platform_whitelist: qemu_x86 platform_allow: qemu_x86

View file

@ -8,5 +8,5 @@ tests:
sample.net.sockets.echo: sample.net.sockets.echo:
tags: net socket tags: net socket
sample.net.sockets.echo.offload.simplelink: sample.net.sockets.echo.offload.simplelink:
platform_whitelist: cc3220sf_launchxl platform_allow: cc3220sf_launchxl
tags: net socket offload simplelink tags: net socket offload simplelink

View file

@ -5,7 +5,7 @@ sample:
common: common:
filter: TOOLCHAIN_HAS_NEWLIB == 1 filter: TOOLCHAIN_HAS_NEWLIB == 1
harness: net harness: net
platform_whitelist: qemu_x86 platform_allow: qemu_x86
tags: net socket tags: net socket
tests: tests:
sample.net.sockets.echo_async: sample.net.sockets.echo_async:

View file

@ -4,7 +4,7 @@ sample:
name: socket_echo_async name: socket_echo_async
common: common:
harness: net harness: net
platform_whitelist: qemu_x86 platform_allow: qemu_x86
tags: net socket tags: net socket
tests: tests:
sample.net.sockets.echo_async_select: sample.net.sockets.echo_async_select:

View file

@ -9,49 +9,49 @@ sample:
name: Socket Echo Client name: Socket Echo Client
tests: tests:
sample.net.sockets.echo_client: sample.net.sockets.echo_client:
platform_whitelist: qemu_x86 frdm_k64f sam_e70_xplained platform_allow: qemu_x86 frdm_k64f sam_e70_xplained
qemu_cortex_m3 frdm_kw41z qemu_cortex_m3 frdm_kw41z
sample.net.sockets.echo_client.802154: sample.net.sockets.echo_client.802154:
extra_args: OVERLAY_CONFIG="overlay-qemu_802154.conf" extra_args: OVERLAY_CONFIG="overlay-qemu_802154.conf"
platform_whitelist: qemu_x86 platform_allow: qemu_x86
sample.net.sockets.echo_server.802154.rf2xx: sample.net.sockets.echo_server.802154.rf2xx:
extra_args: OVERLAY_CONFIG="overlay-802154.conf" extra_args: OVERLAY_CONFIG="overlay-802154.conf"
platform_whitelist: atsamr21_xpro platform_allow: atsamr21_xpro
sample.net.sockets.echo_server.802154.rf2xx.xplained: sample.net.sockets.echo_server.802154.rf2xx.xplained:
extra_args: SHIELD=atmel_rf2xx_xplained OVERLAY_CONFIG="overlay-802154.conf" extra_args: SHIELD=atmel_rf2xx_xplained OVERLAY_CONFIG="overlay-802154.conf"
platform_whitelist: sam4s_xplained platform_allow: sam4s_xplained
sample.net.sockets.echo_server.802154.rf2xx.xpro: sample.net.sockets.echo_server.802154.rf2xx.xpro:
extra_args: SHIELD=atmel_rf2xx_xpro OVERLAY_CONFIG="overlay-802154.conf" extra_args: SHIELD=atmel_rf2xx_xpro OVERLAY_CONFIG="overlay-802154.conf"
platform_whitelist: sam4e_xpro sam_v71_xult platform_allow: sam4e_xpro sam_v71_xult
sample.net.sockets.echo_server.802154.rf2xx.legacy: sample.net.sockets.echo_server.802154.rf2xx.legacy:
extra_args: SHIELD=atmel_rf2xx_legacy OVERLAY_CONFIG="overlay-802154.conf" extra_args: SHIELD=atmel_rf2xx_legacy OVERLAY_CONFIG="overlay-802154.conf"
platform_whitelist: sam4e_xpro sam_v71_xult platform_allow: sam4e_xpro sam_v71_xult
sample.net.sockets.echo_server.802154.rf2xx.arduino: sample.net.sockets.echo_server.802154.rf2xx.arduino:
extra_args: SHIELD=atmel_rf2xx_arduino OVERLAY_CONFIG="overlay-802154.conf" extra_args: SHIELD=atmel_rf2xx_arduino OVERLAY_CONFIG="overlay-802154.conf"
platform_whitelist: sam_v71_xult frdm_k64f nucleo_f767zi platform_allow: sam_v71_xult frdm_k64f nucleo_f767zi
sample.net.sockets.echo_server.802154.rf2xx.mikrobus: sample.net.sockets.echo_server.802154.rf2xx.mikrobus:
extra_args: SHIELD=atmel_rf2xx_mikrobus OVERLAY_CONFIG="overlay-802154.conf" extra_args: SHIELD=atmel_rf2xx_mikrobus OVERLAY_CONFIG="overlay-802154.conf"
platform_whitelist: lpcxpresso55s69_ns platform_allow: lpcxpresso55s69_ns
sample.net.sockets.echo_client.bt: sample.net.sockets.echo_client.bt:
extra_args: OVERLAY_CONFIG="overlay-bt.conf" extra_args: OVERLAY_CONFIG="overlay-bt.conf"
platform_whitelist: qemu_x86 platform_allow: qemu_x86
tags: bluetooth tags: bluetooth
sample.net.sockets.echo_client.mcr20a: sample.net.sockets.echo_client.mcr20a:
extra_args: SHIELD=frdm_cr20a OVERLAY_CONFIG=overlay-802154.conf extra_args: SHIELD=frdm_cr20a OVERLAY_CONFIG=overlay-802154.conf
platform_whitelist: frdm_k64f platform_allow: frdm_k64f
sample.net.sockets.echo_client.nrf_802154: sample.net.sockets.echo_client.nrf_802154:
extra_args: OVERLAY_CONFIG="overlay-802154.conf" extra_args: OVERLAY_CONFIG="overlay-802154.conf"
platform_whitelist: nrf52840dk_nrf52840 platform_allow: nrf52840dk_nrf52840
sample.net.sockets.echo_client.nrf_openthread: sample.net.sockets.echo_client.nrf_openthread:
extra_args: OVERLAY_CONFIG="overlay-ot.conf" extra_args: OVERLAY_CONFIG="overlay-ot.conf"
slow: true slow: true
tags: net openthread tags: net openthread
platform_whitelist: nrf52840dk_nrf52840 platform_allow: nrf52840dk_nrf52840
sample.net.sockets.echo_client.kw41z_openthread: sample.net.sockets.echo_client.kw41z_openthread:
extra_args: OVERLAY_CONFIG="overlay-ot.conf" extra_args: OVERLAY_CONFIG="overlay-ot.conf"
slow: true slow: true
tags: net openthread tags: net openthread
platform_whitelist: frdm_kw41z platform_allow: frdm_kw41z
sample.net.sockets.echo_client.userspace: sample.net.sockets.echo_client.userspace:
extra_args: CONFIG_USERSPACE=y OVERLAY_CONFIG="overlay-e1000.conf" extra_args: CONFIG_USERSPACE=y OVERLAY_CONFIG="overlay-e1000.conf"
platform_whitelist: qemu_x86 platform_allow: qemu_x86

View file

@ -9,39 +9,39 @@ sample:
name: Socket Echo Server name: Socket Echo Server
tests: tests:
sample.net.sockets.echo_server: sample.net.sockets.echo_server:
platform_whitelist: qemu_x86 sam_e70_xplained frdm_k64f platform_allow: qemu_x86 sam_e70_xplained frdm_k64f
qemu_cortex_m3 frdm_kw41z qemu_cortex_m3 frdm_kw41z
sample.net.sockets.echo_server.802154: sample.net.sockets.echo_server.802154:
extra_args: OVERLAY_CONFIG="overlay-qemu_802154.conf" extra_args: OVERLAY_CONFIG="overlay-qemu_802154.conf"
platform_whitelist: qemu_x86 platform_allow: qemu_x86
sample.net.sockets.echo_server.802154.rf2xx: sample.net.sockets.echo_server.802154.rf2xx:
extra_args: OVERLAY_CONFIG="overlay-802154.conf" extra_args: OVERLAY_CONFIG="overlay-802154.conf"
platform_whitelist: atsamr21_xpro platform_allow: atsamr21_xpro
sample.net.sockets.echo_server.802154.rf2xx.xplained: sample.net.sockets.echo_server.802154.rf2xx.xplained:
extra_args: SHIELD=atmel_rf2xx_xplained OVERLAY_CONFIG="overlay-802154.conf" extra_args: SHIELD=atmel_rf2xx_xplained OVERLAY_CONFIG="overlay-802154.conf"
platform_whitelist: sam4s_xplained platform_allow: sam4s_xplained
sample.net.sockets.echo_server.802154.rf2xx.xpro: sample.net.sockets.echo_server.802154.rf2xx.xpro:
extra_args: SHIELD=atmel_rf2xx_xpro OVERLAY_CONFIG="overlay-802154.conf" extra_args: SHIELD=atmel_rf2xx_xpro OVERLAY_CONFIG="overlay-802154.conf"
platform_whitelist: sam4e_xpro sam_v71_xult platform_allow: sam4e_xpro sam_v71_xult
sample.net.sockets.echo_server.802154.rf2xx.legacy: sample.net.sockets.echo_server.802154.rf2xx.legacy:
extra_args: SHIELD=atmel_rf2xx_legacy OVERLAY_CONFIG="overlay-802154.conf" extra_args: SHIELD=atmel_rf2xx_legacy OVERLAY_CONFIG="overlay-802154.conf"
platform_whitelist: sam4e_xpro sam_v71_xult platform_allow: sam4e_xpro sam_v71_xult
sample.net.sockets.echo_server.802154.rf2xx.arduino: sample.net.sockets.echo_server.802154.rf2xx.arduino:
extra_args: SHIELD=atmel_rf2xx_arduino OVERLAY_CONFIG="overlay-802154.conf" extra_args: SHIELD=atmel_rf2xx_arduino OVERLAY_CONFIG="overlay-802154.conf"
platform_whitelist: sam_v71_xult frdm_k64f nucleo_f767zi platform_allow: sam_v71_xult frdm_k64f nucleo_f767zi
sample.net.sockets.echo_server.802154.rf2xx.mikrobus: sample.net.sockets.echo_server.802154.rf2xx.mikrobus:
extra_args: SHIELD=atmel_rf2xx_mikrobus OVERLAY_CONFIG="overlay-802154.conf" extra_args: SHIELD=atmel_rf2xx_mikrobus OVERLAY_CONFIG="overlay-802154.conf"
platform_whitelist: lpcxpresso55s69_ns platform_allow: lpcxpresso55s69_ns
sample.net.sockets.echo_server.bt: sample.net.sockets.echo_server.bt:
extra_args: OVERLAY_CONFIG="overlay-bt.conf" extra_args: OVERLAY_CONFIG="overlay-bt.conf"
platform_whitelist: qemu_x86 platform_allow: qemu_x86
tags: bluetooth tags: bluetooth
sample.net.sockets.echo_server.mcr20a: sample.net.sockets.echo_server.mcr20a:
extra_args: SHIELD=frdm_cr20a OVERLAY_CONFIG=overlay-802154.conf extra_args: SHIELD=frdm_cr20a OVERLAY_CONFIG=overlay-802154.conf
platform_whitelist: frdm_k64f platform_allow: frdm_k64f
sample.net.sockets.echo_server.nrf_802154: sample.net.sockets.echo_server.nrf_802154:
extra_args: OVERLAY_CONFIG="overlay-802154.conf" extra_args: OVERLAY_CONFIG="overlay-802154.conf"
platform_whitelist: nrf52840dk_nrf52840 platform_allow: nrf52840dk_nrf52840
sample.net.sockets.echo_server.usbnet: sample.net.sockets.echo_server.usbnet:
depends_on: usb_device depends_on: usb_device
harness: net harness: net
@ -58,24 +58,24 @@ tests:
extra_args: OVERLAY_CONFIG="overlay-ot.conf" extra_args: OVERLAY_CONFIG="overlay-ot.conf"
slow: true slow: true
tags: net openthread tags: net openthread
platform_whitelist: nrf52840dk_nrf52840 platform_allow: nrf52840dk_nrf52840
sample.net.sockets.echo_server.kw41z_openthread: sample.net.sockets.echo_server.kw41z_openthread:
extra_args: OVERLAY_CONFIG="overlay-ot.conf" extra_args: OVERLAY_CONFIG="overlay-ot.conf"
slow: true slow: true
tags: net openthread tags: net openthread
platform_whitelist: frdm_kw41z platform_allow: frdm_kw41z
sample.net.sockets.echo_server.e1000: sample.net.sockets.echo_server.e1000:
extra_args: OVERLAY_CONFIG="overlay-e1000.conf" extra_args: OVERLAY_CONFIG="overlay-e1000.conf"
tags: net tags: net
platform_whitelist: qemu_x86 platform_allow: qemu_x86
sample.net.sockets.echo_server.stellaris: sample.net.sockets.echo_server.stellaris:
extra_args: OVERLAY_CONFIG="overlay-qemu_cortex_m3_eth.conf" extra_args: OVERLAY_CONFIG="overlay-qemu_cortex_m3_eth.conf"
tags: net tags: net
platform_whitelist: qemu_cortex_m3 platform_allow: qemu_cortex_m3
sample.net.sockets.echo_server.smsc911x: sample.net.sockets.echo_server.smsc911x:
extra_args: OVERLAY_CONFIG="overlay-smsc911x.conf" extra_args: OVERLAY_CONFIG="overlay-smsc911x.conf"
tags: net tags: net
platform_whitelist: mps2_an385 platform_allow: mps2_an385
sample.net.sockets.echo_server.userspace: sample.net.sockets.echo_server.userspace:
extra_args: CONFIG_USERSPACE=y OVERLAY_CONFIG="overlay-e1000.conf" extra_args: CONFIG_USERSPACE=y OVERLAY_CONFIG="overlay-e1000.conf"
platform_whitelist: qemu_x86 platform_allow: qemu_x86

View file

@ -20,5 +20,5 @@ tests:
- CONFIG_NET_SOCKETS_POSIX_NAMES=n - CONFIG_NET_SOCKETS_POSIX_NAMES=n
- CONFIG_POSIX_API=y - CONFIG_POSIX_API=y
sample.net.sockets.http_get.offload.simplelink: sample.net.sockets.http_get.offload.simplelink:
platform_whitelist: cc3220sf_launchxl platform_allow: cc3220sf_launchxl
tags: net socket offload simplelink tags: net socket offload simplelink

View file

@ -4,5 +4,5 @@ sample:
tests: tests:
sample.net.sockets.packet: sample.net.sockets.packet:
harness: net harness: net
platform_whitelist: native_posix native_posix_64 platform_allow: native_posix native_posix_64
tags: net sockets packet-socket tags: net sockets packet-socket

View file

@ -3,7 +3,7 @@ sample:
name: sntp_client name: sntp_client
common: common:
harness: net harness: net
platform_whitelist: qemu_x86 platform_allow: qemu_x86
tags: net tags: net
tests: tests:
sample.net.sockets.sntp_client: sample.net.sockets.sntp_client:

View file

@ -6,10 +6,10 @@ sample:
name: WiFi sample app name: WiFi sample app
tests: tests:
sample.net.wifi: sample.net.wifi:
platform_whitelist: cc3220sf_launchxl disco_l475_iot1 platform_allow: cc3220sf_launchxl disco_l475_iot1
sample.net.wifi.esp_8266: sample.net.wifi.esp_8266:
extra_args: SHIELD=esp_8266 extra_args: SHIELD=esp_8266
platform_whitelist: sam4e_xpro platform_allow: sam4e_xpro
sample.net.wifi.esp_8266_arduino: sample.net.wifi.esp_8266_arduino:
extra_args: SHIELD=esp_8266_arduino extra_args: SHIELD=esp_8266_arduino
platform_whitelist: frdm_k64f disco_l475_iot1 platform_allow: frdm_k64f disco_l475_iot1

View file

@ -10,4 +10,4 @@ tests:
depends_on: ieee802154 depends_on: ieee802154
sample.net.wpan_serial.frdm_cr20a: sample.net.wpan_serial.frdm_cr20a:
extra_args: SHIELD=frdm_cr20a extra_args: SHIELD=frdm_cr20a
platform_whitelist: frdm_k64f platform_allow: frdm_k64f

View file

@ -10,4 +10,4 @@ tests:
depends_on: ieee802154 depends_on: ieee802154
sample.net.wpanusb_frdm_cr20a: sample.net.wpanusb_frdm_cr20a:
extra_args: SHIELD=frdm_cr20a extra_args: SHIELD=frdm_cr20a
platform_whitelist: frdm_k64f platform_allow: frdm_k64f

View file

@ -9,7 +9,7 @@ sample:
name: zperf name: zperf
tests: tests:
sample.net.zperf: sample.net.zperf:
platform_whitelist: qemu_x86 platform_allow: qemu_x86
sample.net.zperf.netusb_ecm: sample.net.zperf.netusb_ecm:
extra_args: OVERLAY_CONFIG="overlay-netusb.conf" extra_args: OVERLAY_CONFIG="overlay-netusb.conf"
tags: usb net zperf tags: usb net zperf
@ -29,7 +29,7 @@ tests:
tags: usb net zperf tags: usb net zperf
depends_on: usb_device depends_on: usb_device
sample.net.zperf.shield: sample.net.zperf.shield:
platform_whitelist: reel_board platform_allow: reel_board
extra_args: SHIELD=link_board_eth extra_args: SHIELD=link_board_eth
tags: shield net zperf tags: shield net zperf
depends_on: arduino_spi arduino_gpio depends_on: arduino_spi arduino_gpio

View file

@ -4,5 +4,5 @@ tests:
sample.sensor.adt7420: sample.sensor.adt7420:
harness: sensor harness: sensor
tags: sensors tags: sensors
platform_whitelist: frdm_k64f platform_allow: frdm_k64f
depends_on: i2c depends_on: i2c

View file

@ -6,4 +6,4 @@ tests:
harness: sensor harness: sensor
tags: sensors tags: sensors
depends_on: spi depends_on: spi
platform_whitelist: nrf52dk_nrf52832 platform_allow: nrf52dk_nrf52832

View file

@ -5,10 +5,10 @@ tests:
harness: sensor harness: sensor
tags: sensors tags: sensors
depends_on: spi depends_on: spi
platform_whitelist: nrf52dk_nrf52832 platform_allow: nrf52dk_nrf52832
sample.sensor.adxl372.i2c: sample.sensor.adxl372.i2c:
harness: sensor harness: sensor
tags: sensors tags: sensors
depends_on: i2c depends_on: i2c
platform_whitelist: frdm_k64f platform_allow: frdm_k64f
extra_args: "CONF_FILE=prj_i2c.conf" extra_args: "CONF_FILE=prj_i2c.conf"

View file

@ -3,7 +3,7 @@ sample:
tests: tests:
sample.sensor.apds9960: sample.sensor.apds9960:
harness: console harness: console
platform_whitelist: reel_board platform_allow: reel_board
tags: sensors tags: sensors
depends_on: i2c gpio depends_on: i2c gpio
harness_config: harness_config:
@ -15,7 +15,7 @@ tests:
fixture: fixture_i2c_apds9960 fixture: fixture_i2c_apds9960
sample.sensor.apds9960.trigger: sample.sensor.apds9960.trigger:
harness: console harness: console
platform_whitelist: reel_board platform_allow: reel_board
tags: sensors tags: sensors
depends_on: i2c gpio depends_on: i2c gpio
extra_configs: extra_configs:

Some files were not shown because too many files have changed in this diff Show more