Home | History | Annotate | Download | only in read

Lines Matching defs:pipe

46 ATF_TC(pipe);
47 ATF_TC_HEAD(pipe, tc)
51 ATF_TC_BODY(pipe, tc)
58 RL(pipe(fds));
64 /* make sure there is something in the pipe */
66 (void)printf("pipe: wrote 'foo' to pipe\n");
75 (void)printf("pipe: read '%s'\n", buffer);
76 (void)printf("pipe: successful end\n");
81 ATF_TP_ADD_TC(tp, pipe);