| 176 | } |
| 177 | |
| 178 | int main(void) |
| 179 | { |
| 180 | /* Limit closefrom. */ |
| 181 | closefrom_limit(0); |
| 182 | |
| 183 | /* This is how many tests you plan to run */ |
| 184 | plan_tests(3); |
| 185 | |
| 186 | ok1(pipe_close()); |
| 187 | ok1(fork_close()); |
| 188 | ok1(fork_communicate()); |
| 189 | |
| 190 | /* This exits depending on whether all tests passed */ |
| 191 | return exit_status(); |
| 192 | } |
nothing calls this directly
no test coverage detected