summaryrefslogtreecommitdiff
path: root/Base/home
diff options
context:
space:
mode:
authorMarco Biscaro <marcobiscaro2112@gmail.com>2021-04-17 23:20:56 -0300
committerLinus Groh <mail@linusgroh.de>2021-04-21 08:00:32 +0200
commit8124719c3d2744edfc475155f70a286cb45e72ef (patch)
tree8f024eab41bbec679645044ff7329ef08900a73f /Base/home
parent78733417a471a02567e5cb24506d4003110c44b1 (diff)
downloadserenity-8124719c3d2744edfc475155f70a286cb45e72ef.zip
Tests: Reorganize LibCompress unit tests
Move LibCompress unit tests to LibCompress/Tests directory and register them with CMake's add_test. This allows us to run these tests with ninja test instead of running a separate executable. Also split the existing tests in 3 test files that better follow the source code structure (inspired by AK tests).
Diffstat (limited to 'Base/home')
-rwxr-xr-xBase/home/anon/tests/run-tests-and-shutdown.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/Base/home/anon/tests/run-tests-and-shutdown.sh b/Base/home/anon/tests/run-tests-and-shutdown.sh
index 54cf075eb3..82fd6d214e 100755
--- a/Base/home/anon/tests/run-tests-and-shutdown.sh
+++ b/Base/home/anon/tests/run-tests-and-shutdown.sh
@@ -15,7 +15,7 @@ run(index) {
}
# TODO: test-web requires the window server
-system_tests=((test-js --show-progress=false) test-pthread test-compress /usr/Tests/LibM/test-math (test-crypto -t bigint))
+system_tests=((test-js --show-progress=false) test-pthread /usr/Tests/LibM/test-math (test-crypto -t bigint))
# FIXME: Running too much at once is likely to run into #5541. Remove commented out find below when stable
all_tests=${concat_lists $system_tests} #$(find /usr/Tests -type f | grep -v Kernel | grep -v .inc | shuf))
count_of_all_tests=${length $all_tests}