Home | History | Annotate | Download | only in lstat

Lines Matching full:lstat

22  *   1) lstat(2) returns -1 and sets errno to EACCES if search permission is
24 * 2) lstat(2) returns -1 and sets errno to ENOENT if the specified file
26 * 3) lstat(2) returns -1 and sets errno to EFAULT if pathname points
28 * 4) lstat(2) returns -1 and sets errno to ENAMETOOLONG if the pathname
30 * 5) lstat(2) returns -1 and sets errno to ENOTDIR if the directory
32 * 6) lstat(2) returns -1 and sets errno to ELOOP if the pathname has too
164 TEST(lstat(test_cases[i].pathname, &stat_buf));
167 tst_resm(TFAIL, "lstat() returned %ld, expected -1, errno=%d",
173 tst_resm(TPASS | TTERRNO, "lstat() failed as expected");
176 "lstat() failed unexpectedly; expected: %d - %s",