Tests: Test also unsupported-*.xz.

This commit is contained in:
Lasse Collin 2022-10-26 00:05:57 +03:00
parent a4b214b93a
commit 89c5cfcaca
1 changed files with 37 additions and 0 deletions

View File

@ -29,6 +29,11 @@ else
exit 77
fi
#######
# .xz #
#######
for I in "$srcdir"/files/good-*.xz
do
if test -z "$XZ" || "$XZ" -dc "$I" > /dev/null; then
@ -66,6 +71,38 @@ if test -n "$XZ" && "$XZ" -l "$I" > /dev/null 2>&1; then
exit 1
fi
for I in "$srcdir"/files/unsupported-*.xz
do
# Test these only with xz as unsupported-check.xz will exit
# successfully with xzdec because it doesn't warn about
# unsupported check type.
if test -n "$XZ" && "$XZ" -dc "$I" > /dev/null 2>&1; then
echo "Unsupported file succeeded: $I"
exit 1
fi
done
# Test that this passes with --no-warn (-Q).
I="$srcdir/files/unsupported-check.xz"
if test -z "$XZ" || "$XZ" -dcQ "$I" > /dev/null; then
:
else
echo "Unsupported file failed with xz -Q: $I"
exit 1
fi
if test -z "$XZDEC" || "$XZDEC" -Q "$I" > /dev/null; then
:
else
echo "Unsupported file failed with xzdec -Q: $I"
exit 1
fi
#########
# .lzma #
#########
for I in "$srcdir"/files/good-*.lzma
do
if test -z "$XZ" || "$XZ" -dc "$I" > /dev/null; then