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: Gerard Marull-Paretas <gerard.marull@nordicsemi.no>
35 lines
774 B
YAML
35 lines
774 B
YAML
sample:
|
|
name: USB HID sample
|
|
tests:
|
|
sample.usb.hid:
|
|
depends_on: usb_device
|
|
tags: usb
|
|
arch_exclude: posix
|
|
harness: console
|
|
harness_config:
|
|
type: multi_line
|
|
regex:
|
|
- "main: HID Device: dev"
|
|
- "main: Starting application"
|
|
sample.usb.hid_composite:
|
|
depends_on: usb_device
|
|
extra_configs:
|
|
- CONFIG_USB_COMPOSITE_DEVICE=y
|
|
tags: usb
|
|
arch_exclude: posix
|
|
harness: console
|
|
harness_config:
|
|
type: multi_line
|
|
regex:
|
|
- "main: HID Device: dev"
|
|
- "main: Starting application"
|
|
sample.usb.hid.buildonly:
|
|
depends_on: usb_device
|
|
tags: usb
|
|
platform_allow:
|
|
- native_posix
|
|
- native_posix_64
|
|
build_only: true
|
|
integration_platforms:
|
|
- native_posix
|