formatting

This commit is contained in:
Thomas Levine 2016-02-28 18:41:00 +00:00
parent 287e54a4fe
commit 4c84456574

7
urchin
View File

@ -89,7 +89,7 @@ recurse() {
TEST_SHELL="$4"
for ignore in setup_dir teardown_dir setup teardown; do
if test "$potential_test" = $ignore; then
if test "$(basename "$potential_test")" = $ignore; then
return
fi
done
@ -294,9 +294,10 @@ report_outcome() {
;;
skip)
if test -z "$the_shell"; then
the_shell='(File is not executable.)'
fi
echo ' (File is not executable.)'
else
echo " ${the_shell} ($file_elapsed $(plural second $file_elapsed))"
fi
;;
esac
fi