mirror of
https://git.tukaani.org/xz.git
synced 2024-04-04 12:36:23 +02:00
Avoid using ! in test_files.sh, because that doesn't work
with some ancient /bin/sh versions.
This commit is contained in:
parent
e2417b2b91
commit
b4943ccf73
1 changed files with 3 additions and 1 deletions
|
@ -18,7 +18,9 @@
|
||||||
|
|
||||||
for I in "$srcdir"/files/good-*.lzma
|
for I in "$srcdir"/files/good-*.lzma
|
||||||
do
|
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"
|
echo "Good file failed: $I"
|
||||||
(exit 1)
|
(exit 1)
|
||||||
exit 1
|
exit 1
|
||||||
|
|
Loading…
Reference in a new issue