| 48 | const char* kModelMixed = "mixed.bin"; |
| 49 | |
| 50 | int FailOnErrorReporter::Report(const char* format, va_list args) { |
| 51 | char buf[1024]; |
| 52 | vsnprintf(buf, sizeof(buf), format, args); |
| 53 | EXPECT_TRUE(false) << "Error happened: " << buf; |
| 54 | return 0; |
| 55 | } |
| 56 | } // namespace internal |
| 57 | } // namespace optimize |
| 58 | } // namespace tflite |
no outgoing calls
no test coverage detected