| 39 | #endif |
| 40 | |
| 41 | std::string GetTestFunctionLLVMIRPath() { |
| 42 | const auto base = |
| 43 | arrow::internal::PlatformFilename::FromString(GANDIVA_EXTENSION_TEST_DIR); |
| 44 | DCHECK_OK(base.status()); |
| 45 | return base->Join("multiply_by_two.bc")->ToString(); |
| 46 | } |
| 47 | |
| 48 | NativeFunction GetTestExternalFunction() { |
| 49 | NativeFunction multiply_by_two_func( |
no test coverage detected