aboutsummaryrefslogtreecommitdiffstats
path: root/test-all
diff options
context:
space:
mode:
Diffstat (limited to 'test-all')
-rwxr-xr-xtest-all6
1 files changed, 5 insertions, 1 deletions
diff --git a/test-all b/test-all
index e233bcf..82b7db4 100755
--- a/test-all
+++ b/test-all
@@ -31,8 +31,12 @@ true > result
for t in $@; do
printf '\033[1mTesting %s ...\033[m\n' "$t"
- if ! ./${t}-test/test; then
+ ./${t}-test/test
+ r=$?
+ if test $r -ge 2; then
echo $t >> result
+ elif test $r = 1; then
+ echo $t '(standards-compliant)' >> result
fi
echo
done