diff options
author | Mattias Andrée <maandree@kth.se> | 2016-03-25 00:48:24 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2016-03-25 00:48:24 +0100 |
commit | 8ece857da951a565700944da56507bf5ea36ccdc (patch) | |
tree | 9263edb4e24afc1e916b7c2de4d4c98c52ab053c /test-all | |
parent | m fix (diff) | |
download | base-util-tests-8ece857da951a565700944da56507bf5ea36ccdc.tar.gz base-util-tests-8ece857da951a565700944da56507bf5ea36ccdc.tar.bz2 base-util-tests-8ece857da951a565700944da56507bf5ea36ccdc.tar.xz |
derp
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'test-all')
-rwxr-xr-x | test-all | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -33,10 +33,10 @@ for t in $@; do printf '\033[1mTesting %s ...\033[m\n' "$t" ./${t}-test/test r=$? - if test $r = 2; then - echo $t '(standards-compliant)' >> result - elif test $r -ge 1; then + if test $r -ge 2; then echo $t >> result + elif test $r = 1; then + echo $t '(standards-compliant)' >> result fi echo done |