Home
last modified time | relevance | path

Searched refs:FUZZ_ASSERT_MSG (Results 1 – 8 of 8) sorted by relevance

/third_party/lz4/ossfuzz/
Dcompress_fuzzer.c37 FUZZ_ASSERT_MSG(rtSize == size, "Incorrect regenerated size"); in LLVMFuzzerTestOneInput()
38 FUZZ_ASSERT_MSG(!memcmp(data, rt, size), "Corruption!"); in LLVMFuzzerTestOneInput()
49 FUZZ_ASSERT_MSG(rtSize == compressedSize, "Incorrect regenerated size"); in LLVMFuzzerTestOneInput()
50 FUZZ_ASSERT_MSG(!memcmp(data, rt, compressedSize), "Corruption!"); in LLVMFuzzerTestOneInput()
Dround_trip_fuzzer.c36 FUZZ_ASSERT_MSG(rtSize == size, "Incorrect size"); in LLVMFuzzerTestOneInput()
37 FUZZ_ASSERT_MSG(!memcmp(data, rt, size), "Corruption!"); in LLVMFuzzerTestOneInput()
46 FUZZ_ASSERT_MSG(partialSize == partialCapacity, "Incorrect size"); in LLVMFuzzerTestOneInput()
47 FUZZ_ASSERT_MSG(!memcmp(data, partial, partialSize), "Corruption!"); in LLVMFuzzerTestOneInput()
Dcompress_hc_fuzzer.c39 FUZZ_ASSERT_MSG(rtSize == size, "Incorrect regenerated size"); in LLVMFuzzerTestOneInput()
40 FUZZ_ASSERT_MSG(!memcmp(data, rt, size), "Corruption!"); in LLVMFuzzerTestOneInput()
54 FUZZ_ASSERT_MSG(rtSize == compressedSize, "Incorrect regenerated size"); in LLVMFuzzerTestOneInput()
55 FUZZ_ASSERT_MSG(!memcmp(data, rt, compressedSize), "Corruption!"); in LLVMFuzzerTestOneInput()
Dround_trip_hc_fuzzer.c36 FUZZ_ASSERT_MSG(rtSize == size, "Incorrect size"); in LLVMFuzzerTestOneInput()
37 FUZZ_ASSERT_MSG(!memcmp(data, rt, size), "Corruption!"); in LLVMFuzzerTestOneInput()
Dround_trip_frame_fuzzer.c35 FUZZ_ASSERT_MSG(rtSize == size, "Incorrect regenerated size"); in LLVMFuzzerTestOneInput()
36 FUZZ_ASSERT_MSG(!memcmp(data, rt, size), "Corruption!"); in LLVMFuzzerTestOneInput()
Dcompress_frame_fuzzer.c39 FUZZ_ASSERT_MSG(rtSize == size, "Incorrect regenerated size"); in LLVMFuzzerTestOneInput()
40 FUZZ_ASSERT_MSG(!memcmp(data, rt, size), "Corruption!"); in LLVMFuzzerTestOneInput()
Dfuzz_helpers.h41 #define FUZZ_ASSERT_MSG(cond, msg) \ macro
46 #define FUZZ_ASSERT(cond) FUZZ_ASSERT_MSG((cond), "");
Dround_trip_stream_fuzzer.c117 FUZZ_ASSERT_MSG(size == state->roundTrip.pos, "Incorrect size!"); in state_checkRoundTrip()
118 FUZZ_ASSERT_MSG(!memcmp(data, state->roundTrip.buf, size), "Corruption!"); in state_checkRoundTrip()