diff options
author | Andrew Kaster <andrewdkaster@gmail.com> | 2021-03-01 10:56:53 -0700 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-03-02 09:00:21 +0100 |
commit | 8453bb346191522d87eaf822b38ef3bd5291af20 (patch) | |
tree | ff059e94731d677831581ad6513ff66608cb5d6d /Base/home/anon | |
parent | d8415520dedb9342a4caa8408fe60154e3cc2c5e (diff) | |
download | serenity-8453bb346191522d87eaf822b38ef3bd5291af20.zip |
Userland: Gate OSC 9 usage in test-js behind an argument
Instead of assuming that we should use the OSC 9 progress messages
whenever we run on serenity, add a show-progress=[true|false] option.
This lets us avoid seeing esc sequence spam in GitHub Actions logs.
Diffstat (limited to 'Base/home/anon')
-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 fd8f089576..e14f5b78da 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() { # TODO: It'd be nice to have a list+list op (as opposed to nest-on-in-another) # TODO: It'd be nice to have a list.length or enumerate(list) operation to allow terminal progress bar # TODO: test-web requires the window server -system_tests=(test-js 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 bigint -t)) # FIXME: Running too much at once is likely to run into #5541. Remove commented out find below when stable all_tests=($system_tests) #$(find /usr/Tests -type f | grep -v Kernel | grep -v .inc | shuf)) |