diff options
author | Andrew Kaster <akaster@serenityos.org> | 2021-06-30 21:29:10 -0600 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-07-06 17:22:45 +0200 |
commit | ad0b8b42eb95ed0c919bb444f6c81a5b5ac69d6d (patch) | |
tree | eab9953e1db176eecb9d350c0cac214dff2b8fd7 | |
parent | 8fcdc57ae19d9c3e74e83239b7404ffc630a5af6 (diff) | |
download | serenity-ad0b8b42eb95ed0c919bb444f6c81a5b5ac69d6d.zip |
Base: Pass show-progress=false to run-tests to avoid confusing CI
We pass this to test-js, and since they share some common code, it makes
sense to pass it to run-tests as well. This prevents the OSC 9 escape
sequences from being emitted when running tests via the script.
-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 0f8072bbce..5800946fff 100755 --- a/Base/home/anon/tests/run-tests-and-shutdown.sh +++ b/Base/home/anon/tests/run-tests-and-shutdown.sh @@ -3,7 +3,7 @@ echo echo "==== Running Tests on SerenityOS ====" -run-tests +run-tests --show-progress=false fail_count=$? echo "Failed: $fail_count" > ./test-results.log |