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:
Jia Tan 2024-03-09 10:08:32 +08:00
parent 0b4ccc9145
commit a3a29bbd5d
1 changed files with 11 additions and 0 deletions

View File

@ -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 #