mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-16 14:56:39 +00:00

Verifies that sin function output is correct by comparing with MPFR output. NaN and inf are not tested (as our output will vary compared to MPFR), and signed zeroes are already tested in unit tests.
10 lines
285 B
CMake
10 lines
285 B
CMake
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fsanitize=fuzzer")
|
|
add_custom_target(libc-fuzzer)
|
|
|
|
add_subdirectory(__support)
|
|
# TODO(#85680): Re-enable math fuzzing after headers are sorted out
|
|
add_subdirectory(math)
|
|
add_subdirectory(stdlib)
|
|
add_subdirectory(stdio)
|
|
add_subdirectory(string)
|