serenity/Tests/LibC/CMakeLists.txt

33 lines
700 B
Text
Raw Normal View History

set(TEST_SOURCES
2021-12-17 17:58:55 +01:00
TestAbort.cpp
2021-12-15 00:37:40 +01:00
TestAssert.cpp
TestIo.cpp
TestLibCExec.cpp
TestLibCDirEnt.cpp
TestLibCInodeWatcher.cpp
TestLibCMkTemp.cpp
TestLibCSetjmp.cpp
TestLibCString.cpp
TestLibCTime.cpp
TestMalloc.cpp
TestMemmem.cpp
TestQsort.cpp
2021-12-17 18:16:06 +01:00
TestRaise.cpp
TestRealpath.cpp
TestScanf.cpp
2021-09-27 00:50:51 +02:00
TestSearch.cpp
TestSnprintf.cpp
TestStackSmash.cpp
TestStdio.cpp
TestStrlcpy.cpp
TestStrtodAccuracy.cpp
TestWchar.cpp
2021-09-17 18:12:27 +02:00
TestWctype.cpp
)
set_source_files_properties(TestStrtodAccuracy.cpp PROPERTIES COMPILE_FLAGS "-fno-builtin-strtod")
foreach(source IN LISTS TEST_SOURCES)
serenity_test("${source}" LibC)
endforeach()