mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-25 00:50:22 +00:00
Tests: Move the LibPthread tests to the correct namespace
This commit is contained in:
parent
2f3b9c49a5
commit
dac361e330
Notes:
sideshowbarker
2024-07-17 08:48:00 +09:00
Author: https://github.com/timschumi Commit: https://github.com/SerenityOS/serenity/commit/dac361e330 Pull-request: https://github.com/SerenityOS/serenity/pull/14453 Reviewed-by: https://github.com/linusg
6 changed files with 3 additions and 10 deletions
|
@ -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)
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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()
|
Loading…
Reference in a new issue