fchroot
if (fchroot(fd) != 0)
ATF_REQUIRE_ERRNO(EBADF, fchroot(-1) == -1);
ATF_REQUIRE_ERRNO(ENOTDIR, fchroot(fd) == -1);
if (fchroot(fd) != -1)