zephyr/tests/kernel/fpu_sharing/float_disable/testcase.yaml
Ioannis Glaropoulos 1a7228a462 tests: add fpu tag the tests which enable FPU and FPU_SHARING options
Introduce the fpu tag to tests that explicitly enable
the FPU and FPU_SHARING Kconfig options. The tag could
be used to run all FPU-related tests in the tree.

Signed-off-by: Ioannis Glaropoulos <Ioannis.Glaropoulos@nordicsemi.no>
2021-06-22 08:45:41 -04:00

32 lines
999 B
YAML

tests:
kernel.fpu_sharing.float_disable.arm:
arch_allow: arm
filter: CONFIG_ARMV7_M_ARMV8_M_FP
extra_configs:
- CONFIG_DYNAMIC_INTERRUPTS=y
tags: fpu kernel userspace
kernel.fpu_sharing.float_disable.riscv32:
filter: CONFIG_CPU_HAS_FPU
arch_allow: riscv32
tags: fpu kernel userspace
kernel.fpu_sharing.float_disable.riscv64:
filter: CONFIG_CPU_HAS_FPU
arch_allow: riscv64
tags: fpu kernel userspace
kernel.fpu_sharing.float_disable.sparc:
filter: CONFIG_CPU_HAS_FPU
arch_allow: sparc
tags: kernel userspace
kernel.fpu_sharing.float_disable.x86.fpu:
extra_args: CONF_FILE=prj_x86.conf
extra_configs:
- CONFIG_X86_SSE_FP_MATH=n
platform_allow: qemu_x86 qemu_x86_lakemont
tags: fpu kernel userspace
kernel.fpu_sharing.float_disable.x86.sse:
extra_args: CONF_FILE=prj_x86.conf
extra_configs:
- CONFIG_X86_SSE_FP_MATH=y
platform_allow: qemu_x86 qemu_x86_lakemont
tags: fpu kernel userspace