Searched refs:tmpfilefd (Results 1 – 2 of 2) sorted by relevance
/netbsd-src/external/bsd/libarchive/dist/libarchive/test/ |
H A D | test_read_large.c | 39 int tmpfilefd; in DEFINE_TEST() local 77 tmpfilefd = open(tmpfilename, O_WRONLY | O_CREAT | O_BINARY); in DEFINE_TEST() 79 tmpfilefd = open(tmpfilename, O_WRONLY | O_CREAT | O_BINARY, 0755); in DEFINE_TEST() 81 assert(0 < tmpfilefd); in DEFINE_TEST() 82 assertA(0 == archive_read_data_into_fd(a, tmpfilefd)); in DEFINE_TEST() 83 close(tmpfilefd); in DEFINE_TEST()
|
H A D | test_read_data_large.c | 49 int tmpfilefd; in DEFINE_TEST() local 95 tmpfilefd = open(tmpfilename, O_WRONLY | O_CREAT | O_BINARY); in DEFINE_TEST() 97 tmpfilefd = open(tmpfilename, O_WRONLY | O_CREAT | O_BINARY, 0777); in DEFINE_TEST() 99 assert(tmpfilefd != 0); in DEFINE_TEST() 100 assertEqualIntA(a, 0, archive_read_data_into_fd(a, tmpfilefd)); in DEFINE_TEST() 103 close(tmpfilefd); in DEFINE_TEST()
|