From 5edc0d11b01ed7a55bde9885ed0ac7e57e2db5bd Mon Sep 17 00:00:00 2001 From: coderdreams Date: Tue, 22 Jun 2021 22:59:25 -0300 Subject: [PATCH] Tests: Enable AK/TestJSON back now that tests run on their respective directories --- Base/home/anon/tests/run-tests-and-shutdown.sh | 3 +-- 1 file changed, 1 insertion(+), 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) }