| 86 | } |
| 87 | |
| 88 | int main(int argc, char *argv[]) |
| 89 | { |
| 90 | int i; |
| 91 | |
| 92 | if (argc > 1) |
| 93 | return T_EXIT_SKIP; |
| 94 | |
| 95 | for (i = 0; i < 10000; i++) { |
| 96 | if (pipe_bug()) |
| 97 | return T_EXIT_FAIL; |
| 98 | } |
| 99 | |
| 100 | return T_EXIT_PASS; |
| 101 | } |
nothing calls this directly
no test coverage detected