From: Sen Huang Date: Fri, 15 Nov 2019 19:57:44 +0000 (-0500) Subject: Updated comment to reflect actual compression behavior X-Git-Tag: v1.4.5^2~154^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=db8efbfe7d5ce6df3e09ef2be93eb4234b32f511;p=thirdparty%2Fzstd.git Updated comment to reflect actual compression behavior --- diff --git a/tests/fuzzer.c b/tests/fuzzer.c index e757daaba..7bf84196d 100644 --- a/tests/fuzzer.c +++ b/tests/fuzzer.c @@ -1999,7 +1999,7 @@ static int basicUnitTests(U32 const seed, double compressibility) /* long rle test */ { size_t sampleSize = 0; - size_t expectedCompressedSize = 39; /* two RLE blocks, zstd 1.4.4 */ + size_t expectedCompressedSize = 39; /* block 1: RLE, block 2: compressed, block 3: RLE, zstd 1.4.4 */ DISPLAYLEVEL(3, "test%3i : Long RLE test : ", testNb++); memset((char*)CNBuffer+sampleSize, 'B', 256 KB - 1); sampleSize += 256 KB - 1;