2021-04-28 19:05:23 -07:00
|
|
|
set(TEST_SOURCES
|
2021-12-17 17:58:55 +01:00
|
|
|
TestAbort.cpp
|
2021-12-15 00:37:40 +01:00
|
|
|
TestAssert.cpp
|
2021-09-01 04:40:46 -06:00
|
|
|
TestIo.cpp
|
|
|
|
TestLibCExec.cpp
|
|
|
|
TestLibCDirEnt.cpp
|
|
|
|
TestLibCInodeWatcher.cpp
|
|
|
|
TestLibCMkTemp.cpp
|
|
|
|
TestLibCSetjmp.cpp
|
|
|
|
TestLibCString.cpp
|
|
|
|
TestLibCTime.cpp
|
2022-01-12 13:37:54 +01:00
|
|
|
TestMalloc.cpp
|
2021-09-01 04:40:46 -06:00
|
|
|
TestMemmem.cpp
|
2021-07-11 20:42:46 +02:00
|
|
|
TestMkDir.cpp
|
2021-09-01 04:40:46 -06:00
|
|
|
TestQsort.cpp
|
2021-12-17 18:16:06 +01:00
|
|
|
TestRaise.cpp
|
2021-09-01 04:40:46 -06:00
|
|
|
TestRealpath.cpp
|
|
|
|
TestScanf.cpp
|
2021-09-27 00:50:51 +02:00
|
|
|
TestSearch.cpp
|
2021-09-01 04:40:46 -06:00
|
|
|
TestSnprintf.cpp
|
|
|
|
TestStackSmash.cpp
|
2022-01-16 09:03:46 +01:00
|
|
|
TestStdio.cpp
|
2021-09-01 04:40:46 -06:00
|
|
|
TestStrlcpy.cpp
|
|
|
|
TestStrtodAccuracy.cpp
|
2021-09-17 01:14:17 +02:00
|
|
|
TestWchar.cpp
|
2021-09-17 18:12:27 +02:00
|
|
|
TestWctype.cpp
|
2021-04-28 19:05:23 -07:00
|
|
|
)
|
|
|
|
|
2021-09-01 04:40:46 -06:00
|
|
|
set_source_files_properties(TestStrtodAccuracy.cpp PROPERTIES COMPILE_FLAGS "-fno-builtin-strtod")
|
2020-08-01 21:18:32 +02:00
|
|
|
|
2021-09-01 04:40:46 -06:00
|
|
|
foreach(source IN LISTS TEST_SOURCES)
|
|
|
|
serenity_test("${source}" LibC)
|
2021-04-28 19:05:23 -07:00
|
|
|
endforeach()
|