2010-10-10 14:43:26 +00:00
|
|
|
#!/bin/sh
|
2008-01-07 11:49:19 +00:00
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
#
|
2009-04-13 08:27:40 +00:00
|
|
|
# Author: Lasse Collin
|
2008-01-07 11:49:19 +00:00
|
|
|
#
|
2009-04-13 08:27:40 +00:00
|
|
|
# This file has been put into the public domain.
|
|
|
|
# You can do whatever you want with this file.
|
2008-01-07 11:49:19 +00:00
|
|
|
#
|
|
|
|
###############################################################################
|
|
|
|
|
2010-10-08 12:32:29 +00:00
|
|
|
# If both xz and xzdec were not build, skip this test.
|
|
|
|
XZ=../src/xz/xz
|
|
|
|
XZDEC=../src/xzdec/xzdec
|
|
|
|
test -x "$XZ" || XZ=
|
|
|
|
test -x "$XZDEC" || XZDEC=
|
|
|
|
if test -z "$XZ$XZDEC"; then
|
2022-10-27 12:27:50 +00:00
|
|
|
echo "xz and xzdec were not built, skipping this test."
|
2010-10-08 12:32:29 +00:00
|
|
|
exit 77
|
|
|
|
fi
|
|
|
|
|
2022-10-19 16:39:35 +00:00
|
|
|
# If decompression support is missing, this test is skipped.
|
|
|
|
# This isn't perfect as if only some decompressors are disabled
|
|
|
|
# then some good files might not decompress and the test fails
|
|
|
|
# for a (kind of) wrong reason.
|
|
|
|
if grep 'define HAVE_DECODERS' ../config.h > /dev/null ; then
|
|
|
|
:
|
|
|
|
else
|
|
|
|
echo "Decompression support is disabled, skipping this test."
|
|
|
|
exit 77
|
|
|
|
fi
|
|
|
|
|
2022-10-27 12:49:18 +00:00
|
|
|
# If a feature was disabled at build time, make it possible to skip
|
|
|
|
# some of the test files. Use exit status 77 if any files were skipped.
|
|
|
|
EXIT_STATUS=0
|
|
|
|
have_feature()
|
|
|
|
{
|
|
|
|
grep "define HAVE_$1" ../config.h > /dev/null && return 0
|
|
|
|
printf '%s: Skipping because HAVE_%s is not enabled\n' "$2" "$1"
|
|
|
|
EXIT_STATUS=77
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2022-10-25 21:05:57 +00:00
|
|
|
|
|
|
|
#######
|
|
|
|
# .xz #
|
|
|
|
#######
|
|
|
|
|
2022-10-27 12:49:18 +00:00
|
|
|
# If these integrity check types were disabled at build time,
|
|
|
|
# allow the tests to pass still.
|
|
|
|
NO_WARN=
|
|
|
|
grep 'define HAVE_CHECK_CRC64' ../config.h > /dev/null || NO_WARN=-qQ
|
|
|
|
grep 'define HAVE_CHECK_SHA256' ../config.h > /dev/null || NO_WARN=-qQ
|
|
|
|
|
2008-09-30 14:43:55 +00:00
|
|
|
for I in "$srcdir"/files/good-*.xz
|
2008-01-07 11:49:19 +00:00
|
|
|
do
|
2022-10-27 12:49:18 +00:00
|
|
|
# If features were disabled at build time, keep this still working.
|
|
|
|
case $I in
|
|
|
|
*/good-1-*delta-lzma2*.xz)
|
|
|
|
have_feature DECODER_DELTA "$I" || continue
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
case $I in
|
|
|
|
*/good-1-empty-bcj-lzma2.xz)
|
|
|
|
have_feature DECODER_POWERPC "$I" || continue
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
case $I in
|
|
|
|
*/good-1-sparc-lzma2.xz)
|
|
|
|
have_feature DECODER_SPARC "$I" || continue
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
case $I in
|
|
|
|
*/good-1-x86-lzma2.xz)
|
|
|
|
have_feature DECODER_X86 "$I" || continue
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
if test -z "$XZ" || "$XZ" $NO_WARN -dc "$I" > /dev/null; then
|
2010-10-08 12:32:29 +00:00
|
|
|
:
|
|
|
|
else
|
|
|
|
echo "Good file failed: $I"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2022-10-27 12:49:18 +00:00
|
|
|
if test -z "$XZDEC" || "$XZDEC" $NO_WARN "$I" > /dev/null; then
|
2008-01-08 10:29:58 +00:00
|
|
|
:
|
|
|
|
else
|
2008-01-07 11:49:19 +00:00
|
|
|
echo "Good file failed: $I"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
2008-09-30 14:43:55 +00:00
|
|
|
for I in "$srcdir"/files/bad-*.xz
|
2008-01-07 11:49:19 +00:00
|
|
|
do
|
2010-10-08 12:32:29 +00:00
|
|
|
if test -n "$XZ" && "$XZ" -dc "$I" > /dev/null 2>&1; then
|
|
|
|
echo "Bad file succeeded: $I"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2022-10-27 12:49:18 +00:00
|
|
|
# xzdec doesn't warn about unsupported check so skip this if any of
|
|
|
|
# the check types were disabled at built time (NO_WARN isn't empty).
|
|
|
|
if test -n "$XZDEC" && test -z "$NO_WARN" \
|
|
|
|
&& "$XZDEC" "$I" > /dev/null 2>&1; then
|
2008-01-07 11:49:19 +00:00
|
|
|
echo "Bad file succeeded: $I"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
2022-09-16 14:08:53 +00:00
|
|
|
# Testing for the lzma_index_append() bug in <= 5.2.6 needs "xz -l":
|
|
|
|
I="$srcdir/files/bad-3-index-uncomp-overflow.xz"
|
|
|
|
if test -n "$XZ" && "$XZ" -l "$I" > /dev/null 2>&1; then
|
|
|
|
echo "Bad file succeeded with xz -l: $I"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2022-10-25 21:05:57 +00:00
|
|
|
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"
|
2022-10-27 12:30:13 +00:00
|
|
|
if test -z "$XZ" || "$XZ" -dcqQ "$I" > /dev/null; then
|
2022-10-25 21:05:57 +00:00
|
|
|
:
|
|
|
|
else
|
|
|
|
echo "Unsupported file failed with xz -Q: $I"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2022-10-27 12:30:13 +00:00
|
|
|
if test -z "$XZDEC" || "$XZDEC" -qQ "$I" > /dev/null; then
|
2022-10-25 21:05:57 +00:00
|
|
|
:
|
|
|
|
else
|
|
|
|
echo "Unsupported file failed with xzdec -Q: $I"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
#########
|
|
|
|
# .lzma #
|
|
|
|
#########
|
|
|
|
|
2022-07-14 17:33:05 +00:00
|
|
|
for I in "$srcdir"/files/good-*.lzma
|
|
|
|
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-*.lzma
|
|
|
|
do
|
|
|
|
if test -n "$XZ" && "$XZ" -dc "$I" > /dev/null 2>&1; then
|
|
|
|
echo "Bad file succeeded: $I"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
2022-10-20 14:39:06 +00:00
|
|
|
|
|
|
|
#######
|
|
|
|
# .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
|
|
|
|
|
2022-10-27 12:49:18 +00:00
|
|
|
exit "$EXIT_STATUS"
|