| 23 | #include "arrow/util/macros.h" |
| 24 | |
| 25 | extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) { |
| 26 | auto status = arrow::ipc::internal::FuzzIpcFile(data, static_cast<int64_t>(size)); |
| 27 | arrow::internal::LogFuzzStatus(status, data, static_cast<int64_t>(size)); |
| 28 | return 0; |
| 29 | } |
nothing calls this directly
no test coverage detected