| 101 | } |
| 102 | |
| 103 | int main(int argc, char** argv) { |
| 104 | int failed = 0; |
| 105 | if (argc != 2) { |
| 106 | cerr << "Usage: " << argv[0] << " tests-dir" << endl; |
| 107 | return 1; |
| 108 | } |
| 109 | tests_dir = argv[1]; |
| 110 | |
| 111 | RUN_TEST(failed, test_data_ostream()); |
| 112 | RUN_TEST(failed, test_decoder_primitives_exact()); |
| 113 | RUN_TEST(failed, test_encoder_primitives()); |
| 114 | return failed; |
| 115 | } |
nothing calls this directly
no test coverage detected