zephyr/tests/kernel/fpu_sharing/float_disable/testcase.yaml
Daniel Leung ce44048d46 x86: rename CONFIG_SSE* to CONFIG_X86_SSE*
This adds X86 keyword to the kconfigs to indicate these are
for x86. The old options are still there marked as
deprecated.

Signed-off-by: Daniel Leung <daniel.leung@intel.com>
2021-02-15 08:21:15 -05:00

32 lines
943 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: kernel userspace
kernel.fpu_sharing.float_disable.riscv32:
filter: CONFIG_CPU_HAS_FPU
arch_allow: riscv32
tags: kernel userspace
kernel.fpu_sharing.float_disable.riscv64:
filter: CONFIG_CPU_HAS_FPU
arch_allow: riscv64
tags: 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
tags: 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
tags: kernel userspace