From 08506b20ed109b3be386a2aa00d6d3b5bc738a82 Mon Sep 17 00:00:00 2001 From: Albert Cheng Date: Sat, 6 Jun 1998 23:42:19 -0500 Subject: [svn-r412] Updated with the newly added data transfer mode. --- test/istore.c | 8 ++++---- 1 file 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(); -- cgit v0.12