Lines Matching refs:errno
25 * 1) mknod(2) returns -1 and sets errno to EEXIST if specified path
27 * 2) mknod(2) returns -1 and sets errno to EFAULT if pathname points
29 * 3) mknod(2) returns -1 and sets errno to ENOENT if the directory
31 * 4) mknod(2) returns -1 and sets errno to ENAMETOOLONG if the pathname
33 * 5) mknod(2) returns -1 and sets errno to ENOTDIR if the directory
37 * mknod() should fail with return value -1 and set expected errno.
49 * if errno set == expected errno
50 * Issue sys call fails with expected return value and errno.
52 * Issue sys call fails with unexpected errno.
57 * Print errno log and/or timing stats if options given
63 * -e : Turn on errno logging.
79 #include <errno.h>
144 * sets appropriate errno.
152 "-1, errno:%d", TEST_RETURN,
158 tst_resm(TPASS, "mknod() fails, %s, errno:%d",
161 tst_resm(TFAIL, "mknod() fails, %s, errno:%d, "
162 "expected errno:%d", test_desc,
234 * returns -1 and sets errno to EEXIST.
236 * same node in the test and fails with above errno.
251 * returns -1 and sets errno to ENOTDIR.
270 * Print test timing stats and errno log if test executed with options.