This website requires JavaScript.
Explore
Help
Sign In
OrgZephyr
/
zephyr
mirror of
https://github.com/zephyrproject-rtos/zephyr.git
Watch
1
Star
0
Fork
You've already forked zephyr
0
Code
Issues
Releases
Wiki
Activity
75c0f52cca
zephyr
/
tests
/
kernel
/
fpu_sharing
/
generic
/
prj_x86.conf
6 lines
90 B
Plaintext
Raw
Normal View
History
Unescape
Escape
tests: kernel: fp_sharing: Use ztest This commit converts the `fp_sharing` tests to use the ztest framework. In addition, this commit also introduces a behavioural change to run the `pi` unit test separately from the `load_store` unit test, in order to allow more manageable and diagnosable test execution. Signed-off-by: Stephanos Ioannidis <root@stephanos.io>
2020-03-29 21:46:32 +08:00
CONFIG_ZTEST=y
kconfig: Rename CONFIG_FLOAT to CONFIG_FPU This commit renames the Kconfig `FLOAT` symbol to `FPU`, since this symbol only indicates that the hardware Floating Point Unit (FPU) is used and does not imply and/or indicate the general availability of toolchain-level floating point support (i.e. this symbol is not selected when building for an FPU-less platform that supports floating point operations through the toolchain-provided software floating point library). Moreover, given that the symbol that indicates the availability of FPU is named `CPU_HAS_FPU`, it only makes sense to use "FPU" in the name of the symbol that enables the FPU. Signed-off-by: Stephanos Ioannidis <root@stephanos.io>
2020-04-23 16:27:24 +08:00
CONFIG_FPU=y
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-01-08 07:07:29 +08:00
CONFIG_X86_SSE=y
kconfig: Rename CONFIG_FP_SHARING to CONFIG_FPU_SHARING This commit renames the Kconfig `FP_SHARING` symbol to `FPU_SHARING`, since this symbol specifically refers to the hardware FPU sharing support by means of FPU context preservation, and the "FP" prefix is not fully descriptive of that; leaving room for ambiguity. Signed-off-by: Stephanos Ioannidis <root@stephanos.io>
2020-05-03 17:03:19 +08:00
CONFIG_FPU_SHARING=y
tests: fp_sharing: Extract x86 configs to separate .conf The SSE and SSE_FP_MATH configs exist only in the x86 architecture, so extract them to a separate prj_x86.conf file for the fp_sharing test. Fixes Kconfig warnings when building the test for frdm_k64f: - warning: attempt to assign the value "y" to the undefined symbol SSE - warning: attempt to assign the value "y" to the undefined symbol SSE_FP_MATH Signed-off-by: Maureen Helm <maureen.helm@nxp.com>
2018-06-26 02:12:17 +08:00
CONFIG_STDOUT_CONSOLE=y