From: Sean Purcell Date: Thu, 12 Jan 2017 17:38:29 +0000 (-0800) Subject: Fix missing 'OK' logging on fuzzer testcase X-Git-Tag: v1.1.3^2~27^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F510%2Fhead;p=thirdparty%2Fzstd.git Fix missing 'OK' logging on fuzzer testcase --- diff --git a/tests/fuzzer.c b/tests/fuzzer.c index 19b199ab9..00cfb0574 100644 --- a/tests/fuzzer.c +++ b/tests/fuzzer.c @@ -319,6 +319,7 @@ static int basicUnitTests(U32 seed, double compressibility) "\x37\xa4\x30\xec\x11\x22\x33\x44", 8); if (ZSTD_getErrorCode(ret) != ZSTD_error_dictionary_corrupted) goto _output_error; } + DISPLAYLEVEL(4, "OK \n"); ZSTD_freeCCtx(cctx); ZSTD_freeDCtx(dctx);