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.
This commit is contained in:
Andrew Kaster 2021-06-30 21:29:10 -06:00 committed by Andreas Kling
parent 8fcdc57ae1
commit ad0b8b42eb
Notes: sideshowbarker 2024-07-18 10:17:54 +09:00

View file

@ -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