| 48 | /* main program */ |
| 49 | |
| 50 | int main(int argc,char *argv[]) |
| 51 | { |
| 52 | MY_INIT(argv[0]); |
| 53 | DBUG_PROCESS(argv[0]); |
| 54 | |
| 55 | get_options(argc,argv); |
| 56 | |
| 57 | exit(do_test()); |
| 58 | } |
| 59 | |
| 60 | static int do_test() |
| 61 | { |
nothing calls this directly
no test coverage detected