diff options
author | Jonathan Nieder <jrnieder@gmail.com> | 2010-09-03 16:49:15 -0500 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2010-09-04 00:56:14 +0300 |
commit | 373ee26f955617295c5c537b04a153a1969140d2 (patch) | |
tree | e907770911bf1ab5c9bae7cf9515087b8f31d990 | |
parent | xz: Make -vv show also decompressor memory usage. (diff) | |
download | xz-373ee26f955617295c5c537b04a153a1969140d2.tar.xz |
Adjust memory limits in test_compress.sh
Testing compression at level -4 now requires 48 MiB of free store at
compression time and 5 MiB at decompression time.
Signed-off-by: Jonathan Nieder <jrnieder@gmail.com>
-rwxr-xr-x | tests/test_compress.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_compress.sh b/tests/test_compress.sh index 01fb6d5a..c88ebe15 100755 --- a/tests/test_compress.sh +++ b/tests/test_compress.sh @@ -62,7 +62,7 @@ test_xz() { echo . | tr -d '\n\r' } -XZ="../src/xz/xz --memlimit-compress=28MiB --memlimit-decompress=4MiB \ +XZ="../src/xz/xz --memlimit-compress=48MiB --memlimit-decompress=5MiB \ --no-adjust --threads=1 --check=crc64" XZDEC="../src/xzdec/xzdec" # No memory usage limiter available |