diff options
author | daniel eliad <daniel.eliad32@gmail.com> | 2021-04-14 23:28:55 +0300 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-04-14 22:33:50 +0200 |
commit | b96c205c989b8341e56e7d4b91406b201dca5bde (patch) | |
tree | 8ed0565f86c04788d6b682cc462f43ba9057af3b /Base | |
parent | a973b22359119ee46c8a2e21761147708c03005a (diff) | |
download | serenity-b96c205c989b8341e56e7d4b91406b201dca5bde.zip |
Tests: fixed test-crypto wrong argument order that failed -
run-tests-and-shutdown.sh
Diffstat (limited to 'Base')
-rwxr-xr-x | Base/home/anon/tests/run-tests-and-shutdown.sh | 2 |
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 95dcb883e3..54cf075eb3 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 bigint -t)) +system_tests=((test-js --show-progress=false) test-pthread test-compress /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} |