sanitycheck: inclusive language
change whitelist -> allow.
Signed-off-by: Anas Nashif <anas.nashif@intel.com>
diff --git a/doc/guides/test/sanitycheck.rst b/doc/guides/test/sanitycheck.rst
index dda5392..d66ab43 100644
--- a/doc/guides/test/sanitycheck.rst
+++ b/doc/guides/test/sanitycheck.rst
@@ -203,14 +203,14 @@
tests:
bluetooth.gatt:
build_only: true
- platform_whitelist: qemu_cortex_m3 qemu_x86
+ platform_allow: qemu_cortex_m3 qemu_x86
tags: bluetooth
bluetooth.gatt.br:
build_only: true
extra_args: CONF_FILE="prj_br.conf"
filter: not CONFIG_DEBUG
platform_exclude: up_squared
- platform_whitelist: qemu_cortex_m3 qemu_x86
+ platform_allow: qemu_cortex_m3 qemu_x86
tags: bluetooth
@@ -298,22 +298,22 @@
Length of time to run test in QEMU before automatically killing it.
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.
arch_exclude: <list of arches, such as x86, arm, arc>
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
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
- 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>
This option limits the scope to the listed platforms when sanitycheck is
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.
platform_exclude: <list of platforms>
@@ -437,7 +437,7 @@
not (right 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
arch_exclude = x86 arc
diff --git a/samples/application_development/code_relocation/sample.yaml b/samples/application_development/code_relocation/sample.yaml
index 4892b51..f43d795 100644
--- a/samples/application_development/code_relocation/sample.yaml
+++ b/samples/application_development/code_relocation/sample.yaml
@@ -8,6 +8,6 @@
type: one_line
regex:
- "Hello World! (.*)"
- platform_whitelist: qemu_cortex_m3 mps2_an385 sam_e70_xplained
+ platform_allow: qemu_cortex_m3 mps2_an385 sam_e70_xplained
tags: linker
extra_sections: _SRAM2_RODATA_SECTION_NAME _SRAM_TEXT_SECTION_NAME _SRAM_RODATA_SECTION_NAME _SRAM_DATA_SECTION_NAME _CUSTOM_SECTION_NAME2
diff --git a/samples/application_development/out_of_tree_board/sample.yaml b/samples/application_development/out_of_tree_board/sample.yaml
index 1cf2d6b..9d2649b 100644
--- a/samples/application_development/out_of_tree_board/sample.yaml
+++ b/samples/application_development/out_of_tree_board/sample.yaml
@@ -4,7 +4,7 @@
tests:
sample.app_dev.out_of_tree:
tags: out_of_tree
- platform_whitelist: nrf52840dk_nrf52840 nrf52dk_nrf52832
+ platform_allow: nrf52840dk_nrf52840 nrf52dk_nrf52832
harness: console
harness_config:
type: one_line
diff --git a/samples/basic/minimal/sample.yaml b/samples/basic/minimal/sample.yaml
index 8ae9d96..6e04833 100644
--- a/samples/basic/minimal/sample.yaml
+++ b/samples/basic/minimal/sample.yaml
@@ -7,40 +7,40 @@
sample.minimal.mt.arm:
build_only: true
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:
build_only: true
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:
build_only: true
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:
build_only: true
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:
build_only: true
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:
build_only: true
extra_args: CONF_FILE='common.conf;mt.conf;x86.conf'
- platform_whitelist: qemu_x86
+ platform_allow: qemu_x86
sample.minimal.mt-no-preempt.x86:
build_only: true
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:
build_only: true
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:
build_only: true
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:
build_only: true
extra_args: CONF_FILE='common.conf;no-mt.conf;no-timers.conf;x86.conf'
- platform_whitelist: qemu_x86
+ platform_allow: qemu_x86
diff --git a/samples/basic/servo_motor/sample.yaml b/samples/basic/servo_motor/sample.yaml
index 0f13acd..7f5800b 100644
--- a/samples/basic/servo_motor/sample.yaml
+++ b/samples/basic/servo_motor/sample.yaml
@@ -5,4 +5,4 @@
tags: drivers pwm
depends_on: pwm
harness: motor
- platform_whitelist: bbc_microbit
+ platform_allow: bbc_microbit
diff --git a/samples/bluetooth/beacon/sample.yaml b/samples/bluetooth/beacon/sample.yaml
index 177989b..e686a167 100644
--- a/samples/bluetooth/beacon/sample.yaml
+++ b/samples/bluetooth/beacon/sample.yaml
@@ -3,5 +3,5 @@
tests:
sample.bluetooth.beacon:
harness: bluetooth
- platform_whitelist: qemu_cortex_m3 qemu_x86 nrf52dk_nrf52832
+ platform_allow: qemu_cortex_m3 qemu_x86 nrf52dk_nrf52832
tags: bluetooth
diff --git a/samples/bluetooth/central/sample.yaml b/samples/bluetooth/central/sample.yaml
index 66d5361..61ad0d7 100644
--- a/samples/bluetooth/central/sample.yaml
+++ b/samples/bluetooth/central/sample.yaml
@@ -3,5 +3,5 @@
tests:
sample.bluetooth.central:
harness: bluetooth
- platform_whitelist: qemu_cortex_m3 qemu_x86
+ platform_allow: qemu_cortex_m3 qemu_x86
tags: bluetooth
diff --git a/samples/bluetooth/central_hr/sample.yaml b/samples/bluetooth/central_hr/sample.yaml
index f3d3db1..8dabb71 100644
--- a/samples/bluetooth/central_hr/sample.yaml
+++ b/samples/bluetooth/central_hr/sample.yaml
@@ -2,6 +2,6 @@
name: Bluetooth Central HR
tests:
sample.bluetooth.central_hr:
- arch_whitelist: x86
+ arch_allow: x86
harness: bluetooth
tags: bluetooth
diff --git a/samples/bluetooth/central_ht/sample.yaml b/samples/bluetooth/central_ht/sample.yaml
index 04e4036..544a276 100644
--- a/samples/bluetooth/central_ht/sample.yaml
+++ b/samples/bluetooth/central_ht/sample.yaml
@@ -2,6 +2,6 @@
name: Bluetooth Central HT
tests:
sample.bluetooth.central_ht:
- arch_whitelist: x86
+ arch_allow: x86
harness: bluetooth
tags: bluetooth
diff --git a/samples/bluetooth/eddystone/sample.yaml b/samples/bluetooth/eddystone/sample.yaml
index 6fdd901..e467367 100644
--- a/samples/bluetooth/eddystone/sample.yaml
+++ b/samples/bluetooth/eddystone/sample.yaml
@@ -3,5 +3,5 @@
tests:
sample.bluetooth.eddystone:
harness: bluetooth
- platform_whitelist: qemu_cortex_m3 qemu_x86
+ platform_allow: qemu_cortex_m3 qemu_x86
tags: bluetooth
diff --git a/samples/bluetooth/handsfree/sample.yaml b/samples/bluetooth/handsfree/sample.yaml
index 68623b3..896537b 100644
--- a/samples/bluetooth/handsfree/sample.yaml
+++ b/samples/bluetooth/handsfree/sample.yaml
@@ -3,5 +3,5 @@
tests:
sample.bluetooth.handsfree:
harness: bluetooth
- platform_whitelist: qemu_cortex_m3 qemu_x86
+ platform_allow: qemu_cortex_m3 qemu_x86
tags: bluetooth
diff --git a/samples/bluetooth/hci_pwr_ctrl/sample.yaml b/samples/bluetooth/hci_pwr_ctrl/sample.yaml
index e82dbab..ec3cdaa 100644
--- a/samples/bluetooth/hci_pwr_ctrl/sample.yaml
+++ b/samples/bluetooth/hci_pwr_ctrl/sample.yaml
@@ -3,5 +3,5 @@
tests:
sample.bluetooth.hci_pwr_ctrl:
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
diff --git a/samples/bluetooth/hci_rpmsg/sample.yaml b/samples/bluetooth/hci_rpmsg/sample.yaml
index e8d47f8..9861875 100644
--- a/samples/bluetooth/hci_rpmsg/sample.yaml
+++ b/samples/bluetooth/hci_rpmsg/sample.yaml
@@ -5,5 +5,5 @@
tests:
sample.bluetooth.hci_rpmsg:
harness: bluetooth
- platform_whitelist: nrf5340pdk_nrf5340_cpunet
+ platform_allow: nrf5340pdk_nrf5340_cpunet
tags: bluetooth
diff --git a/samples/bluetooth/hci_spi/sample.yaml b/samples/bluetooth/hci_spi/sample.yaml
index a5da940..6c77b59 100644
--- a/samples/bluetooth/hci_spi/sample.yaml
+++ b/samples/bluetooth/hci_spi/sample.yaml
@@ -5,6 +5,6 @@
tests:
sample.bluetooth.hci_spi:
harness: bluetooth
- platform_whitelist: 96b_carbon_nrf51 nrf51dk_nrf51422
+ platform_allow: 96b_carbon_nrf51 nrf51dk_nrf51422
tags: bluetooth spi
depends_on: spi
diff --git a/samples/bluetooth/hci_uart/sample.yaml b/samples/bluetooth/hci_uart/sample.yaml
index eb4b98b..774690d 100644
--- a/samples/bluetooth/hci_uart/sample.yaml
+++ b/samples/bluetooth/hci_uart/sample.yaml
@@ -4,11 +4,11 @@
tests:
sample.bluetooth.hci_uart.arm:
harness: bluetooth
- platform_whitelist: 96b_nitrogen nrf51dk_nrf51422
+ platform_allow: 96b_nitrogen nrf51dk_nrf51422
nrf52dk_nrf52832 bbc_microbit
tags: uart bluetooth
sample.bluetooth.hci_uart.nrf5:
harness: bluetooth
- platform_whitelist: 96b_nitrogen nrf51dk_nrf51422
+ platform_allow: 96b_nitrogen nrf51dk_nrf51422
nrf52dk_nrf52832
tags: uart bluetooth
diff --git a/samples/bluetooth/ibeacon/sample.yaml b/samples/bluetooth/ibeacon/sample.yaml
index 502ff78..ce8d81a 100644
--- a/samples/bluetooth/ibeacon/sample.yaml
+++ b/samples/bluetooth/ibeacon/sample.yaml
@@ -4,5 +4,5 @@
tests:
sample.bluetooth.ibeacon:
harness: bluetooth
- platform_whitelist: bbc_microbit qemu_x86
+ platform_allow: bbc_microbit qemu_x86
tags: bluetooth
diff --git a/samples/bluetooth/ipsp/sample.yaml b/samples/bluetooth/ipsp/sample.yaml
index 2a5c5e6..bde2f35 100644
--- a/samples/bluetooth/ipsp/sample.yaml
+++ b/samples/bluetooth/ipsp/sample.yaml
@@ -4,10 +4,10 @@
tests:
sample.bluetooth.ipsp:
harness: bluetooth
- platform_whitelist: qemu_x86 qemu_cortex_m3
+ platform_allow: qemu_x86 qemu_cortex_m3
tags: bluetooth net
sample.bluetooth.ipsp.zep1656:
harness: bluetooth
extra_args: CONF_FILE="prj_zep1656.conf"
- platform_whitelist: qemu_x86 qemu_cortex_m3
+ platform_allow: qemu_x86 qemu_cortex_m3
tags: bluetooth net
diff --git a/samples/bluetooth/mesh/sample.yaml b/samples/bluetooth/mesh/sample.yaml
index 27200cd..538c423 100644
--- a/samples/bluetooth/mesh/sample.yaml
+++ b/samples/bluetooth/mesh/sample.yaml
@@ -3,5 +3,5 @@
tests:
sample.bluetooth.mesh:
harness: bluetooth
- platform_whitelist: bbc_microbit nrf51_blenano qemu_x86
+ platform_allow: bbc_microbit nrf51_blenano qemu_x86
tags: bluetooth
diff --git a/samples/bluetooth/mesh_demo/sample.yaml b/samples/bluetooth/mesh_demo/sample.yaml
index 97fcd06..590e8de 100644
--- a/samples/bluetooth/mesh_demo/sample.yaml
+++ b/samples/bluetooth/mesh_demo/sample.yaml
@@ -3,5 +3,5 @@
tests:
sample.bluetooth.mesh_demo:
harness: bluetooth
- platform_whitelist: bbc_microbit nrf51_blenano qemu_x86
+ platform_allow: bbc_microbit nrf51_blenano qemu_x86
tags: bluetooth
diff --git a/samples/bluetooth/peripheral/sample.yaml b/samples/bluetooth/peripheral/sample.yaml
index 8f28be8..f154cec 100644
--- a/samples/bluetooth/peripheral/sample.yaml
+++ b/samples/bluetooth/peripheral/sample.yaml
@@ -4,10 +4,10 @@
tests:
sample.bluetooth.peripheral:
harness: bluetooth
- platform_whitelist: qemu_cortex_m3 qemu_x86 nucleo_wb55rg
+ platform_allow: qemu_cortex_m3 qemu_x86 nucleo_wb55rg
tags: bluetooth
sample.bluetooth.peripheral.x_nucleo_idb05a1_shield:
harness: bluetooth
- platform_whitelist: nucleo_l4r5zi
+ platform_allow: nucleo_l4r5zi
depends_on: arduino_spi arduino_gpio
extra_args: SHIELD=x_nucleo_idb05a1
diff --git a/samples/bluetooth/peripheral_csc/sample.yaml b/samples/bluetooth/peripheral_csc/sample.yaml
index d31e39b..10891ef 100644
--- a/samples/bluetooth/peripheral_csc/sample.yaml
+++ b/samples/bluetooth/peripheral_csc/sample.yaml
@@ -4,5 +4,5 @@
tests:
sample.bluetooth.peripheral_csc:
harness: bluetooth
- platform_whitelist: qemu_cortex_m3 qemu_x86
+ platform_allow: qemu_cortex_m3 qemu_x86
tags: bluetooth
diff --git a/samples/bluetooth/peripheral_dis/sample.yaml b/samples/bluetooth/peripheral_dis/sample.yaml
index 8d0374d..88a402d 100644
--- a/samples/bluetooth/peripheral_dis/sample.yaml
+++ b/samples/bluetooth/peripheral_dis/sample.yaml
@@ -4,5 +4,5 @@
tests:
sample.bluetooth.peripheral_dis:
harness: bluetooth
- platform_whitelist: qemu_cortex_m3 qemu_x86
+ platform_allow: qemu_cortex_m3 qemu_x86
tags: bluetooth
diff --git a/samples/bluetooth/peripheral_esp/sample.yaml b/samples/bluetooth/peripheral_esp/sample.yaml
index a5e6fc0..9bb9010 100644
--- a/samples/bluetooth/peripheral_esp/sample.yaml
+++ b/samples/bluetooth/peripheral_esp/sample.yaml
@@ -4,5 +4,5 @@
tests:
sample.bluetooth.peripheral_esp:
harness: bluetooth
- platform_whitelist: qemu_cortex_m3 qemu_x86
+ platform_allow: qemu_cortex_m3 qemu_x86
tags: bluetooth
diff --git a/samples/bluetooth/peripheral_hids/sample.yaml b/samples/bluetooth/peripheral_hids/sample.yaml
index 5c2eaaf..d519a37 100644
--- a/samples/bluetooth/peripheral_hids/sample.yaml
+++ b/samples/bluetooth/peripheral_hids/sample.yaml
@@ -4,5 +4,5 @@
tests:
sample.bluetooth.peripheral_hids:
harness: bluetooth
- platform_whitelist: qemu_cortex_m3 qemu_x86
+ platform_allow: qemu_cortex_m3 qemu_x86
tags: bluetooth
diff --git a/samples/bluetooth/peripheral_hr/sample.yaml b/samples/bluetooth/peripheral_hr/sample.yaml
index dd56215..995ca9b 100644
--- a/samples/bluetooth/peripheral_hr/sample.yaml
+++ b/samples/bluetooth/peripheral_hr/sample.yaml
@@ -4,14 +4,14 @@
tests:
sample.bluetooth.peripheral_hr:
harness: bluetooth
- platform_whitelist: qemu_cortex_m3 qemu_x86
+ platform_allow: qemu_cortex_m3 qemu_x86
tags: bluetooth
sample.bluetooth.peripheral_hr_rv32m1_vega_ri5cy:
- platform_whitelist: rv32m1_vega_ri5cy
+ platform_allow: rv32m1_vega_ri5cy
tags: bluetooth
build_only: true
sample.bluetooth.peripheral_hr.frdm_kw41z_shield:
harness: bluetooth
- platform_whitelist: mimxrt1020_evk mimxrt1050_evk mimxrt1060_evk frdm_k64f
+ platform_allow: mimxrt1020_evk mimxrt1050_evk mimxrt1060_evk frdm_k64f
tags: bluetooth
extra_args: SHIELD=frdm_kw41z
diff --git a/samples/bluetooth/peripheral_ht/sample.yaml b/samples/bluetooth/peripheral_ht/sample.yaml
index 93fd55b..96e1dc4 100644
--- a/samples/bluetooth/peripheral_ht/sample.yaml
+++ b/samples/bluetooth/peripheral_ht/sample.yaml
@@ -4,10 +4,10 @@
tests:
sample.bluetooth.peripheral_ht:
harness: bluetooth
- platform_whitelist: qemu_cortex_m3 qemu_x86
+ platform_allow: qemu_cortex_m3 qemu_x86
tags: bluetooth
sample.bluetooth.peripheral_ht.frdm_kw41z_shield:
harness: bluetooth
- platform_whitelist: mimxrt1020_evk mimxrt1050_evk mimxrt1060_evk frdm_k64f
+ platform_allow: mimxrt1020_evk mimxrt1050_evk mimxrt1060_evk frdm_k64f
tags: bluetooth
extra_args: SHIELD=frdm_kw41z
diff --git a/samples/bluetooth/peripheral_sc_only/sample.yaml b/samples/bluetooth/peripheral_sc_only/sample.yaml
index db820c9..7919b4b 100644
--- a/samples/bluetooth/peripheral_sc_only/sample.yaml
+++ b/samples/bluetooth/peripheral_sc_only/sample.yaml
@@ -4,5 +4,5 @@
tests:
sample.bluetooth.peripheral_sc_only:
harness: bluetooth
- platform_whitelist: qemu_cortex_m3 qemu_x86
+ platform_allow: qemu_cortex_m3 qemu_x86
tags: bluetooth
diff --git a/samples/bluetooth/scan_adv/sample.yaml b/samples/bluetooth/scan_adv/sample.yaml
index 7d8f782..79f437a 100644
--- a/samples/bluetooth/scan_adv/sample.yaml
+++ b/samples/bluetooth/scan_adv/sample.yaml
@@ -4,5 +4,5 @@
tests:
sample.bluetooth.scan_adv:
harness: bluetooth
- platform_whitelist: qemu_cortex_m3 qemu_x86
+ platform_allow: qemu_cortex_m3 qemu_x86
tags: bluetooth
diff --git a/samples/bluetooth/st_ble_sensor/sample.yaml b/samples/bluetooth/st_ble_sensor/sample.yaml
index bae9841..f467f4c 100644
--- a/samples/bluetooth/st_ble_sensor/sample.yaml
+++ b/samples/bluetooth/st_ble_sensor/sample.yaml
@@ -4,5 +4,5 @@
tests:
sample.bluetooth.st_ble_sensor:
harness: bluetooth
- platform_whitelist: nucleo_wb55rg
+ platform_allow: nucleo_wb55rg
tags: bluetooth
diff --git a/samples/boards/96b_argonkey/microphone/sample.yaml b/samples/boards/96b_argonkey/microphone/sample.yaml
index 50c065a..cc38db2 100644
--- a/samples/boards/96b_argonkey/microphone/sample.yaml
+++ b/samples/boards/96b_argonkey/microphone/sample.yaml
@@ -4,6 +4,6 @@
tests:
sample.board.96b_argonkey.microphone:
harness: sensor
- platform_whitelist: 96b_argonkey
+ platform_allow: 96b_argonkey
tags: sensors
depends_on: i2s gpio
diff --git a/samples/boards/96b_argonkey/sensors/sample.yaml b/samples/boards/96b_argonkey/sensors/sample.yaml
index ca57942..e737bcd 100644
--- a/samples/boards/96b_argonkey/sensors/sample.yaml
+++ b/samples/boards/96b_argonkey/sensors/sample.yaml
@@ -4,6 +4,6 @@
tests:
sample.board.96b_argonkey.sensors:
harness: sensor
- platform_whitelist: 96b_argonkey
+ platform_allow: 96b_argonkey
tags: sensors
depends_on: i2c spi gpio
diff --git a/samples/boards/arc_secure_services/sample.yaml b/samples/boards/arc_secure_services/sample.yaml
index 3bcaaaf..6a49cae 100644
--- a/samples/boards/arc_secure_services/sample.yaml
+++ b/samples/boards/arc_secure_services/sample.yaml
@@ -6,7 +6,7 @@
sample.board.arc_secure_services:
# Requires multiple kernels in an AMP config. See README.rst
build_only: true
- platform_whitelist: nsim_sem em_starterkit_em7d_secure
+ platform_allow: nsim_sem em_starterkit_em7d_secure
tags: secure
harness: console
harness_config:
diff --git a/samples/boards/bbc_microbit/display/sample.yaml b/samples/boards/bbc_microbit/display/sample.yaml
index 53f526f..5b0e324 100644
--- a/samples/boards/bbc_microbit/display/sample.yaml
+++ b/samples/boards/bbc_microbit/display/sample.yaml
@@ -2,5 +2,5 @@
name: BB micro:bit Display
tests:
sample.board.bbc_microbit.display:
- platform_whitelist: bbc_microbit
+ platform_allow: bbc_microbit
tags: display
diff --git a/samples/boards/bbc_microbit/line_follower_robot/sample.yaml b/samples/boards/bbc_microbit/line_follower_robot/sample.yaml
index a3212fb..870475d 100644
--- a/samples/boards/bbc_microbit/line_follower_robot/sample.yaml
+++ b/samples/boards/bbc_microbit/line_follower_robot/sample.yaml
@@ -2,5 +2,5 @@
name: BBC micro:bit Line follower robot
tests:
sample.board.bbc_microbit.line_follower_robot:
- platform_whitelist: bbc_microbit
+ platform_allow: bbc_microbit
tags: microbit line-follower robot car
diff --git a/samples/boards/bbc_microbit/pong/sample.yaml b/samples/boards/bbc_microbit/pong/sample.yaml
index 742441f..9deb05e 100644
--- a/samples/boards/bbc_microbit/pong/sample.yaml
+++ b/samples/boards/bbc_microbit/pong/sample.yaml
@@ -2,5 +2,5 @@
name: Pong game using BBC Micro:bit
tests:
sample.board.bbc_microbit.pong:
- platform_whitelist: bbc_microbit
+ platform_allow: bbc_microbit
tags: microbit mesh bluetooth
diff --git a/samples/boards/bbc_microbit/sound/sample.yaml b/samples/boards/bbc_microbit/sound/sample.yaml
index 64f4e25..241fce8 100644
--- a/samples/boards/bbc_microbit/sound/sample.yaml
+++ b/samples/boards/bbc_microbit/sound/sample.yaml
@@ -2,5 +2,5 @@
name: BBC micro:bit Sound
tests:
sample.board.bbc_microbit.sound:
- platform_whitelist: bbc_microbit
+ platform_allow: bbc_microbit
tags: sound
diff --git a/samples/boards/google_kukui/sample.yaml b/samples/boards/google_kukui/sample.yaml
index 4ed777f..1d4d39a 100644
--- a/samples/boards/google_kukui/sample.yaml
+++ b/samples/boards/google_kukui/sample.yaml
@@ -2,5 +2,5 @@
name: Kukui general features
tests:
sample.board.google_kukui:
- platform_whitelist: google_kukui
+ platform_allow: google_kukui
tags: ec
diff --git a/samples/boards/intel_s1000_crb/audio/sample.yaml b/samples/boards/intel_s1000_crb/audio/sample.yaml
index e2839dc..cb08684 100644
--- a/samples/boards/intel_s1000_crb/audio/sample.yaml
+++ b/samples/boards/intel_s1000_crb/audio/sample.yaml
@@ -2,5 +2,5 @@
name: 2-way Audio Forwarding Sample
tests:
sample.board.intel_s1000_crb.audio:
- platform_whitelist: intel_s1000_crb
+ platform_allow: intel_s1000_crb
tags: audio
diff --git a/samples/boards/intel_s1000_crb/i2s/sample.yaml b/samples/boards/intel_s1000_crb/i2s/sample.yaml
index df2cffb..ba05173 100644
--- a/samples/boards/intel_s1000_crb/i2s/sample.yaml
+++ b/samples/boards/intel_s1000_crb/i2s/sample.yaml
@@ -2,5 +2,5 @@
name: I2S Audio Sample
tests:
sample.board.intel_s1000_crb.i2s:
- platform_whitelist: intel_s1000_crb
+ platform_allow: intel_s1000_crb
tags: i2s
diff --git a/samples/boards/mec15xxevb_assy6853/power_management/sample.yaml b/samples/boards/mec15xxevb_assy6853/power_management/sample.yaml
index 8e97690..514f0c7 100644
--- a/samples/boards/mec15xxevb_assy6853/power_management/sample.yaml
+++ b/samples/boards/mec15xxevb_assy6853/power_management/sample.yaml
@@ -2,5 +2,5 @@
name: MEC150x board sample power management tests
tests:
sample.board.mec15xxevb_assy6853:
- platform_whitelist: mec15xxevb_assy6853
+ platform_allow: mec15xxevb_assy6853
tags: board
diff --git a/samples/boards/nrf/battery/sample.yaml b/samples/boards/nrf/battery/sample.yaml
index 4de80f0..e60f8d7 100644
--- a/samples/boards/nrf/battery/sample.yaml
+++ b/samples/boards/nrf/battery/sample.yaml
@@ -3,5 +3,5 @@
tests:
sample.boards.nrf.battery:
build_only: true
- platform_whitelist: particle_xenon thingy52_nrf52832
+ platform_allow: particle_xenon thingy52_nrf52832
tags: battery
diff --git a/samples/boards/nrf/mesh/onoff-app/sample.yaml b/samples/boards/nrf/mesh/onoff-app/sample.yaml
index 1024a7a..af80fff 100644
--- a/samples/boards/nrf/mesh/onoff-app/sample.yaml
+++ b/samples/boards/nrf/mesh/onoff-app/sample.yaml
@@ -2,6 +2,6 @@
name: Bluetooth Mesh
tests:
sample.bluetooth.mesh.onoff:
- platform_whitelist: nrf52840dk_nrf52840
+ platform_allow: nrf52840dk_nrf52840
tags: bluetooth
harness: bluetooth
diff --git a/samples/boards/nrf/mesh/onoff_level_lighting_vnd_app/sample.yaml b/samples/boards/nrf/mesh/onoff_level_lighting_vnd_app/sample.yaml
index 218d92b..44e611b 100644
--- a/samples/boards/nrf/mesh/onoff_level_lighting_vnd_app/sample.yaml
+++ b/samples/boards/nrf/mesh/onoff_level_lighting_vnd_app/sample.yaml
@@ -2,11 +2,11 @@
name: Bluetooth Mesh
tests:
sample.bluetooth.mesh.onoff_level_lighting_vnd:
- platform_whitelist: nrf52840dk_nrf52840
+ platform_allow: nrf52840dk_nrf52840
tags: bluetooth
harness: bluetooth
sample.bluetooth.mesh.onoff_level_lighting_vnd.mcumgr:
- platform_whitelist: nrf52840dk_nrf52840
+ platform_allow: nrf52840dk_nrf52840
tags: bluetooth
harness: bluetooth
extra_args: OVERLAY_CONFIG="prj_smp_svr.conf"
diff --git a/samples/boards/nrf/nrfx/sample.yaml b/samples/boards/nrf/nrfx/sample.yaml
index 7e8bf29..eda9020 100644
--- a/samples/boards/nrf/nrfx/sample.yaml
+++ b/samples/boards/nrf/nrfx/sample.yaml
@@ -2,5 +2,5 @@
name: nrfx usage sample
tests:
sample.board.nrf91.nrfx:
- platform_whitelist: nrf9160dk_nrf9160
+ platform_allow: nrf9160dk_nrf9160
tags: board
diff --git a/samples/boards/nrf/system_off/sample.yaml b/samples/boards/nrf/system_off/sample.yaml
index 5f78279..f06c56e 100644
--- a/samples/boards/nrf/system_off/sample.yaml
+++ b/samples/boards/nrf/system_off/sample.yaml
@@ -3,5 +3,5 @@
tests:
sample.boards.nrf.system_off:
build_only: true
- platform_whitelist: nrf52840dk_nrf52840 nrf52dk_nrf52832 nrf51dk_nrf51422
+ platform_allow: nrf52840dk_nrf52840 nrf52dk_nrf52832 nrf51dk_nrf51422
tags: power
diff --git a/samples/boards/olimex_stm32_e407/ccm/sample.yaml b/samples/boards/olimex_stm32_e407/ccm/sample.yaml
index 6d8d8b6..3adbdda 100644
--- a/samples/boards/olimex_stm32_e407/ccm/sample.yaml
+++ b/samples/boards/olimex_stm32_e407/ccm/sample.yaml
@@ -2,5 +2,5 @@
name: CCM usages example on Olimex STM32-E407
tests:
sample.board.olimex_stm32_e407.ccm:
- platform_whitelist: olimex_stm32_e407
+ platform_allow: olimex_stm32_e407
tags: board
diff --git a/samples/boards/reel_board/mesh_badge/sample.yaml b/samples/boards/reel_board/mesh_badge/sample.yaml
index 7127643..c6ad48a 100644
--- a/samples/boards/reel_board/mesh_badge/sample.yaml
+++ b/samples/boards/reel_board/mesh_badge/sample.yaml
@@ -3,6 +3,6 @@
name: mesh badge
tests:
sample.board.reel_board.mesh_badge:
- platform_whitelist: reel_board
+ platform_allow: reel_board
tags: samples sensor
harness: sensor
diff --git a/samples/boards/sensortile_box/sample.yaml b/samples/boards/sensortile_box/sample.yaml
index 01f4cbf..2070c41 100644
--- a/samples/boards/sensortile_box/sample.yaml
+++ b/samples/boards/sensortile_box/sample.yaml
@@ -4,6 +4,6 @@
tests:
sample.board.sensortile_box.sensors:
harness: sensor
- platform_whitelist: sensortile_box
+ platform_allow: sensortile_box
tags: sensors
depends_on: i2c spi gpio
diff --git a/samples/boards/ti/cc13x2_cc26x2/system_off/sample.yaml b/samples/boards/ti/cc13x2_cc26x2/system_off/sample.yaml
index 7652225..db83444 100644
--- a/samples/boards/ti/cc13x2_cc26x2/system_off/sample.yaml
+++ b/samples/boards/ti/cc13x2_cc26x2/system_off/sample.yaml
@@ -3,5 +3,5 @@
tests:
sample.boards.ti.cc13x2_cc26x2.system_off:
build_only: true
- platform_whitelist: cc1352r1_launchxl
+ platform_allow: cc1352r1_launchxl
tags: power
diff --git a/samples/boards/up_squared/gpio_counter/sample.yaml b/samples/boards/up_squared/gpio_counter/sample.yaml
index af33782..defaba8 100644
--- a/samples/boards/up_squared/gpio_counter/sample.yaml
+++ b/samples/boards/up_squared/gpio_counter/sample.yaml
@@ -3,5 +3,5 @@
name: Example of using GPIOs on UP Squared board
tests:
sample.board.up_squared.gpio_counter:
- platform_whitelist: up_squared up_squared_32
+ platform_allow: up_squared up_squared_32
tags: gpio
diff --git a/samples/display/cfb/sample.yaml b/samples/display/cfb/sample.yaml
index c78e397..df57937 100644
--- a/samples/display/cfb/sample.yaml
+++ b/samples/display/cfb/sample.yaml
@@ -6,8 +6,8 @@
name: cfb sample
tests:
sample.display.cfb.ssd1306:
- platform_whitelist: frdm_k64f
+ platform_allow: frdm_k64f
extra_args: SHIELD=ssd1306_128x64
tags: shield
sample.display.cfb.ssd16xx:
- platform_whitelist: reel_board
+ platform_allow: reel_board
diff --git a/samples/display/cfb_custom_font/sample.yaml b/samples/display/cfb_custom_font/sample.yaml
index c026347..d2e7d2d 100644
--- a/samples/display/cfb_custom_font/sample.yaml
+++ b/samples/display/cfb_custom_font/sample.yaml
@@ -6,4 +6,4 @@
name: cfb custom font sample
tests:
sample.display.cfb_custom_font.ssd16xx:
- platform_whitelist: reel_board
+ platform_allow: reel_board
diff --git a/samples/display/cfb_shell/sample.yaml b/samples/display/cfb_shell/sample.yaml
index 9d48f0b..8ee7368 100644
--- a/samples/display/cfb_shell/sample.yaml
+++ b/samples/display/cfb_shell/sample.yaml
@@ -6,8 +6,8 @@
name: cfb shell sample
tests:
sample.display.cfb_shell.ssd1306:
- platform_whitelist: frdm_k64f
+ platform_allow: frdm_k64f
extra_args: SHIELD=ssd1306_128x32
tags: shield
sample.display.cfb_shell.ssd16xx:
- platform_whitelist: reel_board
+ platform_allow: reel_board
diff --git a/samples/display/lvgl/sample.yaml b/samples/display/lvgl/sample.yaml
index 81162fa..cd2211c 100644
--- a/samples/display/lvgl/sample.yaml
+++ b/samples/display/lvgl/sample.yaml
@@ -4,21 +4,21 @@
tests:
sample.gui.lvgl:
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
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
tags: shield
sample.display.waveshare_epaper_gdeh0213b1:
- platform_whitelist: nrf52840dk_nrf52840
+ platform_allow: nrf52840dk_nrf52840
extra_args: SHIELD=waveshare_epaper_gdeh0213b1
tags: shield
sample.display.waveshare_epaper_gdeh0213b72:
- platform_whitelist: nrf52840dk_nrf52840
+ platform_allow: nrf52840dk_nrf52840
extra_args: SHIELD=waveshare_epaper_gdeh0213b72
tags: shield
sample.display.waveshare_epaper_gdeh029a1:
- platform_whitelist: nrf52840dk_nrf52840
+ platform_allow: nrf52840dk_nrf52840
extra_args: SHIELD=waveshare_epaper_gdeh029a1
tags: shield
diff --git a/samples/drivers/counter/alarm/sample.yaml b/samples/drivers/counter/alarm/sample.yaml
index 4408f21..d60bbdd 100644
--- a/samples/drivers/counter/alarm/sample.yaml
+++ b/samples/drivers/counter/alarm/sample.yaml
@@ -4,7 +4,7 @@
sample.drivers.counter.alarm:
tags: drivers
harness: console
- platform_whitelist: nucleo_f746zg nrf51dk_nrf51422 nrf52dk_nrf52832
+ platform_allow: nucleo_f746zg nrf51dk_nrf51422 nrf52dk_nrf52832
nrf52840dk_nrf52840 nrf9160dk_nrf9160 atsamd20_xpro
harness_config:
type: multi_line
diff --git a/samples/drivers/counter/maxim_ds3231/sample.yaml b/samples/drivers/counter/maxim_ds3231/sample.yaml
index a0630d9..4662e36 100644
--- a/samples/drivers/counter/maxim_ds3231/sample.yaml
+++ b/samples/drivers/counter/maxim_ds3231/sample.yaml
@@ -3,4 +3,4 @@
tests:
sample.basic.maxim_ds3231:
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
diff --git a/samples/drivers/crypto/sample.yaml b/samples/drivers/crypto/sample.yaml
index a235722..78b8ea4 100644
--- a/samples/drivers/crypto/sample.yaml
+++ b/samples/drivers/crypto/sample.yaml
@@ -32,6 +32,6 @@
- ".*: GCM Mode"
sample.drivers.crypto.stm32:
tags: crypto
- platform_whitelist: mikroe_mini_m4_for_stm32
+ platform_allow: mikroe_mini_m4_for_stm32
build_only: true
extra_args: CONF_FILE=prj_stm32.conf
diff --git a/samples/drivers/dac/sample.yaml b/samples/drivers/dac/sample.yaml
index dbfc857..8e64e56 100644
--- a/samples/drivers/dac/sample.yaml
+++ b/samples/drivers/dac/sample.yaml
@@ -3,7 +3,7 @@
tests:
sample.drivers.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
harness: console
harness_config:
diff --git a/samples/drivers/display/sample.yaml b/samples/drivers/display/sample.yaml
index 8cb4703..7014667 100644
--- a/samples/drivers/display/sample.yaml
+++ b/samples/drivers/display/sample.yaml
@@ -3,37 +3,37 @@
name: display_sample
tests:
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
tags: display shield
sample.display.shield.ssd1306_128x32:
- platform_whitelist: nrf52840dk_nrf52840
+ platform_allow: nrf52840dk_nrf52840
extra_args: SHIELD=ssd1306_128x32
tags: display shield
sample.display.shield.ssd1306_128x64:
- platform_whitelist: nrf52840dk_nrf52840
+ platform_allow: nrf52840dk_nrf52840
extra_args: SHIELD=ssd1306_128x64
tags: display shield
sample.display.shield.waveshare_epaper_gdeh0213b1:
- platform_whitelist: nrf52840dk_nrf52840
+ platform_allow: nrf52840dk_nrf52840
extra_args: SHIELD=waveshare_epaper_gdeh0213b1
sample.display.st7789v_tl019fqv01:
- platform_whitelist: nrf52dk_nrf52832
+ platform_allow: nrf52dk_nrf52832
extra_args: SHIELD=st7789v_tl019fqv01
tags: display shield
sample.display.st7789v_waveshare_240x240:
- platform_whitelist: nrf52dk_nrf52832
+ platform_allow: nrf52dk_nrf52832
extra_args: SHIELD=st7789v_waveshare_240x240
tags: display shield
sample.display.mcux_elcdif:
- platform_whitelist: mimxrt1050_evk
+ platform_allow: mimxrt1050_evk
tags: display
sample.display.sdl:
build_only: true
- platform_whitelist: native_posix_64
+ platform_allow: native_posix_64
tags: display
sample.display.dummy:
- platform_whitelist: native_posix
+ platform_allow: native_posix
extra_configs:
- CONFIG_DUMMY_DISPLAY=y
- CONFIG_SDL_DISPLAY=n
diff --git a/samples/drivers/ht16k33/sample.yaml b/samples/drivers/ht16k33/sample.yaml
index fc2a02d..ed0ed04 100644
--- a/samples/drivers/ht16k33/sample.yaml
+++ b/samples/drivers/ht16k33/sample.yaml
@@ -3,6 +3,6 @@
name: HT16K33 sample
tests:
sample.drivers.ht16k33:
- platform_whitelist: nrf52840dk_nrf52840
+ platform_allow: nrf52840dk_nrf52840
harness: TBD
tags: LED
diff --git a/samples/drivers/lcd_hd44780/sample.yaml b/samples/drivers/lcd_hd44780/sample.yaml
index 67546c0..565f520 100644
--- a/samples/drivers/lcd_hd44780/sample.yaml
+++ b/samples/drivers/lcd_hd44780/sample.yaml
@@ -2,7 +2,7 @@
name: Display text strings on HD44780 based 20x4 LCD controller
tests:
sample.drivers.lcd.hd44780:
- platform_whitelist: arduino_due
+ platform_allow: arduino_due
tags: display
harness: display
depends_on: gpio
diff --git a/samples/drivers/led_apa102/sample.yaml b/samples/drivers/led_apa102/sample.yaml
index df4c73f..a11bad0 100644
--- a/samples/drivers/led_apa102/sample.yaml
+++ b/samples/drivers/led_apa102/sample.yaml
@@ -3,6 +3,6 @@
name: APA102 sample
tests:
sample.drivers.led.apa102:
- platform_whitelist: nucleo_l432kc
+ platform_allow: nucleo_l432kc
tags: LED
depends_on: spi
diff --git a/samples/drivers/led_lp3943/sample.yaml b/samples/drivers/led_lp3943/sample.yaml
index b86817e..05e4d82 100644
--- a/samples/drivers/led_lp3943/sample.yaml
+++ b/samples/drivers/led_lp3943/sample.yaml
@@ -3,5 +3,5 @@
name: LP3943 sample
tests:
sample.drivers.led.lp3943:
- platform_whitelist: 96b_neonkey 96b_argonkey
+ platform_allow: 96b_neonkey 96b_argonkey
tags: LED
diff --git a/samples/drivers/led_lp5562/sample.yaml b/samples/drivers/led_lp5562/sample.yaml
index ba94531..24b4676 100644
--- a/samples/drivers/led_lp5562/sample.yaml
+++ b/samples/drivers/led_lp5562/sample.yaml
@@ -3,6 +3,6 @@
name: LP5562 sample
tests:
sample.drivers.led.lp5562:
- platform_whitelist: nrf52840dk_nrf52840
+ platform_allow: nrf52840dk_nrf52840
tags: led
harness: TBD
diff --git a/samples/drivers/led_lpd8806/sample.yaml b/samples/drivers/led_lpd8806/sample.yaml
index e8bbd9a..cca50ea 100644
--- a/samples/drivers/led_lpd8806/sample.yaml
+++ b/samples/drivers/led_lpd8806/sample.yaml
@@ -3,5 +3,5 @@
name: LPD880x sample
tests:
sample.drivers.led.lpd8806:
- platform_whitelist: 96b_carbon
+ platform_allow: 96b_carbon
tags: LED
diff --git a/samples/drivers/led_pca9633/sample.yaml b/samples/drivers/led_pca9633/sample.yaml
index a022a80..8996e30 100644
--- a/samples/drivers/led_pca9633/sample.yaml
+++ b/samples/drivers/led_pca9633/sample.yaml
@@ -3,5 +3,5 @@
name: PCA9633 sample
tests:
sample.drivers.led.pca9633:
- platform_whitelist: stm32373c_eval
+ platform_allow: stm32373c_eval
tags: LED
diff --git a/samples/drivers/led_ws2812/sample.yaml b/samples/drivers/led_ws2812/sample.yaml
index ca1fbbb..8851ff7 100644
--- a/samples/drivers/led_ws2812/sample.yaml
+++ b/samples/drivers/led_ws2812/sample.yaml
@@ -3,5 +3,5 @@
name: WS2812 sample
tests:
sample.drivers.led.ws2812:
- platform_whitelist: bbc_microbit nrf51dk_nrf51422 nrf52dk_nrf52832
+ platform_allow: bbc_microbit nrf51dk_nrf51422 nrf52dk_nrf52832
tags: LED
diff --git a/samples/drivers/lora/receive/sample.yaml b/samples/drivers/lora/receive/sample.yaml
index 06233e6..d74b10c 100644
--- a/samples/drivers/lora/receive/sample.yaml
+++ b/samples/drivers/lora/receive/sample.yaml
@@ -5,4 +5,4 @@
name: LoRa Receive Sample
tests:
sample.driver.lora.receive:
- platform_whitelist: 96b_wistrio
+ platform_allow: 96b_wistrio
diff --git a/samples/drivers/lora/send/sample.yaml b/samples/drivers/lora/send/sample.yaml
index 9b6d7dd..ff4bbac 100644
--- a/samples/drivers/lora/send/sample.yaml
+++ b/samples/drivers/lora/send/sample.yaml
@@ -5,4 +5,4 @@
name: LoRa Send Sample
tests:
sample.driver.lora.send:
- platform_whitelist: 96b_wistrio
+ platform_allow: 96b_wistrio
diff --git a/samples/drivers/soc_flash_nrf/sample.yaml b/samples/drivers/soc_flash_nrf/sample.yaml
index 8dbaf8f..9d669b0 100644
--- a/samples/drivers/soc_flash_nrf/sample.yaml
+++ b/samples/drivers/soc_flash_nrf/sample.yaml
@@ -2,7 +2,7 @@
name: SoC Flash on NRF52
tests:
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
harness: console
harness_config:
diff --git a/samples/drivers/watchdog/sample.yaml b/samples/drivers/watchdog/sample.yaml
index 1c87c38..6315af6 100644
--- a/samples/drivers/watchdog/sample.yaml
+++ b/samples/drivers/watchdog/sample.yaml
@@ -26,5 +26,5 @@
- "Waiting for reset..."
- "Watchdog sample application"
depends_on: watchdog
- platform_whitelist: nucleo_l496zg
+ platform_allow: nucleo_l496zg
extra_args: CONF_FILE="prj.conf;nucleo_l496zg.conf"
diff --git a/samples/mpu/mpu_test/sample.yaml b/samples/mpu/mpu_test/sample.yaml
index 7ad32d5..eccffae 100644
--- a/samples/mpu/mpu_test/sample.yaml
+++ b/samples/mpu/mpu_test/sample.yaml
@@ -2,7 +2,7 @@
name: MPU Test
tests:
sample.mpu.mpu_test:
- arch_whitelist: arm
+ arch_allow: arm
filter: CONFIG_CPU_HAS_MPU
tags: mpu
harness: keyboard
diff --git a/samples/net/cloud/mqtt_azure/sample.yaml b/samples/net/cloud/mqtt_azure/sample.yaml
index 4d12723..e458da4 100644
--- a/samples/net/cloud/mqtt_azure/sample.yaml
+++ b/samples/net/cloud/mqtt_azure/sample.yaml
@@ -4,5 +4,5 @@
tests:
sample.net.cloud.mqtt_azure:
harness: net
- platform_whitelist: sam_e70_xplained frdm_k64f qemu_x86
+ platform_allow: sam_e70_xplained frdm_k64f qemu_x86
tags: net mqtt cloud
diff --git a/samples/net/eth_native_posix/sample.yaml b/samples/net/eth_native_posix/sample.yaml
index 5ee4022..1714e5e 100644
--- a/samples/net/eth_native_posix/sample.yaml
+++ b/samples/net/eth_native_posix/sample.yaml
@@ -6,4 +6,4 @@
name: Native posix ethernet demo application
tests:
sample.net.eth_native_posix:
- platform_whitelist: native_posix native_posix_64
+ platform_allow: native_posix native_posix_64
diff --git a/samples/net/gptp/sample.yaml b/samples/net/gptp/sample.yaml
index 5536939..7305aa8 100644
--- a/samples/net/gptp/sample.yaml
+++ b/samples/net/gptp/sample.yaml
@@ -6,5 +6,5 @@
name: gPTP sample app
tests:
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
diff --git a/samples/net/ipv4_autoconf/sample.yaml b/samples/net/ipv4_autoconf/sample.yaml
index 18ed8eb..1ef53cc 100644
--- a/samples/net/ipv4_autoconf/sample.yaml
+++ b/samples/net/ipv4_autoconf/sample.yaml
@@ -1,7 +1,7 @@
common:
harness: net
tags: net ipv4_autoconf
- platform_whitelist: qemu_x86 native_posix native_posix_64
+ platform_allow: qemu_x86 native_posix native_posix_64
sample:
description: Test IPv4 autoconf functionality
name: IPv4 autoconf sample app
diff --git a/samples/net/lldp/sample.yaml b/samples/net/lldp/sample.yaml
index f1ceeba..1014d24 100644
--- a/samples/net/lldp/sample.yaml
+++ b/samples/net/lldp/sample.yaml
@@ -6,5 +6,5 @@
name: LLDP sample app
tests:
sample.net.lldp:
- platform_whitelist: native_posix native_posix_64
+ platform_allow: native_posix native_posix_64
depends_on: netif
diff --git a/samples/net/lwm2m_client/sample.yaml b/samples/net/lwm2m_client/sample.yaml
index 4938ddd..afaebcc 100644
--- a/samples/net/lwm2m_client/sample.yaml
+++ b/samples/net/lwm2m_client/sample.yaml
@@ -5,27 +5,27 @@
sample.net.lwm2m_client:
harness: net
depends_on: netif
- platform_whitelist: qemu_x86 frdm_k64f
+ platform_allow: qemu_x86 frdm_k64f
tags: net lwm2m
sample.net.lwm2m_client.dtls:
harness: net
depends_on: netif
extra_args: OVERLAY_CONFIG=overlay-dtls.conf
- platform_whitelist: qemu_x86 frdm_k64f
+ platform_allow: qemu_x86 frdm_k64f
tags: net lwm2m
sample.net.lwm2m_client.bt:
harness: net
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
sample.net.lwm2m_client.queue_mode:
harness: net
depends_on: netif
extra_args: OVERLAY_CONFIG=overlay-queue.conf
- platform_whitelist: qemu_x86
+ platform_allow: qemu_x86
tags: net lwm2m
sample.net.lwm2m_client.wnc_m14a2a:
harness: net
extra_args: SHIELD=wnc_m14a2a
- platform_whitelist: frdm_k64f nrf52840dk_nrf52840
+ platform_allow: frdm_k64f nrf52840dk_nrf52840
tags: net lwm2m
diff --git a/samples/net/mdns_responder/sample.yaml b/samples/net/mdns_responder/sample.yaml
index 5dd14aa..45006e4 100644
--- a/samples/net/mdns_responder/sample.yaml
+++ b/samples/net/mdns_responder/sample.yaml
@@ -3,5 +3,5 @@
tests:
sample.net.mdns_responder:
harness: net
- platform_whitelist: qemu_x86 qemu_cortex_m3
+ platform_allow: qemu_x86 qemu_cortex_m3
tags: net mdns
diff --git a/samples/net/mqtt_publisher/sample.yaml b/samples/net/mqtt_publisher/sample.yaml
index 29c288b..1dfa554 100644
--- a/samples/net/mqtt_publisher/sample.yaml
+++ b/samples/net/mqtt_publisher/sample.yaml
@@ -6,10 +6,10 @@
tags: net mqtt
tests:
sample.net.mqtt_publisher:
- platform_whitelist: frdm_k64f qemu_x86
+ platform_allow: frdm_k64f qemu_x86
sample.net.mqtt_publisher.userspace:
- platform_whitelist: frdm_k64f qemu_x86
+ platform_allow: frdm_k64f qemu_x86
extra_args: CONFIG_USERSPACE=y
sample.net.mqtt_publisher.bt:
- platform_whitelist: 96b_nitrogen
+ platform_allow: 96b_nitrogen
tags: net mqtt bluetooth
diff --git a/samples/net/sockets/can/sample.yaml b/samples/net/sockets/can/sample.yaml
index 72c6b4a0..0ae6568 100644
--- a/samples/net/sockets/can/sample.yaml
+++ b/samples/net/sockets/can/sample.yaml
@@ -2,7 +2,7 @@
tags: net socket can CAN
depends_on: can
harness: can
- platform_whitelist: stm32f072b_disco nucleo_l432kc
+ platform_allow: stm32f072b_disco nucleo_l432kc
sample:
description: Test BSD sockets CAN support
name: Socket CAN example
diff --git a/samples/net/sockets/civetweb/sample.yaml b/samples/net/sockets/civetweb/sample.yaml
index 319db72..fd5fa43 100644
--- a/samples/net/sockets/civetweb/sample.yaml
+++ b/samples/net/sockets/civetweb/sample.yaml
@@ -3,4 +3,4 @@
name: civetweb
tests:
sample.net.sockets.civetweb:
- platform_whitelist: sam_e70_xplained
+ platform_allow: sam_e70_xplained
diff --git a/samples/net/sockets/coap_client/sample.yaml b/samples/net/sockets/coap_client/sample.yaml
index 99fa7b3..a3be5f3 100644
--- a/samples/net/sockets/coap_client/sample.yaml
+++ b/samples/net/sockets/coap_client/sample.yaml
@@ -5,4 +5,4 @@
sample.net.sockets.coap_client:
harness: net
tags: net socket
- platform_whitelist: qemu_x86
+ platform_allow: qemu_x86
diff --git a/samples/net/sockets/coap_server/sample.yaml b/samples/net/sockets/coap_server/sample.yaml
index 00b6c11..a5b9a82 100644
--- a/samples/net/sockets/coap_server/sample.yaml
+++ b/samples/net/sockets/coap_server/sample.yaml
@@ -5,4 +5,4 @@
sample.net.sockets.coap_server:
harness: net
tags: net socket
- platform_whitelist: qemu_x86
+ platform_allow: qemu_x86
diff --git a/samples/net/sockets/echo/sample.yaml b/samples/net/sockets/echo/sample.yaml
index f41b43c..9f18994 100644
--- a/samples/net/sockets/echo/sample.yaml
+++ b/samples/net/sockets/echo/sample.yaml
@@ -8,5 +8,5 @@
sample.net.sockets.echo:
tags: net socket
sample.net.sockets.echo.offload.simplelink:
- platform_whitelist: cc3220sf_launchxl
+ platform_allow: cc3220sf_launchxl
tags: net socket offload simplelink
diff --git a/samples/net/sockets/echo_async/sample.yaml b/samples/net/sockets/echo_async/sample.yaml
index 9c4b4d1..ab4809f 100644
--- a/samples/net/sockets/echo_async/sample.yaml
+++ b/samples/net/sockets/echo_async/sample.yaml
@@ -5,7 +5,7 @@
common:
filter: TOOLCHAIN_HAS_NEWLIB == 1
harness: net
- platform_whitelist: qemu_x86
+ platform_allow: qemu_x86
tags: net socket
tests:
sample.net.sockets.echo_async:
diff --git a/samples/net/sockets/echo_async_select/sample.yaml b/samples/net/sockets/echo_async_select/sample.yaml
index a32f8c7..34c108c 100644
--- a/samples/net/sockets/echo_async_select/sample.yaml
+++ b/samples/net/sockets/echo_async_select/sample.yaml
@@ -4,7 +4,7 @@
name: socket_echo_async
common:
harness: net
- platform_whitelist: qemu_x86
+ platform_allow: qemu_x86
tags: net socket
tests:
sample.net.sockets.echo_async_select:
diff --git a/samples/net/sockets/echo_client/sample.yaml b/samples/net/sockets/echo_client/sample.yaml
index ee7d824..2ff85e5 100644
--- a/samples/net/sockets/echo_client/sample.yaml
+++ b/samples/net/sockets/echo_client/sample.yaml
@@ -9,49 +9,49 @@
name: Socket Echo Client
tests:
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
sample.net.sockets.echo_client.802154:
extra_args: OVERLAY_CONFIG="overlay-qemu_802154.conf"
- platform_whitelist: qemu_x86
+ platform_allow: qemu_x86
sample.net.sockets.echo_server.802154.rf2xx:
extra_args: OVERLAY_CONFIG="overlay-802154.conf"
- platform_whitelist: atsamr21_xpro
+ platform_allow: atsamr21_xpro
sample.net.sockets.echo_server.802154.rf2xx.xplained:
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:
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:
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:
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:
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:
extra_args: OVERLAY_CONFIG="overlay-bt.conf"
- platform_whitelist: qemu_x86
+ platform_allow: qemu_x86
tags: bluetooth
sample.net.sockets.echo_client.mcr20a:
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:
extra_args: OVERLAY_CONFIG="overlay-802154.conf"
- platform_whitelist: nrf52840dk_nrf52840
+ platform_allow: nrf52840dk_nrf52840
sample.net.sockets.echo_client.nrf_openthread:
extra_args: OVERLAY_CONFIG="overlay-ot.conf"
slow: true
tags: net openthread
- platform_whitelist: nrf52840dk_nrf52840
+ platform_allow: nrf52840dk_nrf52840
sample.net.sockets.echo_client.kw41z_openthread:
extra_args: OVERLAY_CONFIG="overlay-ot.conf"
slow: true
tags: net openthread
- platform_whitelist: frdm_kw41z
+ platform_allow: frdm_kw41z
sample.net.sockets.echo_client.userspace:
extra_args: CONFIG_USERSPACE=y OVERLAY_CONFIG="overlay-e1000.conf"
- platform_whitelist: qemu_x86
+ platform_allow: qemu_x86
diff --git a/samples/net/sockets/echo_server/sample.yaml b/samples/net/sockets/echo_server/sample.yaml
index abc3fd3..e1f2f6b 100644
--- a/samples/net/sockets/echo_server/sample.yaml
+++ b/samples/net/sockets/echo_server/sample.yaml
@@ -9,39 +9,39 @@
name: Socket Echo Server
tests:
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
sample.net.sockets.echo_server.802154:
extra_args: OVERLAY_CONFIG="overlay-qemu_802154.conf"
- platform_whitelist: qemu_x86
+ platform_allow: qemu_x86
sample.net.sockets.echo_server.802154.rf2xx:
extra_args: OVERLAY_CONFIG="overlay-802154.conf"
- platform_whitelist: atsamr21_xpro
+ platform_allow: atsamr21_xpro
sample.net.sockets.echo_server.802154.rf2xx.xplained:
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:
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:
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:
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:
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:
extra_args: OVERLAY_CONFIG="overlay-bt.conf"
- platform_whitelist: qemu_x86
+ platform_allow: qemu_x86
tags: bluetooth
sample.net.sockets.echo_server.mcr20a:
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:
extra_args: OVERLAY_CONFIG="overlay-802154.conf"
- platform_whitelist: nrf52840dk_nrf52840
+ platform_allow: nrf52840dk_nrf52840
sample.net.sockets.echo_server.usbnet:
depends_on: usb_device
harness: net
@@ -58,24 +58,24 @@
extra_args: OVERLAY_CONFIG="overlay-ot.conf"
slow: true
tags: net openthread
- platform_whitelist: nrf52840dk_nrf52840
+ platform_allow: nrf52840dk_nrf52840
sample.net.sockets.echo_server.kw41z_openthread:
extra_args: OVERLAY_CONFIG="overlay-ot.conf"
slow: true
tags: net openthread
- platform_whitelist: frdm_kw41z
+ platform_allow: frdm_kw41z
sample.net.sockets.echo_server.e1000:
extra_args: OVERLAY_CONFIG="overlay-e1000.conf"
tags: net
- platform_whitelist: qemu_x86
+ platform_allow: qemu_x86
sample.net.sockets.echo_server.stellaris:
extra_args: OVERLAY_CONFIG="overlay-qemu_cortex_m3_eth.conf"
tags: net
- platform_whitelist: qemu_cortex_m3
+ platform_allow: qemu_cortex_m3
sample.net.sockets.echo_server.smsc911x:
extra_args: OVERLAY_CONFIG="overlay-smsc911x.conf"
tags: net
- platform_whitelist: mps2_an385
+ platform_allow: mps2_an385
sample.net.sockets.echo_server.userspace:
extra_args: CONFIG_USERSPACE=y OVERLAY_CONFIG="overlay-e1000.conf"
- platform_whitelist: qemu_x86
+ platform_allow: qemu_x86
diff --git a/samples/net/sockets/http_get/sample.yaml b/samples/net/sockets/http_get/sample.yaml
index 1d1ccc9..d7044cb 100644
--- a/samples/net/sockets/http_get/sample.yaml
+++ b/samples/net/sockets/http_get/sample.yaml
@@ -20,5 +20,5 @@
- CONFIG_NET_SOCKETS_POSIX_NAMES=n
- CONFIG_POSIX_API=y
sample.net.sockets.http_get.offload.simplelink:
- platform_whitelist: cc3220sf_launchxl
+ platform_allow: cc3220sf_launchxl
tags: net socket offload simplelink
diff --git a/samples/net/sockets/packet/sample.yaml b/samples/net/sockets/packet/sample.yaml
index 52bb2b6..67230e8 100644
--- a/samples/net/sockets/packet/sample.yaml
+++ b/samples/net/sockets/packet/sample.yaml
@@ -4,5 +4,5 @@
tests:
sample.net.sockets.packet:
harness: net
- platform_whitelist: native_posix native_posix_64
+ platform_allow: native_posix native_posix_64
tags: net sockets packet-socket
diff --git a/samples/net/sockets/sntp_client/sample.yaml b/samples/net/sockets/sntp_client/sample.yaml
index 5889861..5d4b0ab 100644
--- a/samples/net/sockets/sntp_client/sample.yaml
+++ b/samples/net/sockets/sntp_client/sample.yaml
@@ -3,7 +3,7 @@
name: sntp_client
common:
harness: net
- platform_whitelist: qemu_x86
+ platform_allow: qemu_x86
tags: net
tests:
sample.net.sockets.sntp_client:
diff --git a/samples/net/wifi/sample.yaml b/samples/net/wifi/sample.yaml
index 67f3db0..c37cd32 100644
--- a/samples/net/wifi/sample.yaml
+++ b/samples/net/wifi/sample.yaml
@@ -6,10 +6,10 @@
name: WiFi sample app
tests:
sample.net.wifi:
- platform_whitelist: cc3220sf_launchxl disco_l475_iot1
+ platform_allow: cc3220sf_launchxl disco_l475_iot1
sample.net.wifi.esp_8266:
extra_args: SHIELD=esp_8266
- platform_whitelist: sam4e_xpro
+ platform_allow: sam4e_xpro
sample.net.wifi.esp_8266_arduino:
extra_args: SHIELD=esp_8266_arduino
- platform_whitelist: frdm_k64f disco_l475_iot1
+ platform_allow: frdm_k64f disco_l475_iot1
diff --git a/samples/net/wpan_serial/sample.yaml b/samples/net/wpan_serial/sample.yaml
index c9544cf..b721558 100644
--- a/samples/net/wpan_serial/sample.yaml
+++ b/samples/net/wpan_serial/sample.yaml
@@ -10,4 +10,4 @@
depends_on: ieee802154
sample.net.wpan_serial.frdm_cr20a:
extra_args: SHIELD=frdm_cr20a
- platform_whitelist: frdm_k64f
+ platform_allow: frdm_k64f
diff --git a/samples/net/wpanusb/sample.yaml b/samples/net/wpanusb/sample.yaml
index 3cee27a..fe473fb 100644
--- a/samples/net/wpanusb/sample.yaml
+++ b/samples/net/wpanusb/sample.yaml
@@ -10,4 +10,4 @@
depends_on: ieee802154
sample.net.wpanusb_frdm_cr20a:
extra_args: SHIELD=frdm_cr20a
- platform_whitelist: frdm_k64f
+ platform_allow: frdm_k64f
diff --git a/samples/net/zperf/sample.yaml b/samples/net/zperf/sample.yaml
index a660e17..ceece4d 100644
--- a/samples/net/zperf/sample.yaml
+++ b/samples/net/zperf/sample.yaml
@@ -9,7 +9,7 @@
name: zperf
tests:
sample.net.zperf:
- platform_whitelist: qemu_x86
+ platform_allow: qemu_x86
sample.net.zperf.netusb_ecm:
extra_args: OVERLAY_CONFIG="overlay-netusb.conf"
tags: usb net zperf
@@ -29,7 +29,7 @@
tags: usb net zperf
depends_on: usb_device
sample.net.zperf.shield:
- platform_whitelist: reel_board
+ platform_allow: reel_board
extra_args: SHIELD=link_board_eth
tags: shield net zperf
depends_on: arduino_spi arduino_gpio
diff --git a/samples/sensor/adt7420/sample.yaml b/samples/sensor/adt7420/sample.yaml
index 4e8f674..fd24522 100644
--- a/samples/sensor/adt7420/sample.yaml
+++ b/samples/sensor/adt7420/sample.yaml
@@ -4,5 +4,5 @@
sample.sensor.adt7420:
harness: sensor
tags: sensors
- platform_whitelist: frdm_k64f
+ platform_allow: frdm_k64f
depends_on: i2c
diff --git a/samples/sensor/adxl362/sample.yaml b/samples/sensor/adxl362/sample.yaml
index 022a564..3c00078 100644
--- a/samples/sensor/adxl362/sample.yaml
+++ b/samples/sensor/adxl362/sample.yaml
@@ -6,4 +6,4 @@
harness: sensor
tags: sensors
depends_on: spi
- platform_whitelist: nrf52dk_nrf52832
+ platform_allow: nrf52dk_nrf52832
diff --git a/samples/sensor/adxl372/sample.yaml b/samples/sensor/adxl372/sample.yaml
index a2cd708..54bc98e 100644
--- a/samples/sensor/adxl372/sample.yaml
+++ b/samples/sensor/adxl372/sample.yaml
@@ -5,10 +5,10 @@
harness: sensor
tags: sensors
depends_on: spi
- platform_whitelist: nrf52dk_nrf52832
+ platform_allow: nrf52dk_nrf52832
sample.sensor.adxl372.i2c:
harness: sensor
tags: sensors
depends_on: i2c
- platform_whitelist: frdm_k64f
+ platform_allow: frdm_k64f
extra_args: "CONF_FILE=prj_i2c.conf"
diff --git a/samples/sensor/apds9960/sample.yaml b/samples/sensor/apds9960/sample.yaml
index 3bf0b61..b11147e 100644
--- a/samples/sensor/apds9960/sample.yaml
+++ b/samples/sensor/apds9960/sample.yaml
@@ -3,7 +3,7 @@
tests:
sample.sensor.apds9960:
harness: console
- platform_whitelist: reel_board
+ platform_allow: reel_board
tags: sensors
depends_on: i2c gpio
harness_config:
@@ -15,7 +15,7 @@
fixture: fixture_i2c_apds9960
sample.sensor.apds9960.trigger:
harness: console
- platform_whitelist: reel_board
+ platform_allow: reel_board
tags: sensors
depends_on: i2c gpio
extra_configs:
diff --git a/samples/sensor/bme280/sample.yaml b/samples/sensor/bme280/sample.yaml
index ddc535d..fc00e81 100644
--- a/samples/sensor/bme280/sample.yaml
+++ b/samples/sensor/bme280/sample.yaml
@@ -4,7 +4,7 @@
sample.sensor.bme280:
harness: console
tags: sensors
- platform_whitelist: nrf52840dk_nrf52840
+ platform_allow: nrf52840dk_nrf52840
harness_config:
type: one_line
regex:
diff --git a/samples/sensor/bme680/sample.yaml b/samples/sensor/bme680/sample.yaml
index 1ef4861..f46e5af 100644
--- a/samples/sensor/bme680/sample.yaml
+++ b/samples/sensor/bme680/sample.yaml
@@ -4,4 +4,4 @@
sample.sensor.bme680:
harness: sensor
tags: samples sensor
- platform_whitelist: nrf52840dk_nrf52840
+ platform_allow: nrf52840dk_nrf52840
diff --git a/samples/sensor/bq274xx/sample.yaml b/samples/sensor/bq274xx/sample.yaml
index 6c622e4..3bfec5f 100644
--- a/samples/sensor/bq274xx/sample.yaml
+++ b/samples/sensor/bq274xx/sample.yaml
@@ -4,6 +4,6 @@
tests:
sample.sensor.bq274xx:
harness: sensor
- platform_whitelist: nrf9160_innblue22
+ platform_allow: nrf9160_innblue22
tags: sensors
depends_on: i2c
diff --git a/samples/sensor/ccs811/sample.yaml b/samples/sensor/ccs811/sample.yaml
index 3acaf14..b2d4959 100644
--- a/samples/sensor/ccs811/sample.yaml
+++ b/samples/sensor/ccs811/sample.yaml
@@ -11,5 +11,5 @@
sample.sensor.ccs811:
harness: sensor
tags: sensors
- platform_whitelist: thingy52_nrf52832 efr32mg_sltb004a
+ platform_allow: thingy52_nrf52832 efr32mg_sltb004a
depends_on: i2c
diff --git a/samples/sensor/dht/sample.yaml b/samples/sensor/dht/sample.yaml
index 3885989..bab738a 100644
--- a/samples/sensor/dht/sample.yaml
+++ b/samples/sensor/dht/sample.yaml
@@ -9,5 +9,5 @@
tests:
sample.sensor.dht:
build_only: true
- platform_whitelist: nrf52dk_nrf52832
+ platform_allow: nrf52dk_nrf52832
tags: sensors
diff --git a/samples/sensor/fxas21002/sample.yaml b/samples/sensor/fxas21002/sample.yaml
index 93f3cb3..7465631 100644
--- a/samples/sensor/fxas21002/sample.yaml
+++ b/samples/sensor/fxas21002/sample.yaml
@@ -4,4 +4,4 @@
sample.sensor.fxas21002:
harness: sensor
tags: sensors
- platform_whitelist: hexiwear_k64 warp7_m4
+ platform_allow: hexiwear_k64 warp7_m4
diff --git a/samples/sensor/fxos8700-hid/sample.yaml b/samples/sensor/fxos8700-hid/sample.yaml
index 62d7c3e..19388f8 100644
--- a/samples/sensor/fxos8700-hid/sample.yaml
+++ b/samples/sensor/fxos8700-hid/sample.yaml
@@ -3,6 +3,6 @@
tests:
sample.sensor.usb.fxos8700-hid:
depends_on: usb_device
- platform_whitelist: frdm_k64f
+ platform_allow: frdm_k64f
harness: usb
tags: usb sensors
diff --git a/samples/sensor/fxos8700/sample.yaml b/samples/sensor/fxos8700/sample.yaml
index 832d03a..45cb47e 100644
--- a/samples/sensor/fxos8700/sample.yaml
+++ b/samples/sensor/fxos8700/sample.yaml
@@ -6,7 +6,7 @@
name: FXOS8700 Accelerometer/Magnetometer Sensor
tests:
sample.sensor.fxos8700.hybrid:
- platform_whitelist: frdm_k64f hexiwear_k64 warp7_m4 frdm_kw41z
+ platform_allow: frdm_k64f hexiwear_k64 warp7_m4 frdm_kw41z
rv32m1_vega_ri5cy twr_ke18f lpcxpresso55s16_ns
mimxrt685_evk_cm33
extra_configs:
@@ -16,6 +16,6 @@
- CONFIG_FXOS8700_MOTION_INT1=y
- CONFIG_FXOS8700_PM_LOW_POWER=y
sample.sensor.fxos8700.accel:
- platform_whitelist: frdm_kl25z bbc_microbit lpcxpresso55s69_cpu0 reel_board
+ platform_allow: frdm_kl25z bbc_microbit lpcxpresso55s69_cpu0 reel_board
mimxrt685_evk_cm33
extra_args: CONF_FILE=prj_accel.conf
diff --git a/samples/sensor/grove_light/sample.yaml b/samples/sensor/grove_light/sample.yaml
index 5f63509..2e58a9f 100644
--- a/samples/sensor/grove_light/sample.yaml
+++ b/samples/sensor/grove_light/sample.yaml
@@ -3,6 +3,6 @@
tests:
sample.sensor.grove_light:
tags: drivers sensor grove light
- platform_whitelist: nrf52dk_nrf52832
+ platform_allow: nrf52dk_nrf52832
harness: grove
depends_on: adc
diff --git a/samples/sensor/grove_temperature/sample.yaml b/samples/sensor/grove_temperature/sample.yaml
index 63ac779..45297f4 100644
--- a/samples/sensor/grove_temperature/sample.yaml
+++ b/samples/sensor/grove_temperature/sample.yaml
@@ -4,6 +4,6 @@
sample.sensor.grove_temperature:
min_flash: 33
tags: drivers sensor grove temperature
- platform_whitelist: nrf52dk_nrf52832
+ platform_allow: nrf52dk_nrf52832
harness: grove
depends_on: adc
diff --git a/samples/sensor/isl29035/sample.yaml b/samples/sensor/isl29035/sample.yaml
index 2b4909f..231b7a7 100644
--- a/samples/sensor/isl29035/sample.yaml
+++ b/samples/sensor/isl29035/sample.yaml
@@ -4,4 +4,4 @@
sample.sensor.isl29035:
tags: sensors
depends_on: i2c
- platform_whitelist: nrf52dk_nrf52832
+ platform_allow: nrf52dk_nrf52832
diff --git a/samples/sensor/lps22hh/sample.yaml b/samples/sensor/lps22hh/sample.yaml
index 5d85249..a70d316 100644
--- a/samples/sensor/lps22hh/sample.yaml
+++ b/samples/sensor/lps22hh/sample.yaml
@@ -3,7 +3,7 @@
tests:
sample.sensor.lps22hh.nrf52.iks01a3:
harness: console
- platform_whitelist: nrf52dk_nrf52832
+ platform_allow: nrf52dk_nrf52832
tags: sensors
depends_on: i2c
extra_args: SHIELD=x_nucleo_iks01a3
diff --git a/samples/sensor/max30101/sample.yaml b/samples/sensor/max30101/sample.yaml
index 2d7910e..a0b1661 100644
--- a/samples/sensor/max30101/sample.yaml
+++ b/samples/sensor/max30101/sample.yaml
@@ -5,5 +5,5 @@
sample.sensor.max30101:
harness: sensor
tags: sensors
- platform_whitelist: hexiwear_k64
+ platform_allow: hexiwear_k64
depends_on: i2c
diff --git a/samples/sensor/mpr/sample.yaml b/samples/sensor/mpr/sample.yaml
index 17d74bf..cad48f9 100644
--- a/samples/sensor/mpr/sample.yaml
+++ b/samples/sensor/mpr/sample.yaml
@@ -5,4 +5,4 @@
harness: sensor
tags: sensors
depends_on: i2c
- platform_whitelist: arduino_due
+ platform_allow: arduino_due
diff --git a/samples/sensor/mpu6050/sample.yaml b/samples/sensor/mpu6050/sample.yaml
index 55f8c60..e23d232 100644
--- a/samples/sensor/mpu6050/sample.yaml
+++ b/samples/sensor/mpu6050/sample.yaml
@@ -9,5 +9,5 @@
tests:
sample.sensor.mpu6050:
build_only: true
- platform_whitelist: nrf52dk_nrf52832
+ platform_allow: nrf52dk_nrf52832
tags: sensors
diff --git a/samples/sensor/ms5837/sample.yaml b/samples/sensor/ms5837/sample.yaml
index 228909d..d3ef465 100644
--- a/samples/sensor/ms5837/sample.yaml
+++ b/samples/sensor/ms5837/sample.yaml
@@ -4,5 +4,5 @@
tests:
sample.sensor.ms5837:
build_only: true
- platform_whitelist: nrf52840dk_nrf52840
+ platform_allow: nrf52840dk_nrf52840
tags: sensors
diff --git a/samples/sensor/sht3xd/sample.yaml b/samples/sensor/sht3xd/sample.yaml
index 3885d77..860f46a 100644
--- a/samples/sensor/sht3xd/sample.yaml
+++ b/samples/sensor/sht3xd/sample.yaml
@@ -9,12 +9,12 @@
tests:
sample.sensor.sht3xd:
build_only: true
- platform_whitelist: efr32mg_sltb004a frdm_k64f nrf51_ble400
+ platform_allow: efr32mg_sltb004a frdm_k64f nrf51_ble400
nrf52840dk_nrf52840 nucleo_l476rg
tags: sensors
sample.sensor.sht3xd.trigger:
build_only: true
extra_args: CONF_FILE="trigger.conf"
- platform_whitelist: efr32mg_sltb004a frdm_k64f nrf51_ble400
+ platform_allow: efr32mg_sltb004a frdm_k64f nrf51_ble400
nrf52840dk_nrf52840 nucleo_l476rg
tags: sensors
diff --git a/samples/sensor/ti_hdc/sample.yaml b/samples/sensor/ti_hdc/sample.yaml
index 6a78a5d..ba06c2c 100644
--- a/samples/sensor/ti_hdc/sample.yaml
+++ b/samples/sensor/ti_hdc/sample.yaml
@@ -3,6 +3,6 @@
tests:
sample.sensor.ti_hdc:
harness: sensor
- platform_whitelist: reel_board nucleo_l496zg
+ platform_allow: reel_board nucleo_l496zg
tags: sensors
depends_on: i2c
diff --git a/samples/sensor/tmp116/sample.yaml b/samples/sensor/tmp116/sample.yaml
index 9c38d1f..4806ca8 100644
--- a/samples/sensor/tmp116/sample.yaml
+++ b/samples/sensor/tmp116/sample.yaml
@@ -3,7 +3,7 @@
tests:
sample.sensor.tmp116:
harness: console
- platform_whitelist: nucleo_f401re
+ platform_allow: nucleo_f401re
tags: sensors
depends_on: i2c
harness_config:
diff --git a/samples/shields/lmp90100_evb/rtd/sample.yaml b/samples/shields/lmp90100_evb/rtd/sample.yaml
index b9ba32c..1954210 100644
--- a/samples/shields/lmp90100_evb/rtd/sample.yaml
+++ b/samples/shields/lmp90100_evb/rtd/sample.yaml
@@ -3,7 +3,7 @@
name: LMP90100 EVB RTD
tests:
sample.shields.lmp90100_evb.rtd:
- platform_whitelist: frdm_k64f
+ platform_allow: frdm_k64f
harness: shield
tags: shield
depends_on: arduino_spi
diff --git a/samples/subsys/canbus/canopen/sample.yaml b/samples/subsys/canbus/canopen/sample.yaml
index 1a97c04..5872e46 100644
--- a/samples/subsys/canbus/canopen/sample.yaml
+++ b/samples/subsys/canbus/canopen/sample.yaml
@@ -3,7 +3,7 @@
common:
tags: can canopen
depends_on: can
- platform_whitelist: twr_ke18f frdm_k64f
+ platform_allow: twr_ke18f frdm_k64f
harness: console
harness_config:
type: one_line
diff --git a/samples/subsys/fs/fat_fs/sample.yaml b/samples/subsys/fs/fat_fs/sample.yaml
index 179ca0b..8051d75 100644
--- a/samples/subsys/fs/fat_fs/sample.yaml
+++ b/samples/subsys/fs/fat_fs/sample.yaml
@@ -6,4 +6,4 @@
sample.filesystem.fat_fs:
depends_on: sdhc
sample.filesystem.fat_fs.overlay:
- platform_whitelist: nrf52840_blip
+ platform_allow: nrf52840_blip
diff --git a/samples/subsys/fs/littlefs/sample.yaml b/samples/subsys/fs/littlefs/sample.yaml
index a392c1f..fe40bef 100644
--- a/samples/subsys/fs/littlefs/sample.yaml
+++ b/samples/subsys/fs/littlefs/sample.yaml
@@ -3,5 +3,5 @@
tests:
sample.filesystem.littlefs:
build_only: true
- platform_whitelist: nrf52840dk_nrf52840 particle_xenon
+ platform_allow: nrf52840dk_nrf52840 particle_xenon
tags: filesystem
diff --git a/samples/subsys/ipc/ipm_imx/sample.yaml b/samples/subsys/ipc/ipm_imx/sample.yaml
index 30315e3..dc993d9 100644
--- a/samples/subsys/ipc/ipm_imx/sample.yaml
+++ b/samples/subsys/ipc/ipm_imx/sample.yaml
@@ -6,5 +6,5 @@
sample.ipc.ipm.ipm_imx:
build_only: true
filter: CONFIG_SOC_FAMILY_IMX
- platform_whitelist: udoo_neo_full_m4 colibri_imx7d_m4 warp7_m4
+ platform_allow: udoo_neo_full_m4 colibri_imx7d_m4 warp7_m4
tags: samples ipm
diff --git a/samples/subsys/ipc/ipm_mcux/sample.yaml b/samples/subsys/ipc/ipm_mcux/sample.yaml
index 379e4e8..1637fdf 100644
--- a/samples/subsys/ipc/ipm_mcux/sample.yaml
+++ b/samples/subsys/ipc/ipm_mcux/sample.yaml
@@ -4,7 +4,7 @@
name: IPM MCUX Mailbox Sample
tests:
sample.ipc.ipm.ipm_mcux:
- platform_whitelist: lpcxpresso54114_m4
+ platform_allow: lpcxpresso54114_m4
tags: ipm
harness: console
harness_config:
diff --git a/samples/subsys/ipc/ipm_mhu_dual_core/sample.yaml b/samples/subsys/ipc/ipm_mhu_dual_core/sample.yaml
index aeb55ad..7bc03b5 100644
--- a/samples/subsys/ipc/ipm_mhu_dual_core/sample.yaml
+++ b/samples/subsys/ipc/ipm_mhu_dual_core/sample.yaml
@@ -5,4 +5,4 @@
tests:
sample.ipc.ipm.ipm_mhu_dual_core:
tags: ipm
- platform_whitelist: v2m_musca v2m_musca_nonsecure v2m_musca_b1 v2m_musca_b1_nonsecure
+ platform_allow: v2m_musca v2m_musca_nonsecure v2m_musca_b1 v2m_musca_b1_nonsecure
diff --git a/samples/subsys/ipc/openamp/sample.yaml b/samples/subsys/ipc/openamp/sample.yaml
index e17964e..71936ae 100644
--- a/samples/subsys/ipc/openamp/sample.yaml
+++ b/samples/subsys/ipc/openamp/sample.yaml
@@ -4,7 +4,7 @@
name: OpenAMP example integration
tests:
sample.ipc.openamp:
- platform_whitelist: lpcxpresso54114_m4 mps2_an521 v2m_musca v2m_musca_b1
+ platform_allow: lpcxpresso54114_m4 mps2_an521 v2m_musca v2m_musca_b1
tags: ipm
harness: console
harness_config:
diff --git a/samples/subsys/ipc/openamp_rsc_table/sample.yaml b/samples/subsys/ipc/openamp_rsc_table/sample.yaml
index aec9b53..9aabfe4 100644
--- a/samples/subsys/ipc/openamp_rsc_table/sample.yaml
+++ b/samples/subsys/ipc/openamp_rsc_table/sample.yaml
@@ -5,5 +5,5 @@
tests:
sample.subsys.ipc.openamp_rs_table:
build_only: true
- platform_whitelist: stm32mp157c_dk2
+ platform_allow: stm32mp157c_dk2
tags: ipm
diff --git a/samples/subsys/logging/syst/sample.yaml b/samples/subsys/logging/syst/sample.yaml
index 6d9dc67..9d57aee 100644
--- a/samples/subsys/logging/syst/sample.yaml
+++ b/samples/subsys/logging/syst/sample.yaml
@@ -2,7 +2,7 @@
name: syst sample
tests:
sample.logger.syst:
- platform_whitelist: mps2_an385 sam_e70_xplained
+ platform_allow: mps2_an385 sam_e70_xplained
tags: logging
harness: console
harness_config:
diff --git a/samples/subsys/mgmt/mcumgr/smp_svr/sample.yaml b/samples/subsys/mgmt/mcumgr/smp_svr/sample.yaml
index c6ff9f3..d9a6118 100644
--- a/samples/subsys/mgmt/mcumgr/smp_svr/sample.yaml
+++ b/samples/subsys/mgmt/mcumgr/smp_svr/sample.yaml
@@ -7,10 +7,10 @@
tests:
sample.mcumg.smp_svr.bt_tiny:
extra_args: OVERLAY_CONFIG="overlay-bt-tiny.conf"
- platform_whitelist: nrf51dk_nrf51422
+ platform_allow: nrf51dk_nrf51422
sample.mcumg.smp_svr.bt:
extra_args: OVERLAY_CONFIG="overlay-bt.conf"
- platform_whitelist: nrf52dk_nrf52832 nrf52840dk_nrf52840
+ platform_allow: nrf52dk_nrf52832 nrf52840dk_nrf52840
sample.mcumg.smp_svr.udp:
extra_args: OVERLAY_CONFIG="overlay-udp.conf"
- platform_whitelist: frdm_k64f
+ platform_allow: frdm_k64f
diff --git a/samples/subsys/mgmt/updatehub/sample.yaml b/samples/subsys/mgmt/updatehub/sample.yaml
index aa464a7..74debd8 100644
--- a/samples/subsys/mgmt/updatehub/sample.yaml
+++ b/samples/subsys/mgmt/updatehub/sample.yaml
@@ -6,7 +6,7 @@
tags: net wifi updatehub
depends_on: netif
build_only: true
- platform_whitelist: frdm_k64f
+ platform_allow: frdm_k64f
tests:
sample.net.updatehub:
extra_configs:
diff --git a/samples/subsys/power/device_pm/sample.yaml b/samples/subsys/power/device_pm/sample.yaml
index 0ff9252..d1751e5 100644
--- a/samples/subsys/power/device_pm/sample.yaml
+++ b/samples/subsys/power/device_pm/sample.yaml
@@ -2,7 +2,7 @@
name: Device Idle Power Management
tests:
sample.power.ospm.dev_idle_pm:
- platform_whitelist: nrf52840dk_nrf52840 nrf52dk_nrf52832
+ platform_allow: nrf52840dk_nrf52840 nrf52dk_nrf52832
tags: power
harness: console
harness_config:
diff --git a/samples/subsys/settings/sample.yaml b/samples/subsys/settings/sample.yaml
index 5063669..d8247d4 100644
--- a/samples/subsys/settings/sample.yaml
+++ b/samples/subsys/settings/sample.yaml
@@ -5,7 +5,7 @@
sample.subsys.settings:
tags: settings
timeout: 10
- platform_whitelist: qemu_x86 native_posix native_posix_64
+ platform_allow: qemu_x86 native_posix native_posix_64
harness: console
harness_config:
type: multi_line
diff --git a/samples/subsys/shell/fs/sample.yaml b/samples/subsys/shell/fs/sample.yaml
index 4bd2897..d3dfc61 100644
--- a/samples/subsys/shell/fs/sample.yaml
+++ b/samples/subsys/shell/fs/sample.yaml
@@ -3,4 +3,4 @@
name: FS shell
tests:
sample.filesystem.shell:
- platform_whitelist: reel_board
+ platform_allow: reel_board
diff --git a/samples/subsys/tracing/sample.yaml b/samples/subsys/tracing/sample.yaml
index 0fd2824..baab690 100644
--- a/samples/subsys/tracing/sample.yaml
+++ b/samples/subsys/tracing/sample.yaml
@@ -8,13 +8,13 @@
- "thread_b: Hello World from (.*)!"
tests:
tracing.format.sysview:
- platform_whitelist: nrf52840dk_nrf52840
+ platform_allow: nrf52840dk_nrf52840
extra_configs:
- CONFIG_TRACING=y
- CONFIG_SEGGER_SYSTEMVIEW=y
- CONFIG_USE_SEGGER_RTT=y
tracing.format.cpu_stats:
- platform_whitelist: nrf52840dk_nrf52840
+ platform_allow: nrf52840dk_nrf52840
extra_configs:
- CONFIG_TRACING=y
- CONFIG_TRACING_CPU_STATS=y
@@ -26,22 +26,22 @@
arch_exclude: posix xtensa
platform_exclude: qemu_x86_64
tracing.transport.uart:
- platform_whitelist: qemu_x86 qemu_x86_64
+ platform_allow: qemu_x86 qemu_x86_64
extra_args: CONF_FILE="prj_uart.conf"
tracing.transport.usb:
- platform_whitelist: sam_e70_xplained
+ platform_allow: sam_e70_xplained
depends_on: usb_device
extra_args: CONF_FILE="prj_usb.conf"
tracing.transport.ctf:
- platform_whitelist: qemu_x86 qemu_x86_64
+ platform_allow: qemu_x86 qemu_x86_64
extra_args: CONF_FILE="prj_uart_ctf.conf"
tracing.transport.ctf:
- platform_whitelist: sam_e70_xplained
+ platform_allow: sam_e70_xplained
depends_on: usb_device
extra_args: CONF_FILE="prj_usb_ctf.conf"
tracing.transport.native_posix:
- platform_whitelist: native_posix
+ platform_allow: native_posix
extra_args: CONF_FILE="prj_native_posix.conf"
tracing.transport.posix.ctf:
- platform_whitelist: native_posix
+ platform_allow: native_posix
extra_args: CONF_FILE="prj_native_posix_ctf.conf"
diff --git a/samples/subsys/usb/audio/headphones_microphone/sample.yaml b/samples/subsys/usb/audio/headphones_microphone/sample.yaml
index ea32cf7..a6fb8b3 100644
--- a/samples/subsys/usb/audio/headphones_microphone/sample.yaml
+++ b/samples/subsys/usb/audio/headphones_microphone/sample.yaml
@@ -4,4 +4,4 @@
sample.usb.audio.headphones_microphone:
depends_on: usb_device
tags: usb
- platform_whitelist: nrf52840dk_nrf52840
+ platform_allow: nrf52840dk_nrf52840
diff --git a/samples/subsys/usb/audio/headset/sample.yaml b/samples/subsys/usb/audio/headset/sample.yaml
index 6a99b17..13e6963 100644
--- a/samples/subsys/usb/audio/headset/sample.yaml
+++ b/samples/subsys/usb/audio/headset/sample.yaml
@@ -4,4 +4,4 @@
sample.usb.audio.headset:
depends_on: usb_device
tags: usb
- platform_whitelist: nrf52840dk_nrf52840
+ platform_allow: nrf52840dk_nrf52840
diff --git a/samples/subsys/usb/dfu/sample.yaml b/samples/subsys/usb/dfu/sample.yaml
index aeeda03..75965d7 100644
--- a/samples/subsys/usb/dfu/sample.yaml
+++ b/samples/subsys/usb/dfu/sample.yaml
@@ -3,6 +3,6 @@
tests:
sample.usb.dfu:
build_only: True
- platform_whitelist: nrf52840dk_nrf52840 intel_s1000_crb
+ platform_allow: nrf52840dk_nrf52840 intel_s1000_crb
depends_on: usb_device
tags: usb
diff --git a/samples/subsys/usb/hid-cdc/sample.yaml b/samples/subsys/usb/hid-cdc/sample.yaml
index 2bf6b9b..70da3d2 100644
--- a/samples/subsys/usb/hid-cdc/sample.yaml
+++ b/samples/subsys/usb/hid-cdc/sample.yaml
@@ -3,6 +3,6 @@
tests:
sample.usb.hid-cdc:
depends_on: usb_device
- platform_whitelist: nrf52840dk_nrf52840 nrf52840dongle_nrf52840
+ platform_allow: nrf52840dk_nrf52840 nrf52840dongle_nrf52840
harness: button
tags: usb
diff --git a/samples/testing/integration/testcase.yaml b/samples/testing/integration/testcase.yaml
index 523a06e..cb2fe8e 100644
--- a/samples/testing/integration/testcase.yaml
+++ b/samples/testing/integration/testcase.yaml
@@ -2,5 +2,5 @@
# section.subsection
testing.ztest:
build_only: true
- platform_whitelist: native_posix
+ platform_allow: native_posix
tags: testing
diff --git a/samples/tfm_integration/psa_level_1/sample.yaml b/samples/tfm_integration/psa_level_1/sample.yaml
index 6f1c7fd..90904fe 100644
--- a/samples/tfm_integration/psa_level_1/sample.yaml
+++ b/samples/tfm_integration/psa_level_1/sample.yaml
@@ -5,7 +5,7 @@
tests:
sample.tfm_ipc:
tags: introduction
- platform_whitelist: mps2_an521_nonsecure
+ platform_allow: mps2_an521_nonsecure
harness: console
harness_config:
type: multi_line
diff --git a/samples/tfm_integration/tfm_ipc/sample.yaml b/samples/tfm_integration/tfm_ipc/sample.yaml
index 57f3ea9..a072c88 100644
--- a/samples/tfm_integration/tfm_ipc/sample.yaml
+++ b/samples/tfm_integration/tfm_ipc/sample.yaml
@@ -5,7 +5,7 @@
tests:
sample.tfm_ipc:
tags: introduction
- platform_whitelist: mps2_an521_nonsecure
+ platform_allow: mps2_an521_nonsecure
harness: console
harness_config:
type: multi_line
diff --git a/samples/video/capture/sample.yaml b/samples/video/capture/sample.yaml
index 5a0dda9..eb4ecae 100644
--- a/samples/video/capture/sample.yaml
+++ b/samples/video/capture/sample.yaml
@@ -4,5 +4,5 @@
sample.video.capture:
build_only: true
tags: video
- platform_whitelist: mimxrt1064_evk
+ platform_allow: mimxrt1064_evk
depends_on: video
diff --git a/samples/video/tcpserversink/sample.yaml b/samples/video/tcpserversink/sample.yaml
index dd64442..195b82a 100644
--- a/samples/video/tcpserversink/sample.yaml
+++ b/samples/video/tcpserversink/sample.yaml
@@ -4,5 +4,5 @@
sample.video.tcpserversink:
build_only: true
tags: video net socket
- platform_whitelist: mimxrt1064_evk
+ platform_allow: mimxrt1064_evk
depends_on: video netif
diff --git a/scripts/sanity_chk/sanitylib.py b/scripts/sanity_chk/sanitylib.py
index b767af9..633b202 100644
--- a/scripts/sanity_chk/sanitylib.py
+++ b/scripts/sanity_chk/sanitylib.py
@@ -1437,13 +1437,13 @@
self.tags = set()
self.extra_args = None
self.extra_configs = None
- self.arch_whitelist = None
+ self.arch_allow = None
self.arch_exclude = None
self.skip = False
self.platform_exclude = None
- self.platform_whitelist = None
+ self.platform_allow = None
self.toolchain_exclude = None
- self.toolchain_whitelist = None
+ self.toolchain_allow = None
self.tc_filter = None
self.timeout = 60
self.harness = ""
@@ -2134,19 +2134,19 @@
def cleanup_artifacts(self):
logger.debug("Cleaning up {}".format(self.instance.build_dir))
- whitelist = [
+ allow = [
'zephyr/.config',
'handler.log',
'build.log',
'device.log',
'recording.csv',
]
- whitelist = [os.path.join(self.instance.build_dir, file) for file in whitelist]
+ allow = [os.path.join(self.instance.build_dir, file) for file in allow]
for dirpath, dirnames, filenames in os.walk(self.instance.build_dir, topdown=False):
for name in filenames:
path = os.path.join(dirpath, name)
- if path not in whitelist:
+ if path not in allow:
os.remove(path)
# Remove empty directories and symbolic links to directories
for dir in dirnames:
@@ -2321,14 +2321,14 @@
"min_ram": {"type": "int", "default": 8},
"depends_on": {"type": "set"},
"min_flash": {"type": "int", "default": 32},
- "arch_whitelist": {"type": "set"},
+ "arch_allow": {"type": "set"},
"arch_exclude": {"type": "set"},
"extra_sections": {"type": "list", "default": []},
"integration_platforms": {"type": "list", "default": []},
"platform_exclude": {"type": "set"},
- "platform_whitelist": {"type": "set"},
+ "platform_allow": {"type": "set"},
"toolchain_exclude": {"type": "set"},
- "toolchain_whitelist": {"type": "set"},
+ "toolchain_allow": {"type": "set"},
"filter": {"type": "str"},
"harness": {"type": "str"},
"harness_config": {"type": "map", "default": {}}
@@ -2668,13 +2668,13 @@
tc.tags = tc_dict["tags"]
tc.extra_args = tc_dict["extra_args"]
tc.extra_configs = tc_dict["extra_configs"]
- tc.arch_whitelist = tc_dict["arch_whitelist"]
+ tc.arch_allow = tc_dict["arch_allow"]
tc.arch_exclude = tc_dict["arch_exclude"]
tc.skip = tc_dict["skip"]
tc.platform_exclude = tc_dict["platform_exclude"]
- tc.platform_whitelist = tc_dict["platform_whitelist"]
+ tc.platform_allow = tc_dict["platform_allow"]
tc.toolchain_exclude = tc_dict["toolchain_exclude"]
- tc.toolchain_whitelist = tc_dict["toolchain_whitelist"]
+ tc.toolchain_allow = tc_dict["toolchain_allow"]
tc.tc_filter = tc_dict["filter"]
tc.timeout = tc_dict["timeout"]
tc.harness = tc_dict["harness"]
@@ -2833,8 +2833,8 @@
if not force_platform:
- if tc.arch_whitelist and plat.arch not in tc.arch_whitelist:
- discards[instance] = discards.get(instance, "Not in test case arch whitelist")
+ if tc.arch_allow and plat.arch not in tc.arch_allow:
+ discards[instance] = discards.get(instance, "Not in test case arch allow list")
if tc.arch_exclude and plat.arch in tc.arch_exclude:
discards[instance] = discards.get(instance, "In test case arch exclude")
@@ -2848,11 +2848,11 @@
if platform_filter and plat.name not in platform_filter:
discards[instance] = discards.get(instance, "Command line platform filter")
- if tc.platform_whitelist and plat.name not in tc.platform_whitelist:
- discards[instance] = discards.get(instance, "Not in testcase platform whitelist")
+ if tc.platform_allow and plat.name not in tc.platform_allow:
+ discards[instance] = discards.get(instance, "Not in testcase platform allow list")
- if tc.toolchain_whitelist and toolchain not in tc.toolchain_whitelist:
- discards[instance] = discards.get(instance, "Not in testcase toolchain whitelist")
+ if tc.toolchain_allow and toolchain not in tc.toolchain_allow:
+ discards[instance] = discards.get(instance, "Not in testcase toolchain allow list")
if not plat.env_satisfied:
discards[instance] = discards.get(instance, "Environment ({}) not satisfied".format(", ".join(plat.env)))
@@ -2890,9 +2890,9 @@
# if sanitycheck was launched with no platform options at all, we
# take all default platforms
if default_platforms and not tc.build_on_all:
- if tc.platform_whitelist:
+ if tc.platform_allow:
a = set(self.default_platforms)
- b = set(tc.platform_whitelist)
+ b = set(tc.platform_allow)
c = a.intersection(b)
if c:
aa = list(filter(lambda tc: tc.platform.name in c, instance_list))
diff --git a/scripts/sanity_chk/testcase-schema.yaml b/scripts/sanity_chk/testcase-schema.yaml
index b62e5dc..763183c 100644
--- a/scripts/sanity_chk/testcase-schema.yaml
+++ b/scripts/sanity_chk/testcase-schema.yaml
@@ -17,7 +17,7 @@
"arch_exclude":
type: str
required: no
- "arch_whitelist":
+ "arch_allow":
type: str
required: no
"build_only":
@@ -83,7 +83,7 @@
"platform_exclude":
type: str
required: no
- "platform_whitelist":
+ "platform_allow":
type: str
required: no
"tags":
@@ -95,7 +95,7 @@
"toolchain_exclude":
type: str
required: no
- "toolchain_whitelist":
+ "toolchain_allow":
type: str
required: no
"type":
@@ -137,7 +137,7 @@
"arch_exclude":
type: str
required: no
- "arch_whitelist":
+ "arch_allow":
type: str
required: no
"build_only":
@@ -208,7 +208,7 @@
"platform_exclude":
type: str
required: no
- "platform_whitelist":
+ "platform_allow":
type: str
required: no
"tags":
@@ -220,7 +220,7 @@
"toolchain_exclude":
type: str
required: no
- "toolchain_whitelist":
+ "toolchain_allow":
type: str
required: no
"type":
diff --git a/scripts/sanitycheck b/scripts/sanitycheck
index 2db6ec1..3b8bb15 100755
--- a/scripts/sanitycheck
+++ b/scripts/sanitycheck
@@ -67,13 +67,13 @@
Length of time to run test in emulator before automatically killing it.
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.
arch_exclude: <list of arches, such as x86, arm, arc>
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.
platform_exclude: <list of platforms>
@@ -131,7 +131,7 @@
not (right 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
arch_exclude = x86 arc
diff --git a/scripts/tests/sanitycheck/test_testsuite_class.py b/scripts/tests/sanitycheck/test_testsuite_class.py
index cef96d2..0598033 100755
--- a/scripts/tests/sanitycheck/test_testsuite_class.py
+++ b/scripts/tests/sanitycheck/test_testsuite_class.py
@@ -140,12 +140,12 @@
assert "Key error while parsing tests file.('status')" in caplog.text
TESTDATA_PART1 = [
- ("toolchain_whitelist", ['gcc'], None, None, "Not in testcase toolchain whitelist"),
- ("platform_whitelist", ['demo_board_1'], None, None, "Not in testcase platform whitelist"),
+ ("toolchain_allow", ['gcc'], None, None, "Not in testcase toolchain allow list"),
+ ("platform_allow", ['demo_board_1'], None, None, "Not in testcase platform allow list"),
("toolchain_exclude", ['zephyr'], None, None, "In test case toolchain exclude"),
("platform_exclude", ['demo_board_2'], None, None, "In test case platform exclude"),
("arch_exclude", ['x86_demo'], None, None, "In test case arch exclude"),
- ("arch_whitelist", ['arm'], None, None, "Not in test case arch whitelist"),
+ ("arch_allow", ['arm'], None, None, "Not in test case arch allow list"),
("skip", True, None, None, "Skip filter"),
("tags", set(['sensor', 'bluetooth']), "ignore_tags", ['bluetooth'], "Excluded tags per platform (exclude_tags)"),
("min_flash", "2024", "flash", "1024", "Not enough FLASH"),
@@ -184,18 +184,18 @@
if plat_attribute == "supported_toolchains":
plat.supported_toolchains = plat_value
for _, testcase in class_testsuite.testcases.items():
- if tc_attribute == "toolchain_whitelist":
- testcase.toolchain_whitelist = tc_value
- if tc_attribute == "platform_whitelist":
- testcase.platform_whitelist = tc_value
+ if tc_attribute == "toolchain_allow":
+ testcase.toolchain_allow = tc_value
+ if tc_attribute == "platform_allow":
+ testcase.platform_allow = tc_value
if tc_attribute == "toolchain_exclude":
testcase.toolchain_exclude = tc_value
if tc_attribute == "platform_exclude":
testcase.platform_exclude = tc_value
if tc_attribute == "arch_exclude":
testcase.arch_exclude = tc_value
- if tc_attribute == "arch_whitelist":
- testcase.arch_whitelist = tc_value
+ if tc_attribute == "arch_allow":
+ testcase.arch_allow = tc_value
if tc_attribute == "skip":
testcase.skip = tc_value
if tc_attribute == "tags":
diff --git a/tests/arch/arm/arm_interrupt/testcase.yaml b/tests/arch/arm/arm_interrupt/testcase.yaml
index b1779a5..7afa3c7 100644
--- a/tests/arch/arm/arm_interrupt/testcase.yaml
+++ b/tests/arch/arm/arm_interrupt/testcase.yaml
@@ -2,11 +2,11 @@
arch.interrupt.arm:
filter: CONFIG_ARMV6_M_ARMV8_M_BASELINE or CONFIG_ARMV7_M_ARMV8_M_MAINLINE
tags: arm interrupt ignore_faults
- arch_whitelist: arm
+ arch_allow: arm
arch.interrupt.no_optimizations:
filter: CONFIG_ARMV6_M_ARMV8_M_BASELINE or CONFIG_ARMV7_M_ARMV8_M_MAINLINE
tags: arm interrupt ignore_faults
- arch_whitelist: arm
+ arch_allow: arm
extra_configs:
- CONFIG_NO_OPTIMIZATIONS=y
- CONFIG_IDLE_STACK_SIZE=512
diff --git a/tests/arch/arm/arm_irq_advanced_features/testcase.yaml b/tests/arch/arm/arm_irq_advanced_features/testcase.yaml
index ab3c297..96d2730 100644
--- a/tests/arch/arm/arm_irq_advanced_features/testcase.yaml
+++ b/tests/arch/arm/arm_irq_advanced_features/testcase.yaml
@@ -2,4 +2,4 @@
arch.arm.irq_advanced_features:
filter: CONFIG_ARMV6_M_ARMV8_M_BASELINE or CONFIG_ARMV7_M_ARMV8_M_MAINLINE
tags: arm interrupt
- arch_whitelist: arm
+ arch_allow: arm
diff --git a/tests/arch/arm/arm_irq_vector_table/testcase.yaml b/tests/arch/arm/arm_irq_vector_table/testcase.yaml
index 8f5b14a..f0fe443 100644
--- a/tests/arch/arm/arm_irq_vector_table/testcase.yaml
+++ b/tests/arch/arm/arm_irq_vector_table/testcase.yaml
@@ -2,4 +2,4 @@
arch.interrupt.arm.irq_vector_table:
filter: CONFIG_ARMV6_M_ARMV8_M_BASELINE or CONFIG_ARMV7_M_ARMV8_M_MAINLINE
tags: arm interrupt vector_table
- arch_whitelist: arm
+ arch_allow: arm
diff --git a/tests/arch/arm/arm_no_multithreading/testcase.yaml b/tests/arch/arm/arm_no_multithreading/testcase.yaml
index b378226..4717692 100644
--- a/tests/arch/arm/arm_no_multithreading/testcase.yaml
+++ b/tests/arch/arm/arm_no_multithreading/testcase.yaml
@@ -2,5 +2,5 @@
arch.arm.no_multithreading:
filter: CONFIG_ARMV6_M_ARMV8_M_BASELINE or CONFIG_ARMV7_M_ARMV8_M_MAINLINE
tags: arm
- arch_whitelist: arm
+ arch_allow: arm
platform_exclude: degu_evk
diff --git a/tests/arch/arm/arm_ramfunc/testcase.yaml b/tests/arch/arm/arm_ramfunc/testcase.yaml
index 61675b5..89653a8 100644
--- a/tests/arch/arm/arm_ramfunc/testcase.yaml
+++ b/tests/arch/arm/arm_ramfunc/testcase.yaml
@@ -2,4 +2,4 @@
arch.arm.ramfunc:
filter: CONFIG_ARCH_HAS_RAMFUNC_SUPPORT
tags: arm userspace
- arch_whitelist: arm
+ arch_allow: arm
diff --git a/tests/arch/arm/arm_runtime_nmi/testcase.yaml b/tests/arch/arm/arm_runtime_nmi/testcase.yaml
index 3ae34b9..474c19c 100644
--- a/tests/arch/arm/arm_runtime_nmi/testcase.yaml
+++ b/tests/arch/arm/arm_runtime_nmi/testcase.yaml
@@ -1,5 +1,5 @@
tests:
arch.interrupt.arm.nmi:
filter: CONFIG_ARMV6_M_ARMV8_M_BASELINE or CONFIG_ARMV7_M_ARMV8_M_MAINLINE
- arch_whitelist: arm
+ arch_allow: arm
tags: nmi interrupt arm
diff --git a/tests/arch/arm/arm_sw_vector_relay/testcase.yaml b/tests/arch/arm/arm_sw_vector_relay/testcase.yaml
index 5e07c51..d1397b6 100644
--- a/tests/arch/arm/arm_sw_vector_relay/testcase.yaml
+++ b/tests/arch/arm/arm_sw_vector_relay/testcase.yaml
@@ -2,4 +2,4 @@
arch.arm.sw_vector_relay:
filter: CONFIG_ARMV6_M_ARMV8_M_BASELINE or CONFIG_ARMV7_M_ARMV8_M_MAINLINE
tags: arm
- arch_whitelist: arm
+ arch_allow: arm
diff --git a/tests/arch/arm/arm_thread_swap/testcase.yaml b/tests/arch/arm/arm_thread_swap/testcase.yaml
index c4b1b3f..b1bb386 100644
--- a/tests/arch/arm/arm_thread_swap/testcase.yaml
+++ b/tests/arch/arm/arm_thread_swap/testcase.yaml
@@ -1,10 +1,10 @@
tests:
arch.arm.swap.common:
- arch_whitelist: arm
+ arch_allow: arm
filter: CONFIG_ARMV6_M_ARMV8_M_BASELINE or CONFIG_ARMV7_M_ARMV8_M_MAINLINE
tags: arm
arch.arm.swap.common.no_optimizations:
- arch_whitelist: arm
+ arch_allow: arm
filter: CONFIG_ARMV6_M_ARMV8_M_BASELINE or CONFIG_ARMV7_M_ARMV8_M_MAINLINE
extra_configs:
- CONFIG_NO_OPTIMIZATIONS=y
@@ -12,14 +12,14 @@
tags: arm
min_flash: 192
arch.arm.swap.common.fpu_sharing:
- arch_whitelist: arm
+ arch_allow: arm
filter: CONFIG_ARMV7_M_ARMV8_M_FP
extra_configs:
- CONFIG_FPU=y
- CONFIG_FPU_SHARING=y
tags: arm
arch.arm.swap.common.fpu_sharing.no_optimizations:
- arch_whitelist: arm
+ arch_allow: arm
filter: CONFIG_ARMV7_M_ARMV8_M_FP
extra_configs:
- CONFIG_FPU=y
diff --git a/tests/arch/x86/info/testcase.yaml b/tests/arch/x86/info/testcase.yaml
index 0a86999..e5196c4 100644
--- a/tests/arch/x86/info/testcase.yaml
+++ b/tests/arch/x86/info/testcase.yaml
@@ -1,7 +1,7 @@
tests:
arch.x86.info:
- arch_whitelist: x86
- platform_whitelist: up_squared up_squared_32
+ arch_allow: x86
+ platform_allow: up_squared up_squared_32
harness: console
harness_config:
type: one_line
diff --git a/tests/arch/x86/pagetables/testcase.yaml b/tests/arch/x86/pagetables/testcase.yaml
index 825c47e..f6a84d9 100644
--- a/tests/arch/x86/pagetables/testcase.yaml
+++ b/tests/arch/x86/pagetables/testcase.yaml
@@ -1,5 +1,5 @@
tests:
arch.x86.pagetables:
- arch_whitelist: x86
+ arch_allow: x86
tags: userspace mmu
filter: CONFIG_MMU
diff --git a/tests/arch/x86/static_idt/testcase.yaml b/tests/arch/x86/static_idt/testcase.yaml
index ff9e05d..d0b84fa 100644
--- a/tests/arch/x86/static_idt/testcase.yaml
+++ b/tests/arch/x86/static_idt/testcase.yaml
@@ -1,5 +1,5 @@
tests:
arch.interrupt.x86:
- arch_whitelist: x86
+ arch_allow: x86
filter: not CONFIG_X86_64
tags: ignore_faults interrupt idt
diff --git a/tests/benchmarks/app_kernel/testcase.yaml b/tests/benchmarks/app_kernel/testcase.yaml
index a54727d..24f203f 100644
--- a/tests/benchmarks/app_kernel/testcase.yaml
+++ b/tests/benchmarks/app_kernel/testcase.yaml
@@ -1,12 +1,12 @@
tests:
benchmark.kernel.application:
- arch_whitelist: x86 arm
+ arch_allow: x86 arm
min_flash: 34
min_ram: 32
tags: benchmark
slow: true
timeout: 300
benchmark.kernel.application.posix:
- arch_whitelist: posix
+ arch_allow: posix
min_ram: 32
tags: benchmark
diff --git a/tests/benchmarks/boot_time/testcase.yaml b/tests/benchmarks/boot_time/testcase.yaml
index 3411ef7..01a06ad 100644
--- a/tests/benchmarks/boot_time/testcase.yaml
+++ b/tests/benchmarks/boot_time/testcase.yaml
@@ -1,6 +1,6 @@
tests:
benchmark.kernel.boot_time:
- arch_whitelist: x86 arm posix
+ arch_allow: x86 arm posix
platform_exclude: qemu_x86 qemu_x86_coverage qemu_x86_64 qemu_x86_nommu
minnowboard acrn
tags: benchmark
diff --git a/tests/benchmarks/latency_measure/testcase.yaml b/tests/benchmarks/latency_measure/testcase.yaml
index ca02145..aca6f17 100644
--- a/tests/benchmarks/latency_measure/testcase.yaml
+++ b/tests/benchmarks/latency_measure/testcase.yaml
@@ -1,6 +1,6 @@
tests:
benchmark.kernel.latency:
- arch_whitelist: x86 arm posix
+ arch_allow: x86 arm posix
platform_exclude: qemu_x86_64
filter: CONFIG_PRINTK and not CONFIG_SOC_FAMILY_STM32
tags: benchmark
diff --git a/tests/benchmarks/timing_info/testcase.yaml b/tests/benchmarks/timing_info/testcase.yaml
index c4f262e..c8a83cc 100644
--- a/tests/benchmarks/timing_info/testcase.yaml
+++ b/tests/benchmarks/timing_info/testcase.yaml
@@ -12,7 +12,7 @@
benchmark.kernel.timing.userspace:
filter: CONFIG_ARCH_HAS_USERSPACE
extra_args: CONF_FILE=prj_userspace.conf
- arch_whitelist: x86 arm arc
+ arch_allow: x86 arm arc
tags: benchmark userspace
harness: console
harness_config:
diff --git a/tests/bluetooth/at/testcase.yaml b/tests/bluetooth/at/testcase.yaml
index 9420ca0..4e553a1 100644
--- a/tests/bluetooth/at/testcase.yaml
+++ b/tests/bluetooth/at/testcase.yaml
@@ -2,5 +2,5 @@
bluetooth.at:
build_only: true
min_ram: 16
- platform_whitelist: qemu_x86 qemu_cortex_m3
+ platform_allow: qemu_x86 qemu_cortex_m3
tags: bluetooth
diff --git a/tests/bluetooth/bluetooth/testcase.yaml b/tests/bluetooth/bluetooth/testcase.yaml
index 2774975..7ac6b16 100644
--- a/tests/bluetooth/bluetooth/testcase.yaml
+++ b/tests/bluetooth/bluetooth/testcase.yaml
@@ -1,4 +1,4 @@
tests:
bluetooth.general:
- platform_whitelist: qemu_x86 qemu_cortex_m3 native_posix native_posix_64
+ platform_allow: qemu_x86 qemu_cortex_m3 native_posix native_posix_64
tags: bluetooth
diff --git a/tests/bluetooth/ctrl_sw_privacy/testcase.yaml b/tests/bluetooth/ctrl_sw_privacy/testcase.yaml
index c5a0d2c..778606d 100644
--- a/tests/bluetooth/ctrl_sw_privacy/testcase.yaml
+++ b/tests/bluetooth/ctrl_sw_privacy/testcase.yaml
@@ -3,5 +3,4 @@
tags: bluetooth
tests:
bluetooth.ctrl_sw_privacy.test:
- platform_whitelist: nrf52_bsim
-
+ platform_allow: nrf52_bsim
diff --git a/tests/bluetooth/ctrl_sw_privacy_unit/testcase.yaml b/tests/bluetooth/ctrl_sw_privacy_unit/testcase.yaml
index 151d4a2..a965acf 100644
--- a/tests/bluetooth/ctrl_sw_privacy_unit/testcase.yaml
+++ b/tests/bluetooth/ctrl_sw_privacy_unit/testcase.yaml
@@ -2,4 +2,4 @@
tags: bluetooth
tests:
bluetooth.privacy.test:
- platform_whitelist: native_posix
+ platform_allow: native_posix
diff --git a/tests/bluetooth/ctrl_user_ext/testcase.yaml b/tests/bluetooth/ctrl_user_ext/testcase.yaml
index 3c35bbe..af319a7 100644
--- a/tests/bluetooth/ctrl_user_ext/testcase.yaml
+++ b/tests/bluetooth/ctrl_user_ext/testcase.yaml
@@ -3,4 +3,4 @@
tags: bluetooth
tests:
bluetooth.ctrl_user_ext.test:
- platform_whitelist: nrf52_bsim
+ platform_allow: nrf52_bsim
diff --git a/tests/bluetooth/gatt/testcase.yaml b/tests/bluetooth/gatt/testcase.yaml
index fde424b..6d990a6 100644
--- a/tests/bluetooth/gatt/testcase.yaml
+++ b/tests/bluetooth/gatt/testcase.yaml
@@ -1,4 +1,4 @@
tests:
bluetooth.gatt:
- platform_whitelist: native_posix native_posix_64 qemu_x86 qemu_cortex_m3
+ platform_allow: native_posix native_posix_64 qemu_x86 qemu_cortex_m3
tags: bluetooth gatt
diff --git a/tests/bluetooth/hci_prop_evt/testcase.yaml b/tests/bluetooth/hci_prop_evt/testcase.yaml
index e055fa0..86816d7 100644
--- a/tests/bluetooth/hci_prop_evt/testcase.yaml
+++ b/tests/bluetooth/hci_prop_evt/testcase.yaml
@@ -1,4 +1,4 @@
tests:
bluetooth.hci_prop_evt:
- platform_whitelist: qemu_x86 qemu_cortex_m3 native_posix native_posix_64
+ platform_allow: qemu_x86 qemu_cortex_m3 native_posix native_posix_64
tags: bluetooth hci prop event
diff --git a/tests/bluetooth/init/testcase.yaml b/tests/bluetooth/init/testcase.yaml
index c7cac37..033b7bb 100644
--- a/tests/bluetooth/init/testcase.yaml
+++ b/tests/bluetooth/init/testcase.yaml
@@ -3,95 +3,95 @@
tags: bluetooth
tests:
bluetooth.init.test:
- platform_whitelist: qemu_cortex_m3
+ platform_allow: qemu_cortex_m3
bluetooth.init.test_0:
extra_args: CONF_FILE=prj_0.conf
- platform_whitelist: qemu_cortex_m3
+ platform_allow: qemu_cortex_m3
bluetooth.init.test_1:
extra_args: CONF_FILE=prj_1.conf
- platform_whitelist: qemu_cortex_m3
+ platform_allow: qemu_cortex_m3
bluetooth.init.test_10:
extra_args: CONF_FILE=prj_10.conf
- platform_whitelist: qemu_cortex_m3
+ platform_allow: qemu_cortex_m3
bluetooth.init.test_11:
extra_args: CONF_FILE=prj_11.conf
- platform_whitelist: qemu_cortex_m3
+ platform_allow: qemu_cortex_m3
bluetooth.init.test_12:
extra_args: CONF_FILE=prj_12.conf
- platform_whitelist: qemu_cortex_m3
+ platform_allow: qemu_cortex_m3
bluetooth.init.test_13:
extra_args: CONF_FILE=prj_13.conf
- platform_whitelist: qemu_cortex_m3
+ platform_allow: qemu_cortex_m3
bluetooth.init.test_14:
extra_args: CONF_FILE=prj_14.conf
- platform_whitelist: qemu_cortex_m3
+ platform_allow: qemu_cortex_m3
bluetooth.init.test_15:
extra_args: CONF_FILE=prj_15.conf
- platform_whitelist: qemu_cortex_m3
+ platform_allow: qemu_cortex_m3
bluetooth.init.test_16:
extra_args: CONF_FILE=prj_16.conf
- platform_whitelist: qemu_cortex_m3
+ platform_allow: qemu_cortex_m3
bluetooth.init.test_17:
extra_args: CONF_FILE=prj_17.conf
- platform_whitelist: qemu_cortex_m3
+ platform_allow: qemu_cortex_m3
bluetooth.init.test_18:
extra_args: CONF_FILE=prj_18.conf
- platform_whitelist: qemu_cortex_m3
+ platform_allow: qemu_cortex_m3
bluetooth.init.test_19:
extra_args: CONF_FILE=prj_19.conf
- platform_whitelist: qemu_cortex_m3
+ platform_allow: qemu_cortex_m3
bluetooth.init.test_2:
extra_args: CONF_FILE=prj_2.conf
- platform_whitelist: qemu_cortex_m3
+ platform_allow: qemu_cortex_m3
bluetooth.init.test_20:
extra_args: CONF_FILE=prj_20.conf
- platform_whitelist: qemu_cortex_m3
+ platform_allow: qemu_cortex_m3
bluetooth.init.test_21:
extra_args: CONF_FILE=prj_21.conf
- platform_whitelist: qemu_cortex_m3
+ platform_allow: qemu_cortex_m3
bluetooth.init.test_22:
extra_args: CONF_FILE=prj_22.conf
- platform_whitelist: qemu_cortex_m3
+ platform_allow: qemu_cortex_m3
bluetooth.init.test_3:
extra_args: CONF_FILE=prj_3.conf
- platform_whitelist: qemu_cortex_m3
+ platform_allow: qemu_cortex_m3
bluetooth.init.test_4:
extra_args: CONF_FILE=prj_4.conf
- platform_whitelist: qemu_cortex_m3
+ platform_allow: qemu_cortex_m3
bluetooth.init.test_5:
extra_args: CONF_FILE=prj_5.conf
- platform_whitelist: qemu_cortex_m3
+ platform_allow: qemu_cortex_m3
bluetooth.init.test_6:
extra_args: CONF_FILE=prj_6.conf
- platform_whitelist: qemu_cortex_m3
+ platform_allow: qemu_cortex_m3
bluetooth.init.test_7:
extra_args: CONF_FILE=prj_7.conf
- platform_whitelist: qemu_cortex_m3
+ platform_allow: qemu_cortex_m3
bluetooth.init.test_8:
extra_args: CONF_FILE=prj_8.conf
- platform_whitelist: qemu_cortex_m3
+ platform_allow: qemu_cortex_m3
bluetooth.init.test_9:
extra_args: CONF_FILE=prj_9.conf
- platform_whitelist: qemu_cortex_m3
+ platform_allow: qemu_cortex_m3
bluetooth.init.test_controller_ll_sw_split:
extra_args: CONF_FILE=prj_controller_ll_sw_split.conf
- platform_whitelist: nrf52840dk_nrf52840 nrf52dk_nrf52832
+ platform_allow: nrf52840dk_nrf52840 nrf52dk_nrf52832
nrf51dk_nrf51422
bluetooth.init.test_controller_4_0_ll_sw_split:
extra_args: CONF_FILE=prj_controller_4_0_ll_sw_split.conf
- platform_whitelist: nrf52840dk_nrf52840 nrf52dk_nrf52832
+ platform_allow: nrf52840dk_nrf52840 nrf52dk_nrf52832
nrf51dk_nrf51422
bluetooth.init.test_controller_tiny_ll_sw_split:
extra_args: CONF_FILE=prj_controller_tiny_ll_sw_split.conf
- platform_whitelist: nrf52840dk_nrf52840 nrf52dk_nrf52832
+ platform_allow: nrf52840dk_nrf52840 nrf52dk_nrf52832
nrf51dk_nrf51422
bluetooth.init.test_controller_dbg_ll_sw_split:
extra_args: CONF_FILE=prj_controller_dbg_ll_sw_split.conf
- platform_whitelist: nrf52840dk_nrf52840 nrf52dk_nrf52832
+ platform_allow: nrf52840dk_nrf52840 nrf52dk_nrf52832
nrf51dk_nrf51422
bluetooth.init.test_h5:
extra_args: CONF_FILE=prj_h5.conf
- platform_whitelist: qemu_cortex_m3
+ platform_allow: qemu_cortex_m3
bluetooth.init.test_h5_dbg:
extra_args: CONF_FILE=prj_h5_dbg.conf
- platform_whitelist: qemu_cortex_m3
+ platform_allow: qemu_cortex_m3
diff --git a/tests/bluetooth/l2cap/testcase.yaml b/tests/bluetooth/l2cap/testcase.yaml
index f2480e3..7e82ce1 100644
--- a/tests/bluetooth/l2cap/testcase.yaml
+++ b/tests/bluetooth/l2cap/testcase.yaml
@@ -1,4 +1,4 @@
tests:
bluetooth.gatt:
- platform_whitelist: native_posix native_posix_64 qemu_x86 qemu_cortex_m3
+ platform_allow: native_posix native_posix_64 qemu_x86 qemu_cortex_m3
tags: bluetooth l2cap
diff --git a/tests/bluetooth/ll_settings/testcase.yaml b/tests/bluetooth/ll_settings/testcase.yaml
index 541c944..08bcfd4 100644
--- a/tests/bluetooth/ll_settings/testcase.yaml
+++ b/tests/bluetooth/ll_settings/testcase.yaml
@@ -1,4 +1,4 @@
tests:
bluetooth.ll_settings:
- platform_whitelist: nrf52_bsim
+ platform_allow: nrf52_bsim
tags: bluetooth
diff --git a/tests/bluetooth/mesh/testcase.yaml b/tests/bluetooth/mesh/testcase.yaml
index a207dea..08c79d8 100644
--- a/tests/bluetooth/mesh/testcase.yaml
+++ b/tests/bluetooth/mesh/testcase.yaml
@@ -1,40 +1,40 @@
tests:
bluetooth.mesh.main:
build_only: true
- platform_whitelist: qemu_x86 nrf51dk_nrf51422 nrf52840dk_nrf52840
+ platform_allow: qemu_x86 nrf51dk_nrf51422 nrf52840dk_nrf52840
tags: bluetooth mesh
bluetooth.mesh.dbg:
build_only: true
extra_args: CONF_FILE=dbg.conf
- platform_whitelist: qemu_x86 nrf51dk_nrf51422 nrf52840dk_nrf52840
+ platform_allow: qemu_x86 nrf51dk_nrf51422 nrf52840dk_nrf52840
tags: bluetooth mesh
bluetooth.mesh.friend:
build_only: true
extra_args: CONF_FILE=friend.conf
- platform_whitelist: qemu_x86 nrf51dk_nrf51422 nrf52840dk_nrf52840
+ platform_allow: qemu_x86 nrf51dk_nrf51422 nrf52840dk_nrf52840
tags: bluetooth mesh
bluetooth.mesh.gatt:
build_only: true
extra_args: CONF_FILE=gatt.conf
- platform_whitelist: qemu_x86 nrf51dk_nrf51422 nrf52840dk_nrf52840
+ platform_allow: qemu_x86 nrf51dk_nrf51422 nrf52840dk_nrf52840
tags: bluetooth mesh
bluetooth.mesh.lpn:
build_only: true
extra_args: CONF_FILE=lpn.conf
- platform_whitelist: qemu_x86 nrf51dk_nrf51422 nrf52840dk_nrf52840
+ platform_allow: qemu_x86 nrf51dk_nrf51422 nrf52840dk_nrf52840
tags: bluetooth mesh
bluetooth.mesh.main.microbit:
build_only: true
extra_args: CONF_FILE=microbit.conf
- platform_whitelist: bbc_microbit
+ platform_allow: bbc_microbit
tags: bluetooth mesh
bluetooth.mesh.pb_gatt:
build_only: true
extra_args: CONF_FILE=pb_gatt.conf
- platform_whitelist: qemu_x86 nrf51dk_nrf51422 nrf52840dk_nrf52840
+ platform_allow: qemu_x86 nrf51dk_nrf51422 nrf52840dk_nrf52840
tags: bluetooth mesh
bluetooth.mesh.proxy:
build_only: true
extra_args: CONF_FILE=proxy.conf
- platform_whitelist: qemu_x86 nrf51dk_nrf51422 nrf52840dk_nrf52840
+ platform_allow: qemu_x86 nrf51dk_nrf51422 nrf52840dk_nrf52840
tags: bluetooth mesh
diff --git a/tests/bluetooth/mesh_shell/testcase.yaml b/tests/bluetooth/mesh_shell/testcase.yaml
index 4da04f1..0f69d4e 100644
--- a/tests/bluetooth/mesh_shell/testcase.yaml
+++ b/tests/bluetooth/mesh_shell/testcase.yaml
@@ -1,6 +1,6 @@
tests:
bluetooth.mesh.mesh_shell:
- platform_whitelist: qemu_cortex_m3 qemu_x86 nrf51dk_nrf51422
+ platform_allow: qemu_cortex_m3 qemu_x86 nrf51dk_nrf51422
platform_exclude: nrf52dk_nrf52810
tags: bluetooth
harness: keyboard
diff --git a/tests/bluetooth/shell/testcase.yaml b/tests/bluetooth/shell/testcase.yaml
index 3873c18..ea4593b 100644
--- a/tests/bluetooth/shell/testcase.yaml
+++ b/tests/bluetooth/shell/testcase.yaml
@@ -2,7 +2,7 @@
bluetooth.shell.main:
extra_configs:
- CONFIG_NATIVE_UART_0_ON_STDINOUT=y
- platform_whitelist: qemu_cortex_m3 qemu_x86 native_posix native_posix_64 nrf52840dk_nrf52840
+ platform_allow: qemu_cortex_m3 qemu_x86 native_posix native_posix_64 nrf52840dk_nrf52840
platform_exclude: nrf52dk_nrf52810
tags: bluetooth
harness: keyboard
@@ -11,12 +11,12 @@
extra_configs:
- CONFIG_NATIVE_UART_0_ON_STDINOUT=y
extra_args: CONF_FILE="prj_br.conf"
- platform_whitelist: qemu_cortex_m3 qemu_x86 native_posix native_posix_64
+ platform_allow: qemu_cortex_m3 qemu_x86 native_posix native_posix_64
platform_exclude: nrf52dk_nrf52810
tags: bluetooth
harness: keyboard
bluetooth.shell.no_privacy:
build_only: true
extra_args: CONFIG_BT_PRIVACY=n
- platform_whitelist: native_posix
+ platform_allow: native_posix
tags: bluetooth
diff --git a/tests/bluetooth/tester/testcase.yaml b/tests/bluetooth/tester/testcase.yaml
index ef8e0b2..3b2f23b 100644
--- a/tests/bluetooth/tester/testcase.yaml
+++ b/tests/bluetooth/tester/testcase.yaml
@@ -1,5 +1,5 @@
tests:
bluetooth.general.tester:
- platform_whitelist: qemu_x86
+ platform_allow: qemu_x86
tags: bluetooth
harness: bluetooth
diff --git a/tests/bluetooth/uuid/testcase.yaml b/tests/bluetooth/uuid/testcase.yaml
index 1ebebec..90772f5 100644
--- a/tests/bluetooth/uuid/testcase.yaml
+++ b/tests/bluetooth/uuid/testcase.yaml
@@ -1,4 +1,4 @@
tests:
bluetooth.gatt:
- platform_whitelist: native_posix native_posix_64 qemu_x86 qemu_cortex_m3
+ platform_allow: native_posix native_posix_64 qemu_x86 qemu_cortex_m3
tags: bluetooth uuid
diff --git a/tests/boards/altera_max10/i2c_master/testcase.yaml b/tests/boards/altera_max10/i2c_master/testcase.yaml
index 9468622..dcdef34 100644
--- a/tests/boards/altera_max10/i2c_master/testcase.yaml
+++ b/tests/boards/altera_max10/i2c_master/testcase.yaml
@@ -1,4 +1,4 @@
tests:
boards.altera_max10.i2c_master:
- platform_whitelist: altera_max10
+ platform_allow: altera_max10
tags: i2c
diff --git a/tests/boards/altera_max10/msgdma/testcase.yaml b/tests/boards/altera_max10/msgdma/testcase.yaml
index a47ab60..5208244 100644
--- a/tests/boards/altera_max10/msgdma/testcase.yaml
+++ b/tests/boards/altera_max10/msgdma/testcase.yaml
@@ -1,4 +1,4 @@
tests:
boards.altera_max10.dma:
- platform_whitelist: altera_max10
+ platform_allow: altera_max10
tags: dma
diff --git a/tests/boards/altera_max10/qspi/testcase.yaml b/tests/boards/altera_max10/qspi/testcase.yaml
index 73f35f2..338e85e 100644
--- a/tests/boards/altera_max10/qspi/testcase.yaml
+++ b/tests/boards/altera_max10/qspi/testcase.yaml
@@ -1,4 +1,4 @@
tests:
boards.altera_max10.qspi:
- platform_whitelist: altera_max10
+ platform_allow: altera_max10
tags: qspi flash
diff --git a/tests/boards/altera_max10/sysid/testcase.yaml b/tests/boards/altera_max10/sysid/testcase.yaml
index 1c5db3c..c38c908 100644
--- a/tests/boards/altera_max10/sysid/testcase.yaml
+++ b/tests/boards/altera_max10/sysid/testcase.yaml
@@ -1,4 +1,4 @@
tests:
boards.altera_max10.sysid:
- platform_whitelist: altera_max10
+ platform_allow: altera_max10
tags: sysid
diff --git a/tests/boards/intel_s1000_crb/cache/testcase.yaml b/tests/boards/intel_s1000_crb/cache/testcase.yaml
index 95b4bf0..99e827a 100644
--- a/tests/boards/intel_s1000_crb/cache/testcase.yaml
+++ b/tests/boards/intel_s1000_crb/cache/testcase.yaml
@@ -1,4 +1,4 @@
tests:
boards.s1000_crb.cache:
- platform_whitelist: intel_s1000_crb
+ platform_allow: intel_s1000_crb
tags: boards
diff --git a/tests/boards/intel_s1000_crb/main/testcase.yaml b/tests/boards/intel_s1000_crb/main/testcase.yaml
index 6c08b0b..d081e33 100644
--- a/tests/boards/intel_s1000_crb/main/testcase.yaml
+++ b/tests/boards/intel_s1000_crb/main/testcase.yaml
@@ -1,4 +1,4 @@
tests:
boards.s1000_crb.main:
- platform_whitelist: intel_s1000_crb
+ platform_allow: intel_s1000_crb
tags: boards
diff --git a/tests/boards/native_posix/native_tasks/testcase.yaml b/tests/boards/native_posix/native_tasks/testcase.yaml
index dcf0750..7fd9ecc 100644
--- a/tests/boards/native_posix/native_tasks/testcase.yaml
+++ b/tests/boards/native_posix/native_tasks/testcase.yaml
@@ -1,5 +1,5 @@
tests:
boards.native_posix.native_tasks:
- arch_whitelist: posix
+ arch_allow: posix
boards.native_posix_64.native_tasks:
- arch_whitelist: posix
+ arch_allow: posix
diff --git a/tests/boards/native_posix/rtc/testcase.yaml b/tests/boards/native_posix/rtc/testcase.yaml
index 4e08e85..162c5f1 100644
--- a/tests/boards/native_posix/rtc/testcase.yaml
+++ b/tests/boards/native_posix/rtc/testcase.yaml
@@ -1,7 +1,7 @@
# Test of the native_posix real timenes and RTC model
tests:
boards.native_posix.rtc:
- platform_whitelist: native_posix native_posix_64
+ platform_allow: native_posix native_posix_64
build_only: true
#Note: this test depends too much on not having a high host load to pass.
# Therefore it should not be run in automated regression
diff --git a/tests/deprecated/dts/testcase.yaml b/tests/deprecated/dts/testcase.yaml
index 692d6c7..cae0776 100644
--- a/tests/deprecated/dts/testcase.yaml
+++ b/tests/deprecated/dts/testcase.yaml
@@ -1,4 +1,4 @@
tests:
dts.build.build:
build_only: true
- platform_whitelist: frdm_k64f
+ platform_allow: frdm_k64f
diff --git a/tests/drivers/clock_control/clock_control_api/testcase.yaml b/tests/drivers/clock_control/clock_control_api/testcase.yaml
index d6bcd44..f4a6b78 100644
--- a/tests/drivers/clock_control/clock_control_api/testcase.yaml
+++ b/tests/drivers/clock_control/clock_control_api/testcase.yaml
@@ -1,9 +1,9 @@
tests:
drivers.clock.clock_control_nrf5:
tags: drivers
- platform_whitelist: nrf51dk_nrf51422 nrf52dk_nrf52832 nrf52840dk_nrf52840
+ platform_allow: nrf51dk_nrf51422 nrf52dk_nrf52832 nrf52840dk_nrf52840
nrf9160dk_nrf9160
drivers.clock.clock_control_nrf5_lfclk_rc:
tags: drivers
- platform_whitelist: nrf51dk_nrf51422 nrf52dk_nrf52832 nrf52840dk_nrf52840
+ platform_allow: nrf51dk_nrf51422 nrf52dk_nrf52832 nrf52840dk_nrf52840
extra_args: CONF_FILE="nrf_lfclk_rc.conf"
diff --git a/tests/drivers/clock_control/nrf_clock_calibration/testcase.yaml b/tests/drivers/clock_control/nrf_clock_calibration/testcase.yaml
index 10b3abc..50efcbb 100644
--- a/tests/drivers/clock_control/nrf_clock_calibration/testcase.yaml
+++ b/tests/drivers/clock_control/nrf_clock_calibration/testcase.yaml
@@ -1,4 +1,4 @@
tests:
drivers.clock.nrf5_clock_calibration:
tags: drivers
- platform_whitelist: nrf51dk_nrf51422 nrf52dk_nrf52832 nrf52840dk_nrf52840
+ platform_allow: nrf51dk_nrf51422 nrf52dk_nrf52832 nrf52840dk_nrf52840
diff --git a/tests/drivers/clock_control/nrf_onoff_and_bt/testcase.yaml b/tests/drivers/clock_control/nrf_onoff_and_bt/testcase.yaml
index 5cce73d..ee3ccb0 100644
--- a/tests/drivers/clock_control/nrf_onoff_and_bt/testcase.yaml
+++ b/tests/drivers/clock_control/nrf_onoff_and_bt/testcase.yaml
@@ -1,4 +1,4 @@
tests:
drivers.clock.nrf_onoff_and_bt:
tags: drivers
- platform_whitelist: nrf51dk_nrf51422 nrf52dk_nrf52832 nrf52840dk_nrf52840
+ platform_allow: nrf51dk_nrf51422 nrf52dk_nrf52832 nrf52840dk_nrf52840
diff --git a/tests/drivers/clock_control/onoff/testcase.yaml b/tests/drivers/clock_control/onoff/testcase.yaml
index 5b77293..c29fcc3 100644
--- a/tests/drivers/clock_control/onoff/testcase.yaml
+++ b/tests/drivers/clock_control/onoff/testcase.yaml
@@ -1,5 +1,5 @@
tests:
drivers.clock.clock_control_onoff:
tags: drivers
- platform_whitelist: nrf51dk_nrf51422 nrf52dk_nrf52832 nrf52840dk_nrf52840
+ platform_allow: nrf51dk_nrf51422 nrf52dk_nrf52832 nrf52840dk_nrf52840
nrf9160dk_nrf9160
diff --git a/tests/drivers/console/testcase.yaml b/tests/drivers/console/testcase.yaml
index ed89698..c6c753c 100644
--- a/tests/drivers/console/testcase.yaml
+++ b/tests/drivers/console/testcase.yaml
@@ -12,6 +12,6 @@
filter: CONFIG_UART_CONSOLE
drivers.console.semihost:
tags: drivers console
- arch_whitelist: arm
+ arch_allow: arm
filter: CONFIG_CPU_CORTEX_M and CONFIG_QEMU_TARGET
extra_args: CONF_FILE=prj_semihost.conf
diff --git a/tests/drivers/counter/counter_cmos/testcase.yaml b/tests/drivers/counter/counter_cmos/testcase.yaml
index abbe05b..85fdfd7 100644
--- a/tests/drivers/counter/counter_cmos/testcase.yaml
+++ b/tests/drivers/counter/counter_cmos/testcase.yaml
@@ -1,4 +1,4 @@
tests:
drivers.counter.cmos:
tags: drivers
- arch_whitelist: x86
+ arch_allow: x86
diff --git a/tests/drivers/counter/counter_nrf_rtc/fixed_top/testcase.yaml b/tests/drivers/counter/counter_nrf_rtc/fixed_top/testcase.yaml
index 95a7d75..8657c43 100644
--- a/tests/drivers/counter/counter_nrf_rtc/fixed_top/testcase.yaml
+++ b/tests/drivers/counter/counter_nrf_rtc/fixed_top/testcase.yaml
@@ -2,4 +2,4 @@
drivers.counter:
tags: drivers
depends_on: counter
- platform_whitelist: nrf52840dk_nrf52840
+ platform_allow: nrf52840dk_nrf52840
diff --git a/tests/drivers/dac/dac_api/testcase.yaml b/tests/drivers/dac/dac_api/testcase.yaml
index 3e66714..d671d87 100644
--- a/tests/drivers/dac/dac_api/testcase.yaml
+++ b/tests/drivers/dac/dac_api/testcase.yaml
@@ -2,5 +2,5 @@
tags: dac drivers userspace
tests:
drivers.dac:
- platform_whitelist: frdm_k64f nucleo_l073rz nucleo_l152re twr_ke18f
+ platform_allow: frdm_k64f nucleo_l073rz nucleo_l152re twr_ke18f
depends_on: dac
diff --git a/tests/drivers/eeprom/testcase.yaml b/tests/drivers/eeprom/testcase.yaml
index e36fef0..b01d5bd 100644
--- a/tests/drivers/eeprom/testcase.yaml
+++ b/tests/drivers/eeprom/testcase.yaml
@@ -1,6 +1,6 @@
tests:
peripheral.eeprom:
- platform_whitelist: native_posix native_posix_64 qemu_x86
+ platform_allow: native_posix native_posix_64 qemu_x86
tags: drivers userspace
peripheral.eeprom.generic:
build_only: true
diff --git a/tests/drivers/flash/testcase.yaml b/tests/drivers/flash/testcase.yaml
index 33f1727..eb52c50 100644
--- a/tests/drivers/flash/testcase.yaml
+++ b/tests/drivers/flash/testcase.yaml
@@ -1,9 +1,9 @@
tests:
drivers.flash.nrf_qspi_nor:
- platform_whitelist: nrf52840dk_nrf52840
+ platform_allow: nrf52840dk_nrf52840
tags: flash nrf52 nrf_qspi_fash
extra_args: OVERLAY_CONFIG=boards/nrf52840_flash_qspi.conf
drivers.flash.soc_flash_nrf:
- platform_whitelist: nrf52840dk_nrf52840
+ platform_allow: nrf52840dk_nrf52840
tags: nrf52 soc_flash_nrf
extra_args: OVERLAY_CONFIG=boards/nrf52840_flash_soc.conf
diff --git a/tests/drivers/flash_simulator/testcase.yaml b/tests/drivers/flash_simulator/testcase.yaml
index ef94e83..812251b 100644
--- a/tests/drivers/flash_simulator/testcase.yaml
+++ b/tests/drivers/flash_simulator/testcase.yaml
@@ -1,16 +1,16 @@
tests:
drivers.flash.flash_simulator:
- platform_whitelist: qemu_x86 native_posix native_posix_64
+ platform_allow: qemu_x86 native_posix native_posix_64
tags: driver
drivers.flash.flash_simulator.qemu_erase_value_0x00:
extra_args: DTC_OVERLAY_FILE=boards/qemu_x86_ev_0x00.overlay
- platform_whitelist: qemu_x86
+ platform_allow: qemu_x86
tags: driver
drivers.flash.flash_simulator.posix_erase_value_0x00:
extra_args: DTC_OVERLAY_FILE=boards/native_posix_ev_0x00.overlay
- platform_whitelist: native_posix
+ platform_allow: native_posix
tags: driver
drivers.flash.flash_simulator.posix_64_erase_value_0x00:
extra_args: DTC_OVERLAY_FILE=boards/native_posix_64_ev_0x00.overlay
- platform_whitelist: native_posix_64
+ platform_allow: native_posix_64
tags: driver
diff --git a/tests/drivers/i2c/i2c_slave_api/testcase.yaml b/tests/drivers/i2c/i2c_slave_api/testcase.yaml
index 0210c09..3c45c7d 100644
--- a/tests/drivers/i2c/i2c_slave_api/testcase.yaml
+++ b/tests/drivers/i2c/i2c_slave_api/testcase.yaml
@@ -5,4 +5,4 @@
harness: ztest
harness_config:
fixture: i2c_bus_short
- platform_whitelist: nucleo_f091rc stm32f072b_disco
+ platform_allow: nucleo_f091rc stm32f072b_disco
diff --git a/tests/drivers/kscan/kscan_api/testcase.yaml b/tests/drivers/kscan/kscan_api/testcase.yaml
index 466225c..c7c4ed0 100644
--- a/tests/drivers/kscan/kscan_api/testcase.yaml
+++ b/tests/drivers/kscan/kscan_api/testcase.yaml
@@ -7,4 +7,4 @@
depends_on: kscan
tags: drivers kscan
extra_args: CONF_FILE="mec15xxevb_assy6853.conf"
- platform_whitelist: mec15xxevb_assy6853
+ platform_allow: mec15xxevb_assy6853
diff --git a/tests/drivers/watchdog/wdt_basic_api/testcase.yaml b/tests/drivers/watchdog/wdt_basic_api/testcase.yaml
index baa5a62..8530bb3 100644
--- a/tests/drivers/watchdog/wdt_basic_api/testcase.yaml
+++ b/tests/drivers/watchdog/wdt_basic_api/testcase.yaml
@@ -8,9 +8,9 @@
depends_on: watchdog
tags: drivers watchdog
extra_args: CONF_FILE="prj.conf;nucleo_l496zg.conf"
- platform_whitelist: nucleo_l496zg
+ platform_allow: nucleo_l496zg
drivers.watchdog.mec15xxevb_assy6853:
depends_on: watchdog
tags: drivers watchdog
build_only: true
- platform_whitelist: mec15xxevb_assy6853
+ platform_allow: mec15xxevb_assy6853
diff --git a/tests/kernel/fatal/testcase.yaml b/tests/kernel/fatal/testcase.yaml
index 875e3e9..5ba2d8e 100644
--- a/tests/kernel/fatal/testcase.yaml
+++ b/tests/kernel/fatal/testcase.yaml
@@ -7,7 +7,7 @@
kernel.common.stack_protection_no_userspace:
extra_args: CONF_FILE=protection_no_userspace.conf
filter: CONFIG_ARCH_HAS_STACK_PROTECTION
- arch_whitelist: arm
+ arch_allow: arm
tags: kernel ignore_faults memory_protection
kernel.common.stack_protection_arm_fpu_sharing:
extra_args: CONF_FILE=prj_arm_fpu_sharing.conf
@@ -17,7 +17,7 @@
kernel.common.stack_protection_armv8m_mpu_stack_guard:
extra_args: CONF_FILE=prj_armv8m_mpu_stack_guard.conf
filter: CONFIG_ARM_MPU and CONFIG_ARMV8_M_MAINLINE
- arch_whitelist: arm
+ arch_allow: arm
tags: kernel ignore_faults userspace
kernel.common.stack_sentinel:
extra_args: CONF_FILE=sentinel.conf
diff --git a/tests/kernel/fpu_sharing/float_disable/testcase.yaml b/tests/kernel/fpu_sharing/float_disable/testcase.yaml
index 6af5740..ae39f89 100644
--- a/tests/kernel/fpu_sharing/float_disable/testcase.yaml
+++ b/tests/kernel/fpu_sharing/float_disable/testcase.yaml
@@ -1,20 +1,20 @@
tests:
kernel.fpu_sharing.float_disable.arm:
- arch_whitelist: arm
+ arch_allow: arm
filter: CONFIG_ARMV7_M_ARMV8_M_FP
extra_configs:
- CONFIG_DYNAMIC_INTERRUPTS=y
tags: kernel userspace
kernel.fpu_sharing.float_disable.riscv32:
filter: CONFIG_CPU_HAS_FPU
- arch_whitelist: riscv32
+ arch_allow: riscv32
tags: kernel userspace
build_only: true
kernel.fpu_sharing.float_disable.riscv64:
filter: CONFIG_CPU_HAS_FPU
- arch_whitelist: riscv64
+ arch_allow: riscv64
tags: kernel userspace
kernel.fpu_sharing.float_disable.x86:
extra_args: CONF_FILE=prj_x86.conf
- platform_whitelist: qemu_x86
+ platform_allow: qemu_x86
tags: kernel userspace
diff --git a/tests/kernel/fpu_sharing/generic/testcase.yaml b/tests/kernel/fpu_sharing/generic/testcase.yaml
index a30239f..ecb2879 100644
--- a/tests/kernel/fpu_sharing/generic/testcase.yaml
+++ b/tests/kernel/fpu_sharing/generic/testcase.yaml
@@ -17,7 +17,7 @@
extra_args: PI_NUM_ITERATIONS=500
filter: CONFIG_CPU_HAS_FPU
slow: true
- arch_whitelist: riscv32
+ arch_allow: riscv32
tags: kernel
timeout: 600
min_ram: 16
@@ -26,13 +26,13 @@
extra_args: PI_NUM_ITERATIONS=500
filter: CONFIG_CPU_HAS_FPU
slow: true
- arch_whitelist: riscv64
+ arch_allow: riscv64
tags: kernel
timeout: 600
min_ram: 16
kernel.fpu_sharing.generic.x86:
extra_args: CONF_FILE=prj_x86.conf
- platform_whitelist: qemu_x86
+ platform_allow: qemu_x86
slow: true
tags: kernel
timeout: 600
diff --git a/tests/kernel/gen_isr_table/testcase.yaml b/tests/kernel/gen_isr_table/testcase.yaml
index 7bd0bd1..3e1d87c 100644
--- a/tests/kernel/gen_isr_table/testcase.yaml
+++ b/tests/kernel/gen_isr_table/testcase.yaml
@@ -1,6 +1,6 @@
tests:
arch.interrupt.gen_isr_table.arm_baseline:
- platform_whitelist: bbc_microbit atsamr21_xpro nrf51dk_nrf51422 nucleo_g071rb qemu_cortex_m0
+ platform_allow: bbc_microbit atsamr21_xpro nrf51dk_nrf51422 nucleo_g071rb qemu_cortex_m0
filter: CONFIG_GEN_ISR_TABLES and CONFIG_ARMV6_M_ARMV8_M_BASELINE
tags: interrupt isr_table
arch.interrupt.gen_isr_table.arm_mainline:
@@ -10,7 +10,7 @@
filter: CONFIG_GEN_ISR_TABLES and CONFIG_ARMV7_M_ARMV8_M_MAINLINE
tags: interrupt isr_table
arch.interrupt.gen_isr_table.arc:
- arch_whitelist: arc
+ arch_allow: arc
filter: CONFIG_RGF_NUM_BANKS > 1
extra_configs:
- CONFIG_ARC_FIRQ_STACK=y
diff --git a/tests/kernel/threads/thread_stack/testcase.yaml b/tests/kernel/threads/thread_stack/testcase.yaml
index 104c9d9..fb99504 100644
--- a/tests/kernel/threads/thread_stack/testcase.yaml
+++ b/tests/kernel/threads/thread_stack/testcase.yaml
@@ -6,5 +6,5 @@
min_ram: 36
extra_args: CONF_FILE=prj_armv8m_mpu_stack_guard.conf
filter: CONFIG_ARM_MPU and CONFIG_ARMV8_M_MAINLINE
- arch_whitelist: arm
+ arch_allow: arm
tags: kernel security userspace ignore_faults
diff --git a/tests/kernel/workq/critical/testcase.yaml b/tests/kernel/workq/critical/testcase.yaml
index f4a8ccf..e2b7279 100644
--- a/tests/kernel/workq/critical/testcase.yaml
+++ b/tests/kernel/workq/critical/testcase.yaml
@@ -10,6 +10,6 @@
extra_configs:
- CONFIG_WDT_DISABLE_AT_BOOT=y
kernel.workqueue.nsim:
- platform_whitelist: nsim_sem_mpu_stack_guard nsim_em_mpu_stack_guard
+ platform_allow: nsim_sem_mpu_stack_guard nsim_em_mpu_stack_guard
extra_configs:
- CONFIG_TEST_HW_STACK_PROTECTION=n
diff --git a/tests/lib/gui/lvgl/testcase.yaml b/tests/lib/gui/lvgl/testcase.yaml
index 1e4e847..607d91e 100644
--- a/tests/lib/gui/lvgl/testcase.yaml
+++ b/tests/lib/gui/lvgl/testcase.yaml
@@ -1,17 +1,17 @@
tests:
libraries.gui.lvgl:
tags: display gui
- platform_whitelist: native_posix
+ platform_allow: native_posix
libraries.gui.lvgl.dynamic.heap.libc:
tags: display gui
- platform_whitelist: native_posix
+ platform_allow: native_posix
extra_configs:
- CONFIG_NEWLIB_LIBC=y
- CONFIG_LVGL_BUFFER_ALLOC_DYNAMIC=y
- CONFIG_LVGL_MEM_POOL_HEAP_LIB_C=y
libraries.gui.lvgl.dynamic.pool.user:
tags: display gui
- platform_whitelist: native_posix
+ platform_allow: native_posix
extra_configs:
- CONFIG_LVGL_BUFFER_ALLOC_DYNAMIC=y
- CONFIG_LVGL_MEM_POOL_USER=y
@@ -19,7 +19,7 @@
- CONFIG_LVGL_MEM_POOL_MAX_SIZE=32768
libraries.gui.lvgl.dynamic.pool.kernel:
tags: display gui
- platform_whitelist: native_posix
+ platform_allow: native_posix
extra_configs:
- CONFIG_LVGL_BUFFER_ALLOC_DYNAMIC=y
- CONFIG_LVGL_MEM_POOL_KERNEL=y
@@ -27,22 +27,22 @@
- CONFIG_LVGL_MEM_POOL_MAX_SIZE=32768
libraries.gui.lvgl.16bit:
tags: display gui
- platform_whitelist: native_posix
+ platform_allow: native_posix
extra_configs:
- CONFIG_LVGL_COLOR_DEPTH_16=y
libraries.gui.lvgl.8bit:
tags: display gui
- platform_whitelist: native_posix
+ platform_allow: native_posix
extra_configs:
- CONFIG_LVGL_COLOR_DEPTH_8=y
libraries.gui.lvgl.mono:
tags: display gui
- platform_whitelist: native_posix
+ platform_allow: native_posix
extra_configs:
- CONFIG_LVGL_COLOR_DEPTH_1=y
libraries.gui.lvgl.16bit.swap:
tags: display gui
- platform_whitelist: native_posix
+ platform_allow: native_posix
extra_configs:
- CONFIG_LVGL_COLOR_DEPTH_16=y
- CONFIG_LVGL_COLOR_16_SWAP=y
diff --git a/tests/lib/mem_alloc/testcase.yaml b/tests/lib/mem_alloc/testcase.yaml
index a44e5e8..996e347 100644
--- a/tests/lib/mem_alloc/testcase.yaml
+++ b/tests/lib/mem_alloc/testcase.yaml
@@ -13,5 +13,5 @@
tags: clib newlib userspace
libraries.libc.newlibnano:
extra_args: CONF_FILE=prj_newlibnano.conf
- toolchain_whitelist: gnuarmemb
+ toolchain_allow: gnuarmemb
tags: clib newlib userspace
diff --git a/tests/misc/test_build/testcase.yaml b/tests/misc/test_build/testcase.yaml
index a0eafdc..886bd93 100644
--- a/tests/misc/test_build/testcase.yaml
+++ b/tests/misc/test_build/testcase.yaml
@@ -8,7 +8,7 @@
bootloader.mcuboot.build:
tags: mcuboot
build_only: true
- platform_whitelist: nrf51dk_nrf51422 nrf52dk_nrf52832
+ platform_allow: nrf51dk_nrf51422 nrf52dk_nrf52832
extra_configs:
- CONFIG_BOOTLOADER_MCUBOOT=y
integration_platforms:
diff --git a/tests/net/all/testcase.yaml b/tests/net/all/testcase.yaml
index fdcb63b..174202e 100644
--- a/tests/net/all/testcase.yaml
+++ b/tests/net/all/testcase.yaml
@@ -1,6 +1,6 @@
common:
# Only used for compile testing so it is enough to use one platform here.
- platform_whitelist: qemu_x86
+ platform_allow: qemu_x86
tests:
net.build:
build_only: true
diff --git a/tests/net/pm/testcase.yaml b/tests/net/pm/testcase.yaml
index 470ca63..e84c95e 100644
--- a/tests/net/pm/testcase.yaml
+++ b/tests/net/pm/testcase.yaml
@@ -1,7 +1,7 @@
common:
# There is nothing hw specific to be tested here
# so let's limit the test to qemu_x86
- platform_whitelist: qemu_x86
+ platform_allow: qemu_x86
depends_on: netif
tests:
net.pm:
diff --git a/tests/net/traffic_class/testcase.yaml b/tests/net/traffic_class/testcase.yaml
index 9e287a6..8ea947f 100644
--- a/tests/net/traffic_class/testcase.yaml
+++ b/tests/net/traffic_class/testcase.yaml
@@ -1,5 +1,5 @@
common:
- platform_whitelist: native_posix native_posix_64
+ platform_allow: native_posix native_posix_64
tags: net traffic_class
tests:
net.traffic_class.1:
diff --git a/tests/posix/common/testcase.yaml b/tests/posix/common/testcase.yaml
index dee0bab..057582e 100644
--- a/tests/posix/common/testcase.yaml
+++ b/tests/posix/common/testcase.yaml
@@ -14,12 +14,12 @@
extra_configs:
- CONFIG_NEWLIB_LIBC=y
portability.posix.common.nsim:
- platform_whitelist: nsim_sem_mpu_stack_guard nsim_em_mpu_stack_guard
+ platform_allow: nsim_sem_mpu_stack_guard nsim_em_mpu_stack_guard
extra_configs:
- CONFIG_NEWLIB_LIBC=n
- CONFIG_TEST_HW_STACK_PROTECTION=n
portability.posix.common.newlib.nsim:
- platform_whitelist: nsim_sem_mpu_stack_guard nsim_em_mpu_stack_guard
+ platform_allow: nsim_sem_mpu_stack_guard nsim_em_mpu_stack_guard
filter: TOOLCHAIN_HAS_NEWLIB == 1
extra_configs:
- CONFIG_NEWLIB_LIBC=y
diff --git a/tests/subsys/canbus/frame/testcase.yaml b/tests/subsys/canbus/frame/testcase.yaml
index c724838..1e1e5cd 100644
--- a/tests/subsys/canbus/frame/testcase.yaml
+++ b/tests/subsys/canbus/frame/testcase.yaml
@@ -1,5 +1,5 @@
common:
- platform_whitelist: native_posix native_posix_64 qemu_x86 qemu_cortex_m3
+ platform_allow: native_posix native_posix_64 qemu_x86 qemu_cortex_m3
tests:
can.frame:
tags: net
diff --git a/tests/subsys/dfu/img_util/testcase.yaml b/tests/subsys/dfu/img_util/testcase.yaml
index cf692a1..42efef4 100644
--- a/tests/subsys/dfu/img_util/testcase.yaml
+++ b/tests/subsys/dfu/img_util/testcase.yaml
@@ -1,8 +1,8 @@
tests:
dfu.image_util:
- platform_whitelist: nrf52840dk_nrf52840 native_posix native_posix_64
+ platform_allow: nrf52840dk_nrf52840 native_posix native_posix_64
tags: dfu_image_util
dfu.image_util.progressive:
extra_args: OVERLAY_CONFIG=progressively_overlay.conf
- platform_whitelist: nrf52840dk_nrf52840 native_posix native_posix_64
+ platform_allow: nrf52840dk_nrf52840 native_posix native_posix_64
tags: dfu_image_util
diff --git a/tests/subsys/dfu/mcuboot/testcase.yaml b/tests/subsys/dfu/mcuboot/testcase.yaml
index ef35e7c..1bb4750 100644
--- a/tests/subsys/dfu/mcuboot/testcase.yaml
+++ b/tests/subsys/dfu/mcuboot/testcase.yaml
@@ -1,4 +1,4 @@
tests:
dfu.mcuboot:
- platform_whitelist: nrf52840dk_nrf52840 native_posix native_posix_64
+ platform_allow: nrf52840dk_nrf52840 native_posix native_posix_64
tags: dfu_mcuboot
diff --git a/tests/subsys/fs/fat_fs_api/testcase.yaml b/tests/subsys/fs/fat_fs_api/testcase.yaml
index a5b43da..1bd54e9 100644
--- a/tests/subsys/fs/fat_fs_api/testcase.yaml
+++ b/tests/subsys/fs/fat_fs_api/testcase.yaml
@@ -1,8 +1,8 @@
tests:
filesystem.fat.api:
- platform_whitelist: native_posix
+ platform_allow: native_posix
tags: filesystem
filesystem.fat.api.lfn:
extra_args: CONF_FILE="prj_lfn.conf"
- platform_whitelist: native_posix
+ platform_allow: native_posix
tags: filesystem
diff --git a/tests/subsys/fs/fat_fs_dual_drive/testcase.yaml b/tests/subsys/fs/fat_fs_dual_drive/testcase.yaml
index c69d7c4..4ecc983 100644
--- a/tests/subsys/fs/fat_fs_dual_drive/testcase.yaml
+++ b/tests/subsys/fs/fat_fs_dual_drive/testcase.yaml
@@ -1,4 +1,4 @@
tests:
filesystem.fat.dual_drive:
- platform_whitelist: qemu_x86 native_posix
+ platform_allow: qemu_x86 native_posix
tags: filesystem
diff --git a/tests/subsys/fs/fcb/testcase.yaml b/tests/subsys/fs/fcb/testcase.yaml
index ac8e94e..0b8f49b 100644
--- a/tests/subsys/fs/fcb/testcase.yaml
+++ b/tests/subsys/fs/fcb/testcase.yaml
@@ -1,5 +1,5 @@
tests:
filesystem.fcb:
- platform_whitelist: nrf52840dk_nrf52840 nrf52dk_nrf52832 nrf51dk_nrf51422
+ platform_allow: nrf52840dk_nrf52840 nrf52dk_nrf52832 nrf51dk_nrf51422
native_posix native_posix_64
tags: flash_circural_buffer
diff --git a/tests/subsys/fs/littlefs/testcase.yaml b/tests/subsys/fs/littlefs/testcase.yaml
index 5ab635a..72729df 100644
--- a/tests/subsys/fs/littlefs/testcase.yaml
+++ b/tests/subsys/fs/littlefs/testcase.yaml
@@ -1,5 +1,5 @@
tests:
filesystem.littlefs:
- platform_whitelist: nrf52840dk_nrf52840 native_posix native_posix_64
+ platform_allow: nrf52840dk_nrf52840 native_posix native_posix_64
tags: filesystem
timeout: 180
diff --git a/tests/subsys/fs/multi-fs/testcase.yaml b/tests/subsys/fs/multi-fs/testcase.yaml
index 33dc10f..01b7bfb 100644
--- a/tests/subsys/fs/multi-fs/testcase.yaml
+++ b/tests/subsys/fs/multi-fs/testcase.yaml
@@ -1,8 +1,8 @@
tests:
filesystem.multifs:
- platform_whitelist: native_posix qemu_x86
+ platform_allow: native_posix qemu_x86
tags: littlefs fatfs filesystem qemu_x86
filesystem.fs_shell:
extra_args: CONF_FILE="prj_fs_shell.conf"
- platform_whitelist: native_posix qemu_x86
+ platform_allow: native_posix qemu_x86
tags: littlefs fatfs filesystem
diff --git a/tests/subsys/fs/nvs/testcase.yaml b/tests/subsys/fs/nvs/testcase.yaml
index 8c22e9b..ac891e0 100644
--- a/tests/subsys/fs/nvs/testcase.yaml
+++ b/tests/subsys/fs/nvs/testcase.yaml
@@ -2,7 +2,7 @@
tags: nvs
tests:
filesystem.nvs:
- platform_whitelist: qemu_x86
+ platform_allow: qemu_x86
filesystem.nvs_0x00:
extra_args: DTC_OVERLAY_FILE=boards/qemu_x86_ev_0x00.overlay
- platform_whitelist: qemu_x86
+ platform_allow: qemu_x86
diff --git a/tests/subsys/openthread/testcase.yaml b/tests/subsys/openthread/testcase.yaml
index 72cc9fb..6698525 100644
--- a/tests/subsys/openthread/testcase.yaml
+++ b/tests/subsys/openthread/testcase.yaml
@@ -1,4 +1,4 @@
tests:
openthread.radio:
- platform_whitelist: native_posix native_posix_64
+ platform_allow: native_posix native_posix_64
tags: ot_radio
diff --git a/tests/subsys/power/power_mgmt/testcase.yaml b/tests/subsys/power/power_mgmt/testcase.yaml
index 5026151..eae7bae 100644
--- a/tests/subsys/power/power_mgmt/testcase.yaml
+++ b/tests/subsys/power/power_mgmt/testcase.yaml
@@ -1,4 +1,4 @@
tests:
subsys.power.device_pm:
- platform_whitelist: nrf52840dk_nrf52840 nrf52dk_nrf52832 frdm_k64f qemu_cortex_m0
+ platform_allow: nrf52840dk_nrf52840 nrf52dk_nrf52832 frdm_k64f qemu_cortex_m0
tags: power
diff --git a/tests/subsys/settings/fcb/base64/testcase.yaml b/tests/subsys/settings/fcb/base64/testcase.yaml
index 4d3b247..7603482 100644
--- a/tests/subsys/settings/fcb/base64/testcase.yaml
+++ b/tests/subsys/settings/fcb/base64/testcase.yaml
@@ -1,4 +1,4 @@
tests:
system.settings.fcb.base64:
- platform_whitelist: nrf52840dk_nrf52840 nrf52dk_nrf52832 native_posix native_posix_64
+ platform_allow: nrf52840dk_nrf52840 nrf52dk_nrf52832 native_posix native_posix_64
tags: settings_fcb
diff --git a/tests/subsys/settings/fcb/raw/testcase.yaml b/tests/subsys/settings/fcb/raw/testcase.yaml
index c3aae1d..1518878 100644
--- a/tests/subsys/settings/fcb/raw/testcase.yaml
+++ b/tests/subsys/settings/fcb/raw/testcase.yaml
@@ -1,4 +1,4 @@
tests:
system.settings.fcb.raw:
- platform_whitelist: nrf52840dk_nrf52840 nrf52dk_nrf52832 native_posix native_posix_64
+ platform_allow: nrf52840dk_nrf52840 nrf52dk_nrf52832 native_posix native_posix_64
tags: settings_fcb
diff --git a/tests/subsys/settings/fcb_init/testcase.yaml b/tests/subsys/settings/fcb_init/testcase.yaml
index c81258d..cd390b1 100644
--- a/tests/subsys/settings/fcb_init/testcase.yaml
+++ b/tests/subsys/settings/fcb_init/testcase.yaml
@@ -1,4 +1,4 @@
tests:
system.settings.fcb:
- platform_whitelist: nrf52840dk_nrf52840 nrf52dk_nrf52832
+ platform_allow: nrf52840dk_nrf52840 nrf52dk_nrf52832
tags: settings_intialization_fcb
diff --git a/tests/subsys/settings/functional/fcb/testcase.yaml b/tests/subsys/settings/functional/fcb/testcase.yaml
index 52e283e..b76e324 100644
--- a/tests/subsys/settings/functional/fcb/testcase.yaml
+++ b/tests/subsys/settings/functional/fcb/testcase.yaml
@@ -1,4 +1,4 @@
tests:
system.settings.functional.fcb:
- platform_whitelist: nrf52840dk_nrf52840 nrf52dk_nrf52832 native_posix native_posix_64
+ platform_allow: nrf52840dk_nrf52840 nrf52dk_nrf52832 native_posix native_posix_64
tags: settings_fcb
diff --git a/tests/subsys/settings/functional/file/testcase.yaml b/tests/subsys/settings/functional/file/testcase.yaml
index 87f371d..0a2c896 100644
--- a/tests/subsys/settings/functional/file/testcase.yaml
+++ b/tests/subsys/settings/functional/file/testcase.yaml
@@ -1,4 +1,4 @@
tests:
system.settings.file:
- platform_whitelist: nrf52840dk_nrf52840 nrf52dk_nrf52832 native_posix native_posix_64
+ platform_allow: nrf52840dk_nrf52840 nrf52dk_nrf52832 native_posix native_posix_64
tags: settings_file
diff --git a/tests/subsys/settings/functional/nvs/testcase.yaml b/tests/subsys/settings/functional/nvs/testcase.yaml
index 08a0d0d..7eae0d4 100644
--- a/tests/subsys/settings/functional/nvs/testcase.yaml
+++ b/tests/subsys/settings/functional/nvs/testcase.yaml
@@ -1,8 +1,8 @@
tests:
system.settings.functional.nvs:
- platform_whitelist: qemu_x86 native_posix native_posix_64
+ platform_allow: qemu_x86 native_posix native_posix_64
tags: settings_nvs
system.settings.functional.nvs.dk:
extra_args: OVERLAY_CONFIG=mpu.conf
- platform_whitelist: nrf52840dk_nrf52840 nrf52dk_nrf52832
+ platform_allow: nrf52840dk_nrf52840 nrf52dk_nrf52832
tags: settings_nvs
diff --git a/tests/subsys/settings/littlefs/base64/testcase.yaml b/tests/subsys/settings/littlefs/base64/testcase.yaml
index ffdb302..1182d6b 100644
--- a/tests/subsys/settings/littlefs/base64/testcase.yaml
+++ b/tests/subsys/settings/littlefs/base64/testcase.yaml
@@ -3,5 +3,5 @@
tests:
system.settings.littlefs.base64:
- platform_whitelist: nrf52840dk_nrf52840 native_posix native_posix_64
+ platform_allow: nrf52840dk_nrf52840 native_posix native_posix_64
tags: settings_fs filesystem
diff --git a/tests/subsys/settings/littlefs/raw/testcase.yaml b/tests/subsys/settings/littlefs/raw/testcase.yaml
index 498597f..bed0aed 100644
--- a/tests/subsys/settings/littlefs/raw/testcase.yaml
+++ b/tests/subsys/settings/littlefs/raw/testcase.yaml
@@ -3,5 +3,5 @@
tests:
system.settings.littlefs.raw:
- platform_whitelist: nrf52840dk_nrf52840 native_posix native_posix_64
+ platform_allow: nrf52840dk_nrf52840 native_posix native_posix_64
tags: settings_fs settings_littlefs
diff --git a/tests/subsys/shell/shell_flash/testcase.yaml b/tests/subsys/shell/shell_flash/testcase.yaml
index bbe0ac7..fd747b5 100644
--- a/tests/subsys/shell/shell_flash/testcase.yaml
+++ b/tests/subsys/shell/shell_flash/testcase.yaml
@@ -4,4 +4,4 @@
min_ram: 32
filter: ( CONFIG_FLASH_SHELL )
tags: flash shell
- platform_whitelist: qemu_x86 native_posix
+ platform_allow: qemu_x86 native_posix
diff --git a/tests/subsys/storage/flash_map/testcase.yaml b/tests/subsys/storage/flash_map/testcase.yaml
index e3521c3..feff98f 100644
--- a/tests/subsys/storage/flash_map/testcase.yaml
+++ b/tests/subsys/storage/flash_map/testcase.yaml
@@ -1,9 +1,9 @@
tests:
storage.flash_map:
- platform_whitelist: nrf51dk_nrf51422 qemu_x86 native_posix native_posix_64
+ platform_allow: nrf51dk_nrf51422 qemu_x86 native_posix native_posix_64
tags: flash_map
storage.flash_map.mpu:
extra_args: OVERLAY_CONFIG=overlay-mpu.conf
- platform_whitelist: nrf52840dk_nrf52840 nrf52dk_nrf52832 frdm_k64f hexiwear_k64
+ platform_allow: nrf52840dk_nrf52840 nrf52dk_nrf52832 frdm_k64f hexiwear_k64
twr_ke18f
tags: flash_map
diff --git a/tests/subsys/storage/stream/stream_flash/testcase.yaml b/tests/subsys/storage/stream/stream_flash/testcase.yaml
index 52e4e64..ffdb9b3 100644
--- a/tests/subsys/storage/stream/stream_flash/testcase.yaml
+++ b/tests/subsys/storage/stream/stream_flash/testcase.yaml
@@ -1,16 +1,16 @@
tests:
storage.stream_flash:
- platform_whitelist: native_posix native_posix_64
+ platform_allow: native_posix native_posix_64
tags: stream_flash
storage.stream_flash.dword_wbs:
extra_args: DTC_OVERLAY_FILE=unaligned_flush.overlay
- platform_whitelist: native_posix native_posix_64
+ platform_allow: native_posix native_posix_64
tags: stream_flash
storage.stream_flash.no_erase:
extra_args: OVERLAY_CONFIG=no_erase.overlay
- platform_whitelist: native_posix native_posix_64
+ platform_allow: native_posix native_posix_64
tags: stream_flash
storage.stream_flash.mpu_allow_flash_write:
extra_args: OVERLAY_CONFIG=mpu_allow_flash_write.overlay
- platform_whitelist: nrf52840_pca10056
+ platform_allow: nrf52840_pca10056
tags: stream_flash
diff --git a/tests/subsys/usb/os_desc/testcase.yaml b/tests/subsys/usb/os_desc/testcase.yaml
index fc2216b..c376358 100644
--- a/tests/subsys/usb/os_desc/testcase.yaml
+++ b/tests/subsys/usb/os_desc/testcase.yaml
@@ -1,4 +1,4 @@
tests:
usb.osdesc:
- platform_whitelist: native_posix native_posix_64 frdm_k64f
+ platform_allow: native_posix native_posix_64 frdm_k64f
tags: usb osdesc