From 40979f6e1877cddabf97ee955683a400a8033c69 Mon Sep 17 00:00:00 2001 From: Thomas Levine <_@thomaslevine.com> Date: Wed, 27 Jan 2016 01:13:55 +0000 Subject: [PATCH] more tap --- urchin | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/urchin b/urchin index 45f21d7..a3f40cc 100755 --- a/urchin +++ b/urchin @@ -57,7 +57,7 @@ recurse() { [ -f teardown ] && [ -x teardown ] && ./teardown >> "$stdout_file" done [ -f teardown_dir ] && [ -x teardown_dir ] && ./teardown_dir >> "$stdout_file" - echo + if ! $tap_format; then echo; fi ) elif [ -x "$potential_test" ] then @@ -97,7 +97,7 @@ recurse() { printf '%s\n' "${potential_test}" printf '%s\n' "${potential_test} failed" >> "$logfile" printf '\033[31m' # Print output captured from failed test in red. - cat "$stdout_file" + sed 's/^/# /' "$stdout_file" printf '\033[0m' fi fi