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>
29 lines
1.0 KiB
YAML
29 lines
1.0 KiB
YAML
common:
|
|
ignore_faults: true
|
|
tests:
|
|
kernel.common.stack_protection:
|
|
extra_args: CONF_FILE=prj.conf
|
|
platform_exclude: twr_ke18f
|
|
filter: CONFIG_ARCH_HAS_STACK_PROTECTION
|
|
tags: kernel userspace
|
|
kernel.common.stack_protection_no_userspace:
|
|
extra_args: CONF_FILE=protection_no_userspace.conf
|
|
filter: CONFIG_ARCH_HAS_STACK_PROTECTION
|
|
arch_allow: arm
|
|
tags: kernel memory_protection
|
|
kernel.common.stack_protection_arm_fpu_sharing:
|
|
extra_args: CONF_FILE=prj_arm_fpu_sharing.conf
|
|
platform_exclude: twr_ke18f
|
|
filter: CONFIG_ARCH_HAS_STACK_PROTECTION and CONFIG_ARMV7_M_ARMV8_M_FP
|
|
tags: fpu kernel userspace
|
|
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_allow: arm
|
|
tags: kernel userspace
|
|
kernel.common.stack_sentinel:
|
|
extra_args: CONF_FILE=sentinel.conf
|
|
# FIXME: See issue #39948
|
|
platform_exclude: qemu_cortex_a9
|
|
tags: kernel
|