From 0246f5078f2d9377c2fa5405b5302fd071b2ef63 Mon Sep 17 00:00:00 2001 From: Petr Rockai Date: Tue, 30 Sep 2008 21:43:16 +0000 Subject: [PATCH] Improve harness.sh output: also mention failing test's name near the end of its output. Avoids the need to scroll back just to see which failing test you are looking at. --- test/harness.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/harness.sh b/test/harness.sh index 4c07bf8b3..70a819368 100644 --- a/test/harness.sh +++ b/test/harness.sh @@ -18,7 +18,8 @@ for t in $tests; do printf -- "--- Output: $t -" for i in `seq $(($len + 14)) 78`; do echo -n "-"; done; echo printf "%s\n" "$out" - for i in `seq 1 78`; do echo -n "-"; done; echo + printf -- "--- End: $t ----" + for i in `seq $(($len + 14)) 78`; do echo -n "-"; done; echo failed="$failed $t" fi done -- 2.43.5