From 9bf0b2b169ead7f56e6d1313ff7e88441a78da58 Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Fri, 26 Jul 2024 13:41:22 -0400 Subject: tests: Make some more variables local --- tests/run.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'tests/run.sh') diff --git a/tests/run.sh b/tests/run.sh index 1b1e600..612e11a 100644 --- a/tests/run.sh +++ b/tests/run.sh @@ -94,7 +94,7 @@ reap_test() { # Wait for a background test to finish wait_test() { - local pid line + local pid line ret while true; do line=$((LINENO + 1)) @@ -121,7 +121,9 @@ wait_ready() { # We'd like to parse the output of jobs -n, but we can't run it in a # subshell or we won't get the right output jobs -n >"$TMP/jobs" - while read -r job status ret foo; do + + local job status ret rest + while read -r job status ret rest; do case "$status" in Done) reap_test 0 -- cgit v1.2.3