Searched refs:test_file_fd (Results 1 – 1 of 1) sorted by relevance
| /xnu-8792.81.2/tests/ |
| H A D | ioperf.c | 41 int test_file_fd = 0; variable 166 int test_file_fd = open("/mnt2/test", O_RDONLY); in perform_io() local 168 T_ASSERT_POSIX_SUCCESS(test_file_fd, "Open test data file"); in perform_io() 171 T_ASSERT_POSIX_ZERO(fcntl(test_file_fd, F_NOCACHE, 1), "fcntl F_NOCACHE enable"); in perform_io() 172 T_ASSERT_POSIX_ZERO(fcntl(test_file_fd, F_RDAHEAD, 0), "fcntl F_RDAHEAD disable"); in perform_io() 179 read(test_file_fd, data_buf, IO_SIZE); in perform_io() 184 ret = read(test_file_fd, data_buf, IO_SIZE); in perform_io() 188 T_ASSERT_POSIX_SUCCESS(lseek(test_file_fd, 0, SEEK_SET), "lseek begin"); in perform_io() 195 close(test_file_fd); in perform_io()
|