Files
clang-p2996/libc/utils/testutils/CMakeLists.txt
Alex Brachet 04c681d195 [libc] Specify rounding mode for strto[f|d] tests
The specified rounding mode will be used and restored
to what it was before the test ran.

Additionally, it moves ForceRoundingMode and RoundingMode
out of MPFRUtils to be used in more places.

Differential Revision: https://reviews.llvm.org/D129685
2022-07-13 20:20:30 +00:00

20 lines
314 B
CMake

if(CMAKE_HOST_UNIX)
set(EFFile ExecuteFunctionUnix.cpp)
set(FDReaderFile FDReaderUnix.cpp)
endif()
add_library(
libc_test_utils
RandUtils.cpp
RandUtils.h
StreamWrapper.cpp
StreamWrapper.h
${EFFile}
ExecuteFunction.h
${FDReaderFile}
FDReader.h
Timer.h
Timer.cpp
RoundingModeUtils.cpp
)