summaryrefslogtreecommitdiffstats
path: root/test/accum.c
diff options
context:
space:
mode:
authorMike McGreevy <mamcgree@hdfgroup.org>2010-10-18 20:46:08 (GMT)
committerMike McGreevy <mamcgree@hdfgroup.org>2010-10-18 20:46:08 (GMT)
commit8cc44e86a3bad7913975d1f5e87323c9909aa4bb (patch)
tree73f18a44c7097a4fb472dfc5d1c27e3a90266fea /test/accum.c
parentf527b1a512ea4b571e22e9efee054d4781afcbc0 (diff)
downloadhdf5-8cc44e86a3bad7913975d1f5e87323c9909aa4bb.zip
hdf5-8cc44e86a3bad7913975d1f5e87323c9909aa4bb.tar.gz
hdf5-8cc44e86a3bad7913975d1f5e87323c9909aa4bb.tar.bz2
[svn-r19623] Purpose:
- Fix a bug in each of the metadata accumulator source and test code Description: - In accum.c test file, switch dxpl_id used in H5F_accum_* function calls to H5P_DATASET_XFER_DEFAULT (instead of H5AC_dxpl_id), to fix compilation on windows. - Changed boundary checking from <= to < when checking if a read from disk with overlapping dirty metadata in the accumulator has the read ending such that it aligns exactly with the dirty accumulator (line 234 of H5Faccum.c). Tested: - h5committested
Diffstat (limited to 'test/accum.c')
-rw-r--r--test/accum.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/accum.c b/test/accum.c
index 91d30c4..c5f6610 100644
--- a/test/accum.c
+++ b/test/accum.c
@@ -55,11 +55,11 @@ unsigned test_random_write(void);
void accum_printf(void);
/* Private Test H5Faccum Function Wrappers */
-#define accum_write(a,s,b) H5F_block_write(f, H5FD_MEM_DEFAULT, (haddr_t)(a), (size_t)(s), H5AC_dxpl_id, (b))
-#define accum_read(a,s,b) H5F_block_read(f, H5FD_MEM_DEFAULT, (haddr_t)(a), (size_t)(s), H5AC_dxpl_id, (b))
-#define accum_free(a,s) H5F_accum_free(f, H5AC_dxpl_id, H5FD_MEM_DEFAULT, (haddr_t)(a), (hsize_t)(s))
-#define accum_flush() H5F_accum_flush(f, H5AC_dxpl_id)
-#define accum_reset() H5F_accum_reset(f, H5AC_dxpl_id, TRUE)
+#define accum_write(a,s,b) H5F_block_write(f, H5FD_MEM_DEFAULT, (haddr_t)(a), (size_t)(s), H5P_DATASET_XFER_DEFAULT, (b))
+#define accum_read(a,s,b) H5F_block_read(f, H5FD_MEM_DEFAULT, (haddr_t)(a), (size_t)(s), H5P_DATASET_XFER_DEFAULT, (b))
+#define accum_free(a,s) H5F_accum_free(f, H5P_DATASET_XFER_DEFAULT, H5FD_MEM_DEFAULT, (haddr_t)(a), (hsize_t)(s))
+#define accum_flush() H5F_accum_flush(f, H5P_DATASET_XFER_DEFAULT)
+#define accum_reset() H5F_accum_reset(f, H5P_DATASET_XFER_DEFAULT, TRUE)
/* ================= */
/* Main Test Routine */
@@ -1625,7 +1625,7 @@ error:
HDfree(zbuf);
return 1;
-} /* end test_random_write() */
+} /* end test_big() */
/*-------------------------------------------------------------------------