1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 13:27:36 +00:00

Tests: Move the former LibM test into the LibC namespace

This commit is contained in:
Tim Schumacher 2022-09-06 00:54:40 +02:00 committed by Brian Gianforcaro
parent 81d46fa100
commit bbcdd0dca0
4 changed files with 2 additions and 9 deletions

View file

@ -11,6 +11,7 @@ set(TEST_SOURCES
TestLibCString.cpp
TestLibCTime.cpp
TestMalloc.cpp
TestMath.cpp
TestMemalign.cpp
TestMemmem.cpp
TestMkDir.cpp
@ -32,6 +33,7 @@ set(TEST_SOURCES
TestWctype.cpp
)
set_source_files_properties(TestMath.cpp PROPERTIES COMPILE_FLAGS "-fno-builtin")
set_source_files_properties(TestStrtodAccuracy.cpp PROPERTIES COMPILE_FLAGS "-fno-builtin-strtod")
foreach(source IN LISTS TEST_SOURCES)