Avoid using ! in test_files.sh, because that doesn't work

with some ancient /bin/sh versions.
This commit is contained in:
Lasse Collin 2008-01-08 12:29:58 +02:00
parent e2417b2b91
commit b4943ccf73
1 changed files with 3 additions and 1 deletions

View File

@ -18,7 +18,9 @@
for I in "$srcdir"/files/good-*.lzma
do
if ! ../src/lzmadec/lzmadec "$I" > /dev/null 2> /dev/null ; then
if ../src/lzmadec/lzmadec "$I" > /dev/null 2> /dev/null ; then
:
else
echo "Good file failed: $I"
(exit 1)
exit 1