Searched refs:FUZZ_ASSERT_MSG (Results 1 - 9 of 9) sorted by relevance
/third_party/lz4/ossfuzz/ |
H A D | round_trip_fuzzer.c | 41 FUZZ_ASSERT_MSG(rtSize == size, "Incorrect size"); in LLVMFuzzerTestOneInput() 42 FUZZ_ASSERT_MSG(!memcmp(data, rt, size), "Corruption!"); in LLVMFuzzerTestOneInput() 51 FUZZ_ASSERT_MSG(partialSize == partialCapacity, "Incorrect size"); in LLVMFuzzerTestOneInput() 52 FUZZ_ASSERT_MSG(!memcmp(data, partial, partialSize), "Corruption!"); in LLVMFuzzerTestOneInput() 62 FUZZ_ASSERT_MSG(partialSize == partialCapacity, "Incorrect size"); in LLVMFuzzerTestOneInput() 63 FUZZ_ASSERT_MSG(!memcmp(data, partial, partialSize), "Corruption!"); in LLVMFuzzerTestOneInput() 73 FUZZ_ASSERT_MSG(partialSize == partialCapacity, "Incorrect size"); in LLVMFuzzerTestOneInput() 74 FUZZ_ASSERT_MSG(!memcmp(data, partial, partialSize), "Corruption!"); in LLVMFuzzerTestOneInput() 84 FUZZ_ASSERT_MSG(partialSize == partialCapacity, "Incorrect size"); in LLVMFuzzerTestOneInput() 85 FUZZ_ASSERT_MSG(!memcm in LLVMFuzzerTestOneInput() [all...] |
H A D | compress_hc_fuzzer.c | 39 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()
|
H A D | compress_fuzzer.c | 37 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()
|
H A D | compress_frame_fuzzer.c | 39 FUZZ_ASSERT_MSG(rtSize == size, "Incorrect regenerated size"); in LLVMFuzzerTestOneInput() 40 FUZZ_ASSERT_MSG(!memcmp(data, rt, size), "Corruption!"); in LLVMFuzzerTestOneInput()
|
H A D | round_trip_frame_fuzzer.c | 35 FUZZ_ASSERT_MSG(rtSize == size, "Incorrect regenerated size"); in LLVMFuzzerTestOneInput() 36 FUZZ_ASSERT_MSG(!memcmp(data, rt, size), "Corruption!"); in LLVMFuzzerTestOneInput()
|
H A D | round_trip_hc_fuzzer.c | 36 FUZZ_ASSERT_MSG(rtSize == size, "Incorrect size"); in LLVMFuzzerTestOneInput() 37 FUZZ_ASSERT_MSG(!memcmp(data, rt, size), "Corruption!"); in LLVMFuzzerTestOneInput()
|
H A D | fuzz_helpers.h | 42 #define FUZZ_ASSERT_MSG(cond, msg) \ macro 47 #define FUZZ_ASSERT(cond) FUZZ_ASSERT_MSG((cond), "");
|
H A D | round_trip_frame_uncompressed_fuzzer.c | 114 FUZZ_ASSERT_MSG(!memcmp(data, rt, size), "Corruption!"); in compress_round_trip()
|
H A D | round_trip_stream_fuzzer.c | 117 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()
|
Completed in 4 milliseconds