Home
last modified time | relevance | path

Searched refs:tmpfilefd (Results 1 – 2 of 2) sorted by relevance

/freebsd-13.1/contrib/libarchive/libarchive/test/
H A Dtest_read_large.c40 int tmpfilefd; in DEFINE_TEST() local
78 tmpfilefd = open(tmpfilename, O_WRONLY | O_CREAT | O_BINARY); in DEFINE_TEST()
80 tmpfilefd = open(tmpfilename, O_WRONLY | O_CREAT | O_BINARY, 0755); in DEFINE_TEST()
82 assert(0 < tmpfilefd); in DEFINE_TEST()
83 assertA(0 == archive_read_data_into_fd(a, tmpfilefd)); in DEFINE_TEST()
84 close(tmpfilefd); in DEFINE_TEST()
H A Dtest_read_data_large.c50 int tmpfilefd; in DEFINE_TEST() local
96 tmpfilefd = open(tmpfilename, O_WRONLY | O_CREAT | O_BINARY); in DEFINE_TEST()
98 tmpfilefd = open(tmpfilename, O_WRONLY | O_CREAT | O_BINARY, 0777); in DEFINE_TEST()
100 assert(tmpfilefd != 0); in DEFINE_TEST()
101 assertEqualIntA(a, 0, archive_read_data_into_fd(a, tmpfilefd)); in DEFINE_TEST()
104 close(tmpfilefd); in DEFINE_TEST()