Lines Matching refs:chroot
284 ATF_TC(chroot);
285 ATF_TC_HEAD(chroot, tc)
288 "Test arc4random in an empty chroot");
291 ATF_TC_BODY(chroot, tc)
297 * Create an empty chroot.
302 * In a child process, enter the chroot and verify that we
305 * (atf gets unhappy if we chroot in the same process, when it
312 if (chroot("root") == -1)
313 err(1, "chroot");
315 errx(1, "open /dev/urandom must fail in empty chroot");
352 * (atf gets unhappy if we chroot in the same process, when it
660 ATF_TP_ADD_TC(tp, chroot);