X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=test%2Fruntest;fp=test%2Fruntest;h=498db05deb1f3815b77a1defa02987daf6fabe66;hp=8867661826d2db9a5a42b55fad68c34ca330a1b9;hb=82325c1114254a76b8285bb710b2f651674331c7;hpb=9c61a657f72aa43b4a2f4e027ad84e7f65fb66cb diff --git a/test/runtest b/test/runtest index 8867661..498db05 100755 --- a/test/runtest +++ b/test/runtest @@ -56,15 +56,15 @@ return_value=$? set -e if [ $return_value -eq 0 ] ; then - printf "Test %s:\tPASS\n" "$1" + printf "Test %-60s\tPASS\n" "$1" exit 0 elif [ $return_value -eq 120 ]; then # indicates test was skipped (eg needed program not found) # test itself should have printed a message about this, # so print nothing here. - : + printf "Test %-60s\tSKIP\n" "$1" exit 2 else - printf "Test %s:\tFAIL\n" "$1" + printf "Test %-60s\tFAIL\n" "$1" exit 1 fi