diff options
author | Albert Cheng <acheng@hdfgroup.org> | 1998-06-07 04:42:19 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 1998-06-07 04:42:19 (GMT) |
commit | 08506b20ed109b3be386a2aa00d6d3b5bc738a82 (patch) | |
tree | cb5738f512df0e2589814e1099b887c6bfaf220f | |
parent | dadb964ba64517ce3ae2628e6155555fc5542e65 (diff) | |
download | hdf5-08506b20ed109b3be386a2aa00d6d3b5bc738a82.zip hdf5-08506b20ed109b3be386a2aa00d6d3b5bc738a82.tar.gz hdf5-08506b20ed109b3be386a2aa00d6d3b5bc738a82.tar.bz2 |
[svn-r412] Updated with the newly added data transfer mode.
-rw-r--r-- | test/istore.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/istore.c b/test/istore.c index 15753a8..06b13be 100644 --- a/test/istore.c +++ b/test/istore.c @@ -319,7 +319,7 @@ test_extend(H5F_t *f, const char *prefix, /* Write to disk */ if (H5F_arr_write(f, &layout, NULL, NULL, size, size, zero, offset, - buf)<0) { + H5D_XFER_DFLT, buf)<0) { puts("*FAILED*"); if (!isatty(1)) { AT(); @@ -330,7 +330,7 @@ test_extend(H5F_t *f, const char *prefix, /* Read from disk */ memset(check, 0xff, (size_t)nelmts); if (H5F_arr_read(f, &layout, NULL, NULL, size, size, zero, offset, - check)<0) { + H5D_XFER_DFLT, check)<0) { puts("*FAILED*"); if (!isatty(1)) { AT(); @@ -366,7 +366,7 @@ 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, NULL, NULL, whole_size, whole_size, zero, - zero, buf)<0) { + zero, H5D_XFER_DFLT, buf)<0) { puts("*FAILED*"); if (!isatty(1)) { AT(); @@ -490,7 +490,7 @@ test_sparse(H5F_t *f, const char *prefix, size_t nblocks, /* write to disk */ if (H5F_arr_write(f, &layout, NULL, NULL, size, size, zero, offset, - buf)<0) { + H5D_XFER_DFLT, buf)<0) { puts("*FAILED*"); if (!isatty(1)) { AT(); |