mirror of https://git.tukaani.org/xz.git
Tests: Test --single-stream can decompress bad-3-corrupt_lzma2.xz.
The first stream in this file is valid, so this tests that xz properly stops after decompressing it.
This commit is contained in:
parent
0b4ccc9145
commit
a3a29bbd5d
|
@ -149,6 +149,17 @@ else
|
|||
exit 1
|
||||
fi
|
||||
|
||||
# Test that --single-stream can decompress bad-3-corrupt_lzma2.xz.
|
||||
# The first Stream in this file should decompress without errors.
|
||||
# This file cannot be decompressed with xzdec.
|
||||
I="$srcdir/files/bad-3-corrupt_lzma2.xz"
|
||||
if test -z "$XZ" || "$XZ" -dc --single-stream $NO_WARN "$I" > /dev/null; then
|
||||
:
|
||||
else
|
||||
echo "Good first Stream failed xz with --single-stream: $I"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
|
||||
#########
|
||||
# .lzma #
|
||||
|
|
Loading…
Reference in New Issue