Commit 93b63df7 authored by Gerard Marull-Paretas's avatar Gerard Marull-Paretas Committed by Carles Cufi
Browse files

samples, tests: convert string-based twister lists to YAML lists



Twister now supports using YAML lists for all fields that were written
as space-separated lists. Used twister_to_list.py script. Some artifacts
on string length are due to how ruamel dumps content.

Signed-off-by: default avatarGerard Marull-Paretas <gerard.marull@nordicsemi.no>
parent 6d56988e
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -3,7 +3,9 @@ sample:
  name: code relocation nocopy
tests:
  sample.application_development.code_relocation_nocopy:
    platform_allow: qemu_cortex_m3 nrf5340dk_nrf5340_cpuapp
    platform_allow:
      - qemu_cortex_m3
      - nrf5340dk_nrf5340_cpuapp
    integration_platforms:
      - qemu_cortex_m3
    tags: linker
+3 −1
Original line number Diff line number Diff line
@@ -4,7 +4,9 @@ sample:
tests:
  sample.app_dev.out_of_tree:
    tags: out_of_tree
    platform_allow: nrf52840dk_nrf52840 nrf52dk_nrf52832
    platform_allow:
      - nrf52840dk_nrf52840
      - nrf52dk_nrf52832
    integration_platforms:
      - nrf52840dk_nrf52840
    harness: console
+3 −1
Original line number Diff line number Diff line
@@ -6,7 +6,9 @@ tests:
    sysbuild: true
    # Platform allowed is used as twister using sysbuild still lacks proper
    # filtering support, see discussion in #49552.
    platform_allow: reel_board nrf52840dk_nrf52840
    platform_allow:
      - reel_board
      - nrf52840dk_nrf52840
    integration_platforms:
      - nrf52840dk_nrf52840
    tags: mcuboot
+9 −4
Original line number Diff line number Diff line
sample:
  description: Processing multiple queues in
    a number of threads
  description: Processing multiple queues in a number of threads
  name: SMP Pktqueue
common:
  tags: introduction
@@ -15,5 +14,11 @@ tests:
  sample.smp.pktqueue:
    tags: introduction
    filter: (CONFIG_MP_MAX_NUM_CPUS > 1)
    platform_exclude: esp32 esp_wrover_kit esp32_ethernet_kit
      heltec_wifi_lora32_v2 m5stickc_plus odroid_go olimex_esp32_evb
    platform_exclude:
      - esp32
      - esp_wrover_kit
      - esp32_ethernet_kit
      - heltec_wifi_lora32_v2
      - m5stickc_plus
      - odroid_go
      - olimex_esp32_evb
+3 −1
Original line number Diff line number Diff line
@@ -2,7 +2,9 @@ sample:
  name: Blinky Sample
tests:
  sample.basic.blinky:
    tags: LED gpio
    tags:
      - LED
      - gpio
    filter: dt_enabled_alias_with_parent_compat("led0", "gpio-leds")
    depends_on: gpio
    harness: led
Loading