| 16 | #endif |
| 17 | |
| 18 | int main(int argc, char **argv) |
| 19 | { |
| 20 | #ifdef RUN_TESTS |
| 21 | testing::InitGoogleTest(&argc, argv); |
| 22 | return RUN_ALL_TESTS(); |
| 23 | #endif |
| 24 | #ifdef __SWITCH__ |
| 25 | switch_enable_network(); |
| 26 | #endif |
| 27 | |
| 28 | return dvl::DiabloMain(argc, argv); |
| 29 | } |
nothing calls this directly
no test coverage detected