mirror of
https://git.tukaani.org/xz.git
synced 2024-04-04 12:36:23 +02:00
Fix test_compress.sh.
It broke when --memory option was removed from xzdec. Thanks to Jonathan Nieder.
This commit is contained in:
parent
792331bdee
commit
d5653ba8a1
1 changed files with 3 additions and 3 deletions
|
@ -62,9 +62,9 @@ test_xz() {
|
|||
echo . | tr -d '\n\r'
|
||||
}
|
||||
|
||||
XZ="../src/xz/xz --memory=28MiB --threads=1"
|
||||
XZDEC="../src/xzdec/xzdec --memory=4MiB"
|
||||
unset XZ_OPT
|
||||
XZ="../src/xz/xz --memlimit-compress=28MiB --memlimit-decompress=4MiB \
|
||||
--no-adjust --threads=1 --check=crc64"
|
||||
XZDEC="../src/xzdec/xzdec" # No memory usage limiter available
|
||||
|
||||
# Create the required input files.
|
||||
if ./create_compress_files ; then
|
||||
|
|
Loading…
Reference in a new issue