| 80 | } // namespace |
| 81 | |
| 82 | int main() { |
| 83 | try { |
| 84 | run_case(0); |
| 85 | run_case(1); |
| 86 | std::cout << "flashsr_utility_test passed\n"; |
| 87 | } catch (const std::exception & ex) { |
| 88 | std::cerr << "flashsr_utility_test failed: " << ex.what() << "\n"; |
| 89 | return 1; |
| 90 | } |
| 91 | return 0; |
| 92 | } |
nothing calls this directly
no test coverage detected