Home | History | Annotate | Download | only in symlink

Lines Matching refs:CHMOD

95  *	TEST IDENTIFIER	: chmod01 (chmod)
177 * For chmod
265 #define CHMOD "chmod01"
296 "chmod(2) of object file permissions through symbolic link file is ok",
297 "chmod(2) error when accessing non-existent object through symbolic link is caught",
409 CHMOD, 0, 0, 17, creat_both, ck_both, {
411 CHMOD, 1, ENOENT, 18, creat_symlink, ck_symlink, {
413 CHMOD, 1, ELOOP, 28, creat_symlink, ck_symlink, {
481 CHMOD, "chmod", 3, &test_objects[30],
999 else if (cktcsid(tc_ptr->tcid, CHMOD))
1109 } else if (cktcsid(tc_ptr->tcid, CHMOD)) {
1111 if ((chmod(tc_ptr->fn_arg[1], MODE) == -1) && (errno == ENOENT)) {
1115 "Expected ENOENT error condition when chmod(2) a symbolic",
1190 } else if (cktcsid(tc_ptr->tcid, CHMOD)) {
1192 TEST(chmod(tc_ptr->fn_arg[1], MODE));
1198 "Expected ELOOP error condition when chmod(2) a nested symbolic link:",
1619 * This routine checks out the chmod(2) system call for a successful
1630 else if (chmod(tc_ptr->fn_arg[1], (MODE | MASK)) == -1)
1632 "chmod(2) failed when changing file permission",
1635 sprintf(Buf, "chmod(%s, %#o) was successful\n",
1648 "chmod(2) failed to change object file permissions from",