diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2024-01-13 16:14:06 -0500 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2024-01-13 16:14:06 -0500 |
commit | ef03769f3f69f3d6d9d3427b1d84ec00a1c3cc36 (patch) | |
tree | edebfd2ad45728357153baaf513e97f03e4902d0 /tests/run.sh | |
parent | e766015d60c927aae03b8e43d956c6976c16b2ba (diff) | |
download | bfs-ef03769f3f69f3d6d9d3427b1d84ec00a1c3cc36.tar.xz |
tests: Properly filter escape sequences with --verbose=tests
Diffstat (limited to 'tests/run.sh')
-rw-r--r-- | tests/run.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/run.sh b/tests/run.sh index 41df716..4a159f9 100644 --- a/tests/run.sh +++ b/tests/run.sh @@ -151,7 +151,7 @@ run_tests() { fi percent=$((100 * ran / total)) - printf "$TEST_FMT" $percent "$TEST" + color printf "$TEST_FMT" $percent "$TEST" mkdir -p "$TMP/$TEST" OUT="$TMP/$TEST.out" |