summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2023-11-07 13:09:21 -0500
committerTavian Barnes <tavianator@tavianator.com>2023-11-07 13:09:21 -0500
commitce90dc9bc00c46b27b437467bb2f053ab2307fbc (patch)
tree807e40cc635ce9c282476a3381cb6bbbe4ab689a /tests
parent31aadf6b6ffdcf9cef6c92d139d52e580938d1d4 (diff)
downloadbfs-ce90dc9bc00c46b27b437467bb2f053ab2307fbc.tar.xz
tests: Fix output interleaving with -j1
Diffstat (limited to 'tests')
-rw-r--r--tests/run.sh10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/run.sh b/tests/run.sh
index f93cb4b..8f0a8fc 100644
--- a/tests/run.sh
+++ b/tests/run.sh
@@ -124,17 +124,17 @@ run_tests() {
set +e
for TEST in "${TEST_CASES[@]}"; do
+ if ((BG >= JOBS)); then
+ wait_test
+ fi
+
printf "$TEST_FMT" "$TEST"
mkdir -p "$TMP/$TEST"
OUT="$TMP/$TEST.out"
- if ((BG >= JOBS)); then
- wait_test
- fi
- ((++BG))
-
bg_test "$TESTS/$TEST.sh" &
+ ((++BG))
done
while ((BG > 0)); do