| 78 | } |
| 79 | |
| 80 | int main(int argc, char **argv) |
| 81 | { |
| 82 | if (argc != 2) |
| 83 | fprintf(stderr, "Usage: %s [bb|bc|cc|cb]\n", argv[0]); |
| 84 | else if (strcmp(argv[1], "bb") == 0) |
| 85 | test_buf_to_buf(); |
| 86 | else if (strcmp(argv[1], "bc") == 0) |
| 87 | test_buf_to_cb(); |
| 88 | else if (strcmp(argv[1], "cc") == 0) |
| 89 | test_cb_to_cb(); |
| 90 | else if (strcmp(argv[1], "cb") == 0) |
| 91 | test_cb_to_buf(); |
| 92 | else |
| 93 | fprintf(stderr, "Usage: %s [bb|bc|cc|cb]\n", argv[0]); |
| 94 | |
| 95 | return 0; |
| 96 | } |
nothing calls this directly
no test coverage detected