Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/libarchive/libarchive/test/
H A Dtest_read_large.c41 int tmpfilefd; in DEFINE_TEST() local
80 tmpfilefd = open(tmpfilename, O_WRONLY | O_CREAT | O_BINARY); in DEFINE_TEST()
82 tmpfilefd = open(tmpfilename, O_WRONLY | O_CREAT | O_BINARY, 0755); in DEFINE_TEST()
84 assert(0 < tmpfilefd); in DEFINE_TEST()
85 assertA(0 == archive_read_data_into_fd(a, tmpfilefd)); in DEFINE_TEST()
86 close(tmpfilefd); in DEFINE_TEST()
H A Dtest_read_data_large.c50 int tmpfilefd; in DEFINE_TEST() local
98 tmpfilefd = open(tmpfilename, O_WRONLY | O_CREAT | O_BINARY); in DEFINE_TEST()
100 tmpfilefd = open(tmpfilename, O_WRONLY | O_CREAT | O_BINARY, 0777); in DEFINE_TEST()
102 assert(tmpfilefd != 0); in DEFINE_TEST()
103 assertEqualIntA(a, 0, archive_read_data_into_fd(a, tmpfilefd)); in DEFINE_TEST()
106 close(tmpfilefd); in DEFINE_TEST()