Displaying 1 result from an estimated 1 matches for "504bf55".
Did you mean:
50455
2014 Oct 22
0
[PATCH] Make test_compression a little more forgiving
...lets the compression test pass even if the a compression
level results in a file that is up to 10 byte larger than the
previous level
---
test/test_compression.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/test/test_compression.sh b/test/test_compression.sh
index 11bd6c3..504bf55 100755
--- a/test/test_compression.sh
+++ b/test/test_compression.sh
@@ -39,7 +39,7 @@ for k in 0 1 2 3 4 5 6 7 8 ; do
echo "Error : Compression ${last_k} size $last_size >= compression $k size $size."
exit 1
fi
- last_size=${size}
+ let last_size=${size}+10
last_k=${k}
rm...