mirror of https://git.tukaani.org/xz.git
Tests: Test the .lz files in test_files.sh.
This commit is contained in:
parent
c8f70ebb46
commit
c8ef089c14
|
@ -164,4 +164,29 @@ do
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
|
|
||||||
|
#######
|
||||||
|
# .lz #
|
||||||
|
#######
|
||||||
|
|
||||||
|
if grep 'define HAVE_LZIP_DECODER' ../config.h > /dev/null ; then
|
||||||
|
for I in "$srcdir"/files/good-*.lz
|
||||||
|
do
|
||||||
|
if test -z "$XZ" || "$XZ" -dc "$I" > /dev/null; then
|
||||||
|
:
|
||||||
|
else
|
||||||
|
echo "Good file failed: $I"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
for I in "$srcdir"/files/bad-*.lz "$srcdir"/files/unsupported-*.lz
|
||||||
|
do
|
||||||
|
if test -n "$XZ" && "$XZ" -dc "$I" > /dev/null 2>&1; then
|
||||||
|
echo "Bad file succeeded: $I"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
fi
|
||||||
|
|
||||||
exit "$EXIT_STATUS"
|
exit "$EXIT_STATUS"
|
||||||
|
|
Loading…
Reference in New Issue