mirror of
https://git.tukaani.org/xz.git
synced 2024-04-04 12:36:23 +02:00
Tests: Test also unsupported-*.xz.
This commit is contained in:
parent
a4b214b93a
commit
89c5cfcaca
1 changed files with 37 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue