From 5a62fedc1a783f07f927264b855796606c3a17c8 Mon Sep 17 00:00:00 2001 From: Claudio Bley Date: Sun, 27 Mar 2022 19:09:26 +0200 Subject: [PATCH] Print newlines after test summary --- test/run | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/run b/test/run index 08c6db9..a821be6 100755 --- a/test/run +++ b/test/run @@ -94,10 +94,10 @@ function OUT() { function summary() { if [[ $ERRORS -gt 0 ]]; then - printf '\n\n %d of %d tests failed.' "$ERRORS" "$TESTS" >&2 + printf '\n\n %d of %d tests failed.\n\n' "$ERRORS" "$TESTS" >&2 exit 1 else - printf '\n\n %d tests passed.' "$TESTS" >&2 + printf '\n\n %d tests passed.\n\n' "$TESTS" >&2 fi }