This commit is contained in:
Thomas Levine 2016-01-27 01:08:04 +00:00
parent 0ca55d155b
commit d963f10be1

7
urchin
View File

@ -83,7 +83,12 @@ recurse() {
[ -f teardown ] && [ -x teardown ] && ./teardown >> "$stdout_file"
if $tap_format; then
sleep 0s
if [ $exit_code -eq 0 ]; then
result=ok
else
result=not\ ok
fi
echo "${result} - ${potential_test}"
else
indent $indent_level
if [ $exit_code -eq 0 ]