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 /patch-test | |
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 'patch-test')
-rwxr-xr-x | patch-test/test | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/patch-test/test b/patch-test/test index d7df4bc..ea0b250 100755 --- a/patch-test/test +++ b/patch-test/test @@ -1666,7 +1666,14 @@ done touch result1 result2 cat result1 result2 > result -! grep FAILED < result >/dev/null +! grep FAILED < result > /dev/null ret=$? +if test $ret != 0; then + if test $(grep FAILED < result | grep -v NON-POSIX | wc -l) = 1; then + ret=1 + else + ret=2 + fi +fi rm result1 result2 result exit $ret |