From: Lasse Collin Date: Tue, 6 Jan 2015 18:30:15 +0000 (+0200) Subject: Tests: Don't hide unexpected error messages in test_files.sh. X-Git-Tag: v5.2.1~17 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d2d484647d9d9d679f03c75abb0404f67069271c;p=thirdparty%2Fxz.git Tests: Don't hide unexpected error messages in test_files.sh. Hiding them makes no sense since normally there's no error when testing the "good" files. With "bad" files errors are expected and then it makes sense to keep the messages hidden. --- diff --git a/tests/test_files.sh b/tests/test_files.sh index 2fa83825..0f8a64d5 100755 --- a/tests/test_files.sh +++ b/tests/test_files.sh @@ -21,7 +21,7 @@ fi for I in "$srcdir"/files/good-*.xz do - if test -z "$XZ" || "$XZ" -dc "$I" > /dev/null 2>&1; then + if test -z "$XZ" || "$XZ" -dc "$I" > /dev/null; then : else echo "Good file failed: $I" @@ -29,7 +29,7 @@ do exit 1 fi - if test -z "$XZDEC" || "$XZDEC" "$I" > /dev/null 2>&1; then + if test -z "$XZDEC" || "$XZDEC" "$I" > /dev/null; then : else echo "Good file failed: $I"