diff options
author | Mattias Andrée <maandree@kth.se> | 2016-03-24 15:55:53 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2016-03-24 15:55:53 +0100 |
commit | 0896279fcf6d8d17273d83892dff1763558db77e (patch) | |
tree | 7e6f09f0a480658f97680cb87d0cfbbb881d9106 /test-all | |
parent | add EPATH variable (diff) | |
download | base-util-tests-0896279fcf6d8d17273d83892dff1763558db77e.tar.gz base-util-tests-0896279fcf6d8d17273d83892dff1763558db77e.tar.bz2 base-util-tests-0896279fcf6d8d17273d83892dff1763558db77e.tar.xz |
report standards-compliance
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'test-all')
-rwxr-xr-x | test-all | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -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 |