From: Yann Collet Date: Tue, 20 Mar 2018 23:18:48 +0000 (-0700) Subject: zstreamtest : slightly decreased time to build dictionary size X-Git-Tag: v1.3.4~1^2~11^2~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b18cb7e0b73ef53efb4043976cc4438b44e3c303;p=thirdparty%2Fzstd.git zstreamtest : slightly decreased time to build dictionary size --- diff --git a/tests/zstreamtest.c b/tests/zstreamtest.c index 535b02d8f..b94f282f5 100644 --- a/tests/zstreamtest.c +++ b/tests/zstreamtest.c @@ -239,7 +239,7 @@ static int basicUnitTests(U32 seed, double compressibility) /* Create dictionary */ DISPLAYLEVEL(3, "creating dictionary for unit tests \n"); - dictionary = FUZ_createDictionary(CNBuffer, CNBufferSize / 2, 8 KB, 40 KB); + dictionary = FUZ_createDictionary(CNBuffer, CNBufferSize / 3, 16 KB, 48 KB); if (!dictionary.start) { DISPLAY("Error creating dictionary, aborting \n"); goto _output_error;