diff options
author | Yann Collet <cyan@fb.com> | 2016-09-06 14:46:52 (GMT) |
---|---|---|
committer | Yann Collet <cyan@fb.com> | 2016-09-06 14:46:52 (GMT) |
commit | 33993542af61ebaa87db3a0adbfe3661c0a5d313 (patch) | |
tree | 3ab3ea0efebb062fd630f4baf81563d6132fd166 /programs/frametest.c | |
parent | c8a78dba1fc21f64dec72cf217c21fe8784c42bf (diff) | |
download | lz4-33993542af61ebaa87db3a0adbfe3661c0a5d313.zip lz4-33993542af61ebaa87db3a0adbfe3661c0a5d313.tar.gz lz4-33993542af61ebaa87db3a0adbfe3661c0a5d313.tar.bz2 |
removed test artefacts
Diffstat (limited to 'programs/frametest.c')
-rw-r--r-- | programs/frametest.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/programs/frametest.c b/programs/frametest.c index e8f6975..4322ab8 100644 --- a/programs/frametest.c +++ b/programs/frametest.c @@ -654,7 +654,6 @@ int fuzzerTests(U32 seed, unsigned nbTests, unsigned startTest, double compressi { const BYTE* ip = (const BYTE*)compressedBuffer; const BYTE* const iend = ip + cSize; - DISPLAY("cSize : %u ; srcSize : %u \n", (U32)cSize, (U32)srcDataLength); BYTE* op = (BYTE*)decodedBuffer; BYTE* const oend = op + srcDataLength; size_t totalOut = 0; @@ -672,11 +671,7 @@ int fuzzerTests(U32 seed, unsigned nbTests, unsigned startTest, double compressi if (oSize > (size_t)(oend-op)) oSize = oend-op; dOptions.stableDst = FUZ_rand(&randState) & 1; if (nonContiguousDst==2) dOptions.stableDst = 0; - DISPLAY("in : %u / %u ; out : %u / %u \n", (U32)iSize, (U32)(iend-ip), (U32)oSize, (U32)(oend-op)); - if (iSize == 107662) - iSize += !iSize; result = LZ4F_decompress(dCtx, op, &oSize, ip, &iSize, &dOptions); - DISPLAY("consumed : %u ; generated : %u ; hint : %u \n", (U32)iSize, (U32)oSize, (U32)result); if (result == (size_t)-LZ4F_ERROR_contentChecksum_invalid) locateBuffDiff((BYTE*)srcBuffer+srcStart, decodedBuffer, srcSize, nonContiguousDst); CHECK(LZ4F_isError(result), "Decompression failed (error %i:%s)", (int)result, LZ4F_getErrorName((LZ4F_errorCode_t)result)); |