diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2010-08-10 11:04:30 +0300 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2010-08-10 11:04:30 +0300 |
commit | d5653ba8a1ea9c00de4fddc617aba3c51e18139d (patch) | |
tree | 55ab88759f6b24e1a815886965ab4a3b3da0efd7 /tests | |
parent | Disable the memory usage limiter by default. (diff) | |
download | xz-d5653ba8a1ea9c00de4fddc617aba3c51e18139d.tar.xz |
Fix test_compress.sh.
It broke when --memory option was removed from xzdec.
Thanks to Jonathan Nieder.
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/test_compress.sh | 6 |
1 files 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 |