Lines Matching refs:readlink
9 * 1) readlink(2) returns -1 and sets errno to EACCES if search/write
12 * 2) readlink(2) returns -1 and sets errno to EINVAL if the buffer size
14 * 3) readlink(2) returns -1 and sets errno to EINVAL if the specified
16 * 4) readlink(2) returns -1 and sets errno to ENAMETOOLONG if the
18 * 5) readlink(2) returns -1 and sets errno to ENOENT if the component of
20 * 6) readlink(2) returns -1 and sets errno to ENOTDIR if a component of
22 * 7) readlink(2) returns -1 and sets errno to ELOOP if too many symbolic
24 * 8) readlink(2) returns -1 and sets errno to EFAULT if buf outside the
69 TEST(readlink(tc->link, tc->buf, tc->buf_size));
71 tst_res(TFAIL, "readlink() sueeeeded unexpectedly");
77 "readlink() failed unexpectedly; expected: %d - %s, got",
86 tst_res(TPASS | TTERRNO, "readlink() failed as expected");