Skip to content
Snippets Groups Projects
Commit 5fa2dde3 authored by Alexandr's avatar Alexandr
Browse files

fix GH-337

parent 5d9b38cd
No related branches found
No related tags found
No related merge requests found
......@@ -22,7 +22,9 @@ testset_create(struct log_dir *dir, int64_t *files, int files_n, int node_n)
char tpl[] = "/tmp/fileXXXXXX";
struct fio_batch *batch = fio_batch_alloc(1024);
assert(log_dir_create(dir) == 0);
int create_res = log_dir_create(dir);
assert(create_res == 0);
(void)create_res;
strcpy(dir->open_wflags, "wx");
dir->filetype = "XLOG\n";
dir->filename_ext = ".xlog";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment