Skip to content

Commit 3a9b875

Browse files
committed
notes
1 parent 761ade0 commit 3a9b875

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/run_standalone_tests.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ report="" # final report
8585
pids=() # array of PID for running tests
8686
test_ids=() # array of indexes of running tests
8787
failed_tests=() # array of failed tests
88-
printf "Running $test_count tests in batches of $test_batch_size\n"
88+
printf "Running $test_count tests in batches of $test_batch_size:\n"
8989
for i in "${!tests[@]}"; do
9090
test=${tests[$i]}
9191
printf "* Running test $((i+1))/$test_count: $test\n"
@@ -105,7 +105,7 @@ for i in "${!tests[@]}"; do
105105
i=${test_ids[$j]} # restore the global test's id
106106
pid=${pids[$j]} # restore the particular PID
107107
test=${tests[$i]} # restore the test name
108-
printf "- Waiting for $tests >> parallel_test_output-$i.txt (PID: $pid)\n"
108+
printf "? Waiting for $tests >> parallel_test_output-$i.txt (PID: $pid)\n"
109109
wait -n $pid
110110
# get the exit status of the test
111111
test_status=$?

0 commit comments

Comments
 (0)