| 44 | } |
| 45 | |
| 46 | TEST_CASE(compile) |
| 47 | { |
| 48 | auto p = create_program(); |
| 49 | auto t = migraphx::make_target("fpga"); |
| 50 | |
| 51 | p.compile(t); |
| 52 | EXPECT(p.is_compiled()); |
| 53 | } |
| 54 | |
| 55 | int main(int argc, const char* argv[]) { test::run(argc, argv); } |
nothing calls this directly
no test coverage detected