From d5653ba8a1ea9c00de4fddc617aba3c51e18139d Mon Sep 17 00:00:00 2001 From: Lasse Collin Date: Tue, 10 Aug 2010 11:04:30 +0300 Subject: [PATCH] Fix test_compress.sh. It broke when --memory option was removed from xzdec. Thanks to Jonathan Nieder. --- tests/test_compress.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/test_compress.sh b/tests/test_compress.sh index ff0cb304..01fb6d5a 100755 --- a/tests/test_compress.sh +++ b/tests/test_compress.sh @@ -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