1
0
mirror of https://github.com/SerenityOS/serenity synced 2024-07-09 05:20:45 +00:00

Tests: Move the LibPthread tests to the correct namespace

This commit is contained in:
Tim Schumacher 2022-07-15 15:42:23 +02:00 committed by Linus Groh
parent 2f3b9c49a5
commit dac361e330
6 changed files with 3 additions and 10 deletions

View File

@ -13,7 +13,6 @@ add_subdirectory(LibJS)
add_subdirectory(LibM)
add_subdirectory(LibMarkdown)
add_subdirectory(LibPDF)
add_subdirectory(LibPthread)
add_subdirectory(LibRegex)
add_subdirectory(LibSQL)
add_subdirectory(LibTest)

View File

@ -14,6 +14,9 @@ set(TEST_SOURCES
TestMemalign.cpp
TestMemmem.cpp
TestMkDir.cpp
TestPthreadCleanup.cpp
TestPthreadSpinLocks.cpp
TestPthreadRWLocks.cpp
TestQsort.cpp
TestRaise.cpp
TestRealpath.cpp

View File

@ -1,9 +0,0 @@
set(TEST_SOURCES
TestLibPthreadCleanup.cpp
TestLibPthreadSpinLocks.cpp
TestLibPthreadRWLocks.cpp
)
foreach(source IN LISTS TEST_SOURCES)
serenity_test("${source}" LibPthread LIBS LibPthread)
endforeach()