zephyr/tests/kernel/fatal/no-multithreading/testcase.yaml
Fabio Baltieri 5c32300861 yamllint: fix all yamllint truthy errors
Fix all thruthy errors detected by yamllint:

yamllint -f parsable -c .yamllint $( find -regex '.*\.y[a]*ml' ) | \
  grep '(truthy)'

This only accepts true/false for boolean properties. Seems like python
takes all sort of formats:

https://github.com/yaml/pyyaml/blob/master/lib/yaml/constructor.py#L224-L235

But the current specs only mention "true" or "false"

https://yaml.org/spec/1.2.2/#10212-boolean

Which is the standard yamllint config.

Excluding codeconv and workflow files, as some are using yes/no instead
in the respective documentation.

Signed-off-by: Fabio Baltieri <fabiobaltieri@google.com>
2023-01-04 01:16:45 +09:00

22 lines
721 B
YAML

common:
platform_allow: qemu_cortex_m3 qemu_arc_em qemu_arc_hs qemu_arc_hs6x nsim_em nsim_em7d_v22
nsim_hs nsim_hs_mpuv6 nsim_hs5x nsim_hs6x
integration_platforms:
- qemu_cortex_m3
- nsim_em
tags: kernel scheduler
ignore_faults: true
tests:
kernel.no-mt.cpu_exception:
extra_args: EXTRA_CPPFLAGS=-DVIA_TWISTER=0
kernel.no-mt.oops:
extra_args: EXTRA_CPPFLAGS=-DVIA_TWISTER=1
kernel.no-mt.panic:
extra_args: EXTRA_CPPFLAGS=-DVIA_TWISTER=2
kernel.no-mt.zephyr_assert:
extra_args: EXTRA_CPPFLAGS=-DVIA_TWISTER=3
kernel.no-mt.arbitrary_reason:
extra_args: EXTRA_CPPFLAGS=-DVIA_TWISTER=4
kernel.no-mt.arbitrary_reason_negative:
extra_args: EXTRA_CPPFLAGS=-DVIA_TWISTER=5