Comment 77 for bug 1752378

Revision history for this message
Marcin Ĺšlusarz (mslusarz) wrote :

util_file_create timed out because you used file system (PMEM/NON_PMEM_FS_DIR) that does not support fallocate syscall. glibc's posix_fallocate falls back to writing zeroes when fallocate is not supported, so test takes ages to complete. https://github.com/pmem/pmdk/pull/2939 adds code to detect it and fail early.