mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-08 21:22:50 +00:00
Several user mode tests cannot run on twr_ke18f because either the platform does not have a sufficient number of MPU regions required for the tests, or, the tests also require HW stack protection (which has been, by default, excluded in user mode tests for twr_ke18f board). We excluded the board from all those tests. Signed-off-by: Ioannis Glaropoulos <Ioannis.Glaropoulos@nordicsemi.no>
25 lines
999 B
YAML
25 lines
999 B
YAML
tests:
|
|
kernel.common.stack_protection:
|
|
extra_args: CONF_FILE=prj.conf
|
|
platform_exclude: twr_ke18f
|
|
filter: CONFIG_ARCH_HAS_STACK_PROTECTION
|
|
tags: kernel ignore_faults userspace
|
|
kernel.common.stack_protection_no_userspace:
|
|
extra_args: CONF_FILE=protection_no_userspace.conf
|
|
filter: CONFIG_ARCH_HAS_STACK_PROTECTION
|
|
arch_whitelist: arm
|
|
tags: kernel ignore_faults memory_protection
|
|
kernel.common.stack_protection_arm_fp_sharing:
|
|
extra_args: CONF_FILE=prj_arm_fp_sharing.conf
|
|
platform_exclude: twr_ke18f
|
|
filter: CONFIG_ARCH_HAS_STACK_PROTECTION and CONFIG_ARMV7_M_ARMV8_M_FP
|
|
tags: kernel ignore_faults 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_whitelist: arm
|
|
tags: kernel ignore_faults userspace
|
|
kernel.common.stack_sentinel:
|
|
extra_args: CONF_FILE=sentinel.conf
|
|
tags: kernel ignore_faults
|