From d3d2db587e48260c559b7e358285c1231fec542c Mon Sep 17 00:00:00 2001 From: Yann Collet Date: Fri, 15 Jul 2016 12:20:26 +0200 Subject: [PATCH] adapted fuzzer test to new blockSizeMax rule for ZSTD_compressBlock() --- programs/fuzzer.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/programs/fuzzer.c b/programs/fuzzer.c index b95e930d..77a71186 100644 --- a/programs/fuzzer.c +++ b/programs/fuzzer.c @@ -321,8 +321,8 @@ static int basicUnitTests(U32 seed, double compressibility) /* block API tests */ { ZSTD_CCtx* const cctx = ZSTD_createCCtx(); ZSTD_DCtx* const dctx = ZSTD_createDCtx(); - static const size_t blockSize = 100 KB; - static const size_t dictSize = 16 KB; + static const size_t dictSize = 65 KB; + static const size_t blockSize = 100 KB; /* won't cause pb with small dict size */ size_t cSize2; /* basic block compression */