| 138 | } // namespace tensorflow |
| 139 | |
| 140 | int main(int argc, char** argv) { |
| 141 | tensorflow::string usage = tensorflow::ffmpeg::ParseTestFlags(&argc, argv); |
| 142 | testing::InitGoogleTest(&argc, argv); |
| 143 | if (argc != 1) { |
| 144 | LOG(ERROR) << usage; |
| 145 | return 2; |
| 146 | } |
| 147 | return RUN_ALL_TESTS(); |
| 148 | } |
nothing calls this directly
no test coverage detected