diff options
Diffstat (limited to 'test/istore.c')
-rw-r--r-- | test/istore.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/test/istore.c b/test/istore.c index 4a07337..68feb9c 100644 --- a/test/istore.c +++ b/test/istore.c @@ -316,7 +316,7 @@ test_extend(H5F_t *f, const char *prefix, memset(buf, 128 + ctr, nelmts); /* Write to disk */ - if (H5F_arr_write(f, &layout, size, size, zero, offset, buf) < 0) { + if (H5F_arr_write(f, &layout, NULL, size, size, zero, offset, buf)<0) { puts("*FAILED*"); if (!isatty(1)) { AT(); @@ -326,7 +326,8 @@ test_extend(H5F_t *f, const char *prefix, } /* Read from disk */ memset(check, 0xff, nelmts); - if (H5F_arr_read(f, &layout, size, size, zero, offset, check) < 0) { + if (H5F_arr_read(f, &layout, NULL, size, size, zero, offset, + check)<0) { puts("*FAILED*"); if (!isatty(1)) { AT(); @@ -359,7 +360,8 @@ test_extend(H5F_t *f, const char *prefix, /* Now read the entire array back out and check it */ memset(buf, 0xff, nx * ny * nz); - if (H5F_arr_read(f, &layout, whole_size, whole_size, zero, zero, buf)<0) { + if (H5F_arr_read(f, &layout, NULL, whole_size, whole_size, zero, zero, + buf)<0) { puts("*FAILED*"); if (!isatty(1)) { AT(); @@ -478,7 +480,7 @@ test_sparse(H5F_t *f, const char *prefix, size_t nblocks, memset(buf, 128 + ctr, nx * ny * nz); /* write to disk */ - if (H5F_arr_write(f, &layout, size, size, zero, offset, buf) < 0) { + if (H5F_arr_write(f, &layout, NULL, size, size, zero, offset, buf)<0) { puts("*FAILED*"); if (!isatty(1)) { AT(); |