summaryrefslogtreecommitdiff
path: root/Tests/LibWeb
diff options
context:
space:
mode:
authorAndrew Kaster <akaster@serenityos.org>2021-09-01 23:44:24 -0600
committerAndreas Kling <kling@serenityos.org>2021-09-02 09:08:23 +0200
commit58797a1289b2719b731dbb6a81e064fd4786db03 (patch)
tree5e760452feb85d9d3486c744dd1097e69aa81e6c /Tests/LibWeb
parentb5a145b46677dd0853ffa65842a2a6cfe06ca061 (diff)
downloadserenity-58797a1289b2719b731dbb6a81e064fd4786db03.zip
Tests: Remove all file(GLOB) from CMakeLists in Tests
Using a file(GLOB) to find all the test files in a directory is an easy hack to get things started, but has some drawbacks. Namely, if you add a test, it won't be found again without re-running CMake. `ninja` seems to do this automatically, but it would be nice to one day stop seeing it rechecking our globbed directories.
Diffstat (limited to 'Tests/LibWeb')
-rw-r--r--Tests/LibWeb/CMakeLists.txt9
1 files changed, 4 insertions, 5 deletions
diff --git a/Tests/LibWeb/CMakeLists.txt b/Tests/LibWeb/CMakeLists.txt
index 63ea33d2cb..4bb687b9e9 100644
--- a/Tests/LibWeb/CMakeLists.txt
+++ b/Tests/LibWeb/CMakeLists.txt
@@ -1,10 +1,9 @@
-set(
- TEST_SOURCES
- ${CMAKE_CURRENT_SOURCE_DIR}/TestHTMLTokenizer.cpp
+set(TEST_SOURCES
+ TestHTMLTokenizer.cpp
)
-foreach(source ${TEST_SOURCES})
- serenity_test(${source} LibWeb LIBS LibWeb)
+foreach(source IN LISTS TEST_SOURCES)
+ serenity_test("${source}" LibWeb LIBS LibWeb)
endforeach()
serenity_testjs_test(test-web.cpp test-web LIBS LibWeb)