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