Lines Matching refs:other_uid
25 static uid_t other_uid;
29 tst_get_uids(&other_uid, 0, 1);
31 UID16_CHECK(other_uid, setreuid);
40 TST_EXP_FAIL(SETREUID(-1, other_uid), EPERM,
41 "setreuid(%d, %d)", -1, other_uid);
42 TST_EXP_FAIL(SETREUID(other_uid, -1), EPERM,
43 "setreuid(%d, %d)", other_uid, -1);
44 TST_EXP_FAIL(SETREUID(other_uid, other_uid), EPERM,
45 "setreuid(%d, %d)", other_uid, other_uid);