Home | History | Annotate | Download | only in sys

Lines Matching defs:pathl

47 static const char	*pathl;
79 pathl = getpath();
83 ATF_REQUIRE(pathl != NULL);
86 ATF_REQUIRE(link(path, pathl) == 0);
94 ATF_REQUIRE(unlink(pathl) == 0);
100 (void)unlink(pathl);
116 pathl = getpath();
120 ATF_REQUIRE(pathl != NULL);
123 ATF_REQUIRE(link(path, pathl) == 0);
124 ATF_REQUIRE_ERRNO(EEXIST, link(path, pathl) == -1);
146 ATF_REQUIRE(unlink(pathl) == 0);
152 (void)unlink(pathl);
191 pathl = getpath();
195 ATF_REQUIRE(pathl != NULL);
197 ATF_REQUIRE(link(path, pathl) == 0);
199 ATF_REQUIRE(lstat(pathl, &sb) == 0);
212 ATF_REQUIRE(unlink(pathl) == 0);
218 (void)unlink(pathl);