Lines Matching refs:runtest
36 runtest(const char *fname1, const char *mode1, const char *fname2, in runtest() function
63 runtest(_PATH_DEVNULL, "r", NULL, "r", true); in ATF_TC_BODY()
70 runtest(_PATH_DEVNULL, "w", NULL, "r", false); in ATF_TC_BODY()
77 runtest(_PATH_DEVNULL, "r+", NULL, "r", true); in ATF_TC_BODY()
84 runtest(_PATH_DEVNULL, "r", NULL, "w", false); in ATF_TC_BODY()
91 runtest(_PATH_DEVNULL, "w", NULL, "w", true); in ATF_TC_BODY()
98 runtest(_PATH_DEVNULL, "r+", NULL, "w", true); in ATF_TC_BODY()
105 runtest(_PATH_DEVNULL, "r", NULL, "a", false); in ATF_TC_BODY()
112 runtest(_PATH_DEVNULL, "w", NULL, "a", true); in ATF_TC_BODY()
119 runtest(_PATH_DEVNULL, "r+", NULL, "a", true); in ATF_TC_BODY()
126 runtest(_PATH_DEVNULL, "r", NULL, "r+", false); in ATF_TC_BODY()
133 runtest(_PATH_DEVNULL, "w", NULL, "r+", false); in ATF_TC_BODY()
140 runtest(_PATH_DEVNULL, "r+", NULL, "r+", true); in ATF_TC_BODY()
147 runtest(_PATH_DEVNULL, "r", NULL, "w+", false); in ATF_TC_BODY()
154 runtest(_PATH_DEVNULL, "w", NULL, "w+", false); in ATF_TC_BODY()
161 runtest(_PATH_DEVNULL, "r+", NULL, "w+", true); in ATF_TC_BODY()
168 runtest("/bin/sh", "r", NULL, "r", true); in ATF_TC_BODY()
175 runtest("/bin/sh", "r", "/bin/sh", "r", true); in ATF_TC_BODY()
182 runtest("/bin/sh", "r", _PATH_DEVNULL, "r", true); in ATF_TC_BODY()
189 runtest("/bin/sh", "r", _PATH_DEVNULL, "w", true); in ATF_TC_BODY()