2021-04-29 05:05:23 +03:00
|
|
|
set(TEST_SOURCES
|
2021-12-17 19:58:55 +03:00
|
|
|
TestAbort.cpp
|
2021-12-15 02:37:40 +03:00
|
|
|
TestAssert.cpp
|
2022-06-27 04:09:20 +03:00
|
|
|
TestCType.cpp
|
2023-06-04 01:56:16 +03:00
|
|
|
TestEnvironment.cpp
|
2021-09-01 13:40:46 +03:00
|
|
|
TestIo.cpp
|
|
|
|
TestLibCExec.cpp
|
2023-12-24 12:26:11 +03:00
|
|
|
TestLibCGrp.cpp
|
2021-09-01 13:40:46 +03:00
|
|
|
TestLibCDirEnt.cpp
|
|
|
|
TestLibCInodeWatcher.cpp
|
|
|
|
TestLibCMkTemp.cpp
|
2023-08-12 22:30:31 +03:00
|
|
|
TestLibCNetdb.cpp
|
2021-09-01 13:40:46 +03:00
|
|
|
TestLibCSetjmp.cpp
|
|
|
|
TestLibCString.cpp
|
|
|
|
TestLibCTime.cpp
|
2022-01-12 15:37:54 +03:00
|
|
|
TestMalloc.cpp
|
2022-09-06 01:54:40 +03:00
|
|
|
TestMath.cpp
|
2022-05-05 08:21:45 +03:00
|
|
|
TestMemalign.cpp
|
2021-09-01 13:40:46 +03:00
|
|
|
TestMemmem.cpp
|
2021-07-11 21:42:46 +03:00
|
|
|
TestMkDir.cpp
|
2022-06-12 13:30:37 +03:00
|
|
|
TestPthreadCancel.cpp
|
2022-07-15 16:42:23 +03:00
|
|
|
TestPthreadCleanup.cpp
|
2022-07-24 17:40:58 +03:00
|
|
|
TestPThreadPriority.cpp
|
2022-07-15 16:42:23 +03:00
|
|
|
TestPthreadSpinLocks.cpp
|
|
|
|
TestPthreadRWLocks.cpp
|
2022-11-17 22:43:42 +03:00
|
|
|
TestPwd.cpp
|
2021-09-01 13:40:46 +03:00
|
|
|
TestQsort.cpp
|
2021-12-17 20:16:06 +03:00
|
|
|
TestRaise.cpp
|
2021-09-01 13:40:46 +03:00
|
|
|
TestRealpath.cpp
|
|
|
|
TestScanf.cpp
|
2021-09-27 01:50:51 +03:00
|
|
|
TestSearch.cpp
|
2021-09-01 13:40:46 +03:00
|
|
|
TestSnprintf.cpp
|
|
|
|
TestStackSmash.cpp
|
2022-01-16 11:03:46 +03:00
|
|
|
TestStdio.cpp
|
2021-09-01 13:40:46 +03:00
|
|
|
TestStrlcpy.cpp
|
|
|
|
TestStrtodAccuracy.cpp
|
2021-09-17 02:14:17 +03:00
|
|
|
TestWchar.cpp
|
2021-09-17 19:12:27 +03:00
|
|
|
TestWctype.cpp
|
2021-04-29 05:05:23 +03:00
|
|
|
)
|
|
|
|
|
2022-09-06 01:54:40 +03:00
|
|
|
set_source_files_properties(TestMath.cpp PROPERTIES COMPILE_FLAGS "-fno-builtin")
|
2021-09-01 13:40:46 +03:00
|
|
|
set_source_files_properties(TestStrtodAccuracy.cpp PROPERTIES COMPILE_FLAGS "-fno-builtin-strtod")
|
2020-08-01 22:18:32 +03:00
|
|
|
|
2021-09-01 13:40:46 +03:00
|
|
|
foreach(source IN LISTS TEST_SOURCES)
|
|
|
|
serenity_test("${source}" LibC)
|
2021-04-29 05:05:23 +03:00
|
|
|
endforeach()
|