| 102 | }; |
| 103 | |
| 104 | TEST_P(SpeechTest, DISABLED_HotwordOkGoogleRank1Test) { |
| 105 | std::stringstream os; |
| 106 | ASSERT_TRUE(ConvertCsvData( |
| 107 | "speech_hotword_model_rank1.tflite", "speech_hotword_model_in.csv", |
| 108 | "speech_hotword_model_out_rank1.csv", /*input_tensor=*/"0", |
| 109 | /*output_tensor=*/"18", /*persistent_tensors=*/"4", |
| 110 | /*sequence_size=*/40, &os)); |
| 111 | testing::TfLiteDriver test_driver; |
| 112 | ASSERT_TRUE(testing::ParseAndRunTests(&os, &test_driver, GetMaxInvocations())) |
| 113 | << test_driver.GetErrorMessage(); |
| 114 | } |
| 115 | |
| 116 | TEST_P(SpeechTest, DISABLED_HotwordOkGoogleRank2Test) { |
| 117 | std::stringstream os; |
nothing calls this directly
no test coverage detected