Lines Matching defs:pathname
164 #define assertChmod(pathname, mode) \
165 assertion_chmod(__FILE__, __LINE__, pathname, mode)
192 #define assertEmptyFile(pathname) \
193 assertion_empty_file(__FILE__, __LINE__, (pathname))
195 #define assertNonEmptyFile(pathname) \
196 assertion_non_empty_file(__FILE__, __LINE__, (pathname))
197 #define assertFileAtime(pathname, sec, nsec) \
198 assertion_file_atime(__FILE__, __LINE__, pathname, sec, nsec)
199 #define assertFileAtimeRecent(pathname) \
200 assertion_file_atime_recent(__FILE__, __LINE__, pathname)
201 #define assertFileBirthtime(pathname, sec, nsec) \
202 assertion_file_birthtime(__FILE__, __LINE__, pathname, sec, nsec)
203 #define assertFileBirthtimeRecent(pathname) \
204 assertion_file_birthtime_recent(__FILE__, __LINE__, pathname)
206 #define assertFileExists(pathname) \
207 assertion_file_exists(__FILE__, __LINE__, pathname)
209 #define assertFileNotExists(pathname) \
210 assertion_file_not_exists(__FILE__, __LINE__, pathname)
212 #define assertFileContents(data, data_size, pathname) \
213 assertion_file_contents(__FILE__, __LINE__, data, data_size, pathname)
215 #define assertFileContainsNoInvalidStrings(pathname, strings) \
216 assertion_file_contains_no_invalid_strings(__FILE__, __LINE__, pathname, strings)
217 #define assertFileMtime(pathname, sec, nsec) \
218 assertion_file_mtime(__FILE__, __LINE__, pathname, sec, nsec)
219 #define assertFileMtimeRecent(pathname) \
220 assertion_file_mtime_recent(__FILE__, __LINE__, pathname)
221 #define assertFileNLinks(pathname, nlinks) \
222 assertion_file_nlinks(__FILE__, __LINE__, pathname, nlinks)
223 #define assertFileSize(pathname, size) \
224 assertion_file_size(__FILE__, __LINE__, pathname, size)
225 #define assertFileMode(pathname, mode) \
226 assertion_file_mode(__FILE__, __LINE__, pathname, mode)
227 #define assertTextFileContents(text, pathname) \
228 assertion_text_file_contents(__FILE__, __LINE__, text, pathname)
229 #define assertFileContainsLinesAnyOrder(pathname, lines) \
230 assertion_file_contains_lines_any_order(__FILE__, __LINE__, pathname, lines)
231 #define assertIsDir(pathname, mode) \
232 assertion_is_dir(__FILE__, __LINE__, pathname, mode)
237 #define assertIsReg(pathname, mode) \
238 assertion_is_reg(__FILE__, __LINE__, pathname, mode)
239 #define assertIsSymlink(pathname, contents, isdir) \
240 assertion_is_symlink(__FILE__, __LINE__, pathname, contents, isdir)
259 #define assertUtimes(pathname, atime, atime_nsec, mtime, mtime_nsec) \
260 assertion_utimes(__FILE__, __LINE__, pathname, atime, atime_nsec, mtime, mtime_nsec)