Symbol: REQUIRE_ERRNO
tests/lib/libc/locale/t_mbstowcs.c
210
REQUIRE_ERRNO((ssize_t)mbstowcs(wbuf, t->data, SIZE-1), -1);
tests/lib/libc/locale/t_mbstowcs.c
211
REQUIRE_ERRNO((ssize_t)wcstombs(buf, wbuf, SIZE-1), -1);
tests/lib/libc/setjmp/t_threadjmp.c
123
REQUIRE_ERRNO(sigaction(SIGABRT, &sa, NULL) != -1);
tests/lib/libc/setjmp/t_threadjmp.c
124
REQUIRE_ERRNO(sigemptyset(&ss) != -1);
tests/lib/libc/setjmp/t_threadjmp.c
125
REQUIRE_ERRNO(sigaddset(&ss, SIGABRT) != -1);
tests/lib/libc/setjmp/t_threadjmp.c
126
REQUIRE_ERRNO(sigprocmask(SIG_BLOCK, &ss, NULL) != -1);
tests/lib/libc/setjmp/t_threadjmp.c
146
REQUIRE_ERRNO(sigprocmask(SIG_UNBLOCK, &ss, NULL) != -1);
tests/lib/libc/stdlib/t_hsearch.c
139
REQUIRE_ERRNO(hcreate(16));
tests/lib/libc/stdlib/t_hsearch.c
174
REQUIRE_ERRNO(hcreate(16));
tests/lib/libc/stdlib/t_hsearch.c
195
REQUIRE_ERRNO(hcreate(16));
tests/lib/libc/stdlib/t_hsearch.c
246
REQUIRE_ERRNO(hcreate_r(16, &t) != 0);
tests/lib/libc/stdlib/t_hsearch.c
293
REQUIRE_ERRNO(hcreate_r(16, &t));
tests/lib/libc/stdlib/t_hsearch.c
328
REQUIRE_ERRNO(hcreate_r(16, &t));
tests/lib/libc/stdlib/t_hsearch.c
350
REQUIRE_ERRNO(hcreate_r(16, &t));
tests/lib/libc/stdlib/t_hsearch.c
91
REQUIRE_ERRNO(hcreate(16) != 0);
tests/lib/libc/ttyio/t_ptm.c
139
REQUIRE_ERRNO(fstat(fdm, &stm), -1);
tests/lib/libc/ttyio/t_ptm.c
142
REQUIRE_ERRNO(stat("/dev/ptyp0", &sts), -1);
tests/lib/libc/ttyio/t_ptm.c
148
REQUIRE_ERRNO(grantpt(fdm), -1);
tests/lib/libc/ttyio/t_ptm.c
149
REQUIRE_ERRNO(unlockpt(fdm), -1);
tests/lib/libc/ttyio/t_ptm.c
150
REQUIRE_ERRNO((pty = ptsname(fdm)), NULL);
tests/lib/libc/ttyio/t_ptm.c
152
REQUIRE_ERRNO((fds = open(pty, O_RDWR|O_NOCTTY)), -1);
tests/lib/libc/ttyio/t_ptm.c
153
REQUIRE_ERRNO(fstat(fds, &sts), -1);
tests/lib/libc/ttyio/t_ptm.c
73
REQUIRE_ERRNO(fstat(fdm, &stm), -1);
tests/lib/libc/ttyio/t_ptm.c
75
REQUIRE_ERRNO(ioctl(fdm, TIOCPTMGET, &ptm), -1);
tests/lib/libc/ttyio/t_ptm.c
86
REQUIRE_ERRNO(fstat(ptm.cfd, &stm), -1);
tests/lib/libc/ttyio/t_ptm.c
87
REQUIRE_ERRNO(stat(ptm.cn, &sts), -1);
tests/lib/libc/ttyio/t_ptm.c
91
REQUIRE_ERRNO(fstat(ptm.sfd, &stm), -1);
tests/lib/libc/ttyio/t_ptm.c
92
REQUIRE_ERRNO(stat(ptm.sn, &sts), -1);
tests/lib/libc/ttyio/t_ttyio.c
138
REQUIRE_ERRNO(sigaction(SIGCHLD, &sa, NULL), -1);
tests/lib/libc/ttyio/t_ttyio.c
141
REQUIRE_ERRNO(write(s, "Hello world\n", 12), -1);
tests/lib/libc/ttyio/t_ttyio.c
152
REQUIRE_ERRNO(sigaction(SIGCHLD, &sa, NULL), -1);
tests/lib/libc/ttyio/t_ttyio.c
75
REQUIRE_ERRNO(wait(NULL), -1);
tests/lib/libc/ttyio/t_ttyio.c
99
REQUIRE_ERRNO(openpty(&m, &s, name, &term, NULL), -1);