diff options
author | coderdreams <coderdreams@gmail.com> | 2021-06-22 22:59:25 -0300 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-06-23 13:07:40 +0200 |
commit | 5edc0d11b01ed7a55bde9885ed0ac7e57e2db5bd (patch) | |
tree | ab7c3144a22a53ae56a4b287fb59bee5c2b27fc9 /Base/home | |
parent | f1e1d9dd74fabf7bce11749e442980e33a64be9d (diff) | |
download | serenity-5edc0d11b01ed7a55bde9885ed0ac7e57e2db5bd.zip |
Tests: Enable AK/TestJSON back
now that tests run on their respective directories
Diffstat (limited to 'Base/home')
-rwxr-xr-x | Base/home/anon/tests/run-tests-and-shutdown.sh | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Base/home/anon/tests/run-tests-and-shutdown.sh b/Base/home/anon/tests/run-tests-and-shutdown.sh index 018f307bc5..4cf9fac690 100755 --- a/Base/home/anon/tests/run-tests-and-shutdown.sh +++ b/Base/home/anon/tests/run-tests-and-shutdown.sh @@ -30,11 +30,10 @@ run(index) { # .inc: Shell test helper file that's not a test # UserEmulator: Tests designed to run inside the Userspace Emulator # stack-smash: Intentionally crashes by smashing the stack -# TestJSON: AK/TestJSON makes assumptions about $PWD to load its input files # .frm,.txt: Test inputs that are not tests # test-web: Requires the window server in order to work # test-js: We start this one manually with the show progress flag set to false -exclude_patterns='Kernel/Legacy|.inc|UserEmulator|stack-smash|TestJSON|.txt|.frm|test-web|test-js' +exclude_patterns='Kernel/Legacy|.inc|UserEmulator|stack-smash|.txt|.frm|test-web|test-js' system_tests=((test-js --show-progress=false) (test-crypto -c -t test)) all_tests=${concat_lists $system_tests $(find /usr/Tests -type f | grep -E -v $exclude_patterns | shuf) } |