X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/882582b3075e8dea1e0511a2448def52c20ee920..ec99e9da819e00f76ae25fb0a4acb7306c6b7e5d:/runtests.sh diff --git a/runtests.sh b/runtests.sh index 5c672dd2..7cf018e2 100755 --- a/runtests.sh +++ b/runtests.sh @@ -92,6 +92,9 @@ # they're in POSIX 1003.2, and since the build farm relies on them # they're probably working on most machines we really care about. +# You cannot use "function foo {" syntax, but must instead say "foo() +# {", or it breaks on FreeBSD. + set -e @@ -174,9 +177,9 @@ done echo '------------------------------------------------------------' echo "----- overall results:" echo " $passed passed" -echo " $failed failed" -echo " $skipped skipped" -echo " $missing missing" +[ "$failed" -gt 0 ] && echo " $failed failed" +[ "$skipped" -gt 0 ] && echo " $skipped skipped" +[ "$missing" -gt 0 ] && echo " $missing missing" echo '------------------------------------------------------------' exit `expr $failed + $missing`