From 9b184359e28313b2ef575b1b0f6f0f7f691f53c6 Mon Sep 17 00:00:00 2001 From: Yann Collet Date: Tue, 13 Feb 2018 10:09:01 -0800 Subject: [PATCH] pretify last unit test output --- tests/fuzzer.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/fuzzer.c b/tests/fuzzer.c index e7c92edc0..aecc06449 100644 --- a/tests/fuzzer.c +++ b/tests/fuzzer.c @@ -1209,7 +1209,7 @@ static int basicUnitTests(U32 seed, double compressibility) if (strcmp("No error detected", ZSTD_getErrorName(ZSTD_error_GENERIC)) != 0) goto _output_error; DISPLAYLEVEL(3, "OK \n"); - DISPLAYLEVEL(4, "test%3i : testing ZSTD dictionary sizes : ", testNb++); + DISPLAYLEVEL(3, "test%3i : testing ZSTD dictionary sizes : ", testNb++); RDG_genBuffer(CNBuffer, CNBuffSize, compressibility, 0., seed); { size_t const size = MIN(128 KB, CNBuffSize); @@ -1230,6 +1230,7 @@ static int basicUnitTests(U32 seed, double compressibility) ZSTD_freeCDict(lgCDict); ZSTD_freeCCtx(cctx); } + DISPLAYLEVEL(3, "OK \n"); _end: free(CNBuffer); -- 2.47.2