mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-03 12:41:57 +00:00
The seasonal overhaul of test identifiers aligning the terms being used and creating a structure. This is hopefully the last time we do this, plan is to document the identifiers and enforce syntax. The end-goal is to be able to generate a testsuite description from the existing tests and sync it frequently with the testsuite in Testrail. Signed-off-by: Anas Nashif <anas.nashif@intel.com>
18 lines
488 B
YAML
18 lines
488 B
YAML
sample:
|
|
description: A basic demo to showcase multi-threading
|
|
using K_THREAD_DEFINE
|
|
name: Basic Thread Demo
|
|
tests:
|
|
sample.basic.threads:
|
|
tags: kernel threads gpio
|
|
filter: dt_compat_enabled_with_alias("gpio-leds", "led0") and
|
|
dt_compat_enabled_with_alias("gpio-leds", "led1")
|
|
depends_on: gpio
|
|
harness: console
|
|
harness_config:
|
|
type: multi_line
|
|
ordered: false
|
|
regex:
|
|
- "Toggle USR0 LED(.*)"
|
|
- "Toggle USR1 LED(.*)"
|