
Part of #147386 in preparation for: https://discourse.llvm.org/t/rfc-make-clang-builtin-math-functions-constexpr-with-llvm-libc-to-support-c-23-constexpr-math-functions/86450
28 lines
745 B
CMake
28 lines
745 B
CMake
add_custom_target(libc-shared-tests)
|
|
|
|
add_fp_unittest(
|
|
shared_math_test
|
|
SUITE
|
|
libc-shared-tests
|
|
SRCS
|
|
shared_math_test.cpp
|
|
DEPENDS
|
|
libc.src.__support.math.acos
|
|
libc.src.__support.math.acosf
|
|
libc.src.__support.math.acosf16
|
|
libc.src.__support.math.acoshf
|
|
libc.src.__support.math.erff
|
|
libc.src.__support.math.exp
|
|
libc.src.__support.math.exp10
|
|
libc.src.__support.math.exp10f
|
|
libc.src.__support.math.exp10f16
|
|
libc.src.__support.math.expf
|
|
libc.src.__support.math.expf16
|
|
libc.src.__support.math.frexpf
|
|
libc.src.__support.math.frexpf128
|
|
libc.src.__support.math.frexpf16
|
|
libc.src.__support.math.ldexpf
|
|
libc.src.__support.math.ldexpf128
|
|
libc.src.__support.math.ldexpf16
|
|
)
|