summaryrefslogtreecommitdiffstats
path: root/tests/fuzzer.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/fuzzer.c')
-rw-r--r--tests/fuzzer.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/fuzzer.c b/tests/fuzzer.c
index 5ca0d31..1d8b5f6 100644
--- a/tests/fuzzer.c
+++ b/tests/fuzzer.c
@@ -1059,8 +1059,11 @@ static void FUZ_unitTests(int compressionLevel)
/* useful to trigger undefined sanitizer */
DISPLAYLEVEL(3, "LZ4_compress_default() with NULL input \n");
{ int const maxCSize = LZ4_compressBound(0);
- int const cSize = LZ4_compress_default(NULL, testCompressed, 0, maxCSize);
- FUZ_CHECKTEST(cSize==1 && testCompressed[0]==0, "compressed empty is byte 0");
+ int const cSize = LZ4_compress_default(NULL, testCompressed, 0, maxCSize);
+ FUZ_CHECKTEST(!(cSize==1 && testCompressed[0]==0),
+ "compressing empty should give byte 0"
+ " (maxCSize == %u) (cSize == %u)",
+ (unsigned)maxCSize, (unsigned)cSize);
}
/* in-place compression test */