summaryrefslogtreecommitdiffstats
path: root/test/tvltypes.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@koziol.gov>2019-12-21 04:41:00 (GMT)
committerQuincey Koziol <koziol@koziol.gov>2019-12-21 04:41:00 (GMT)
commitcf5cd3b639992718faf71027bc050b18c9ff853d (patch)
treeb23c00829042caae8866504e563269f48e0fc2b0 /test/tvltypes.c
parent2c2c46d4ea16d17e0fe0afeedde1bf828706e202 (diff)
downloadhdf5-cf5cd3b639992718faf71027bc050b18c9ff853d.zip
hdf5-cf5cd3b639992718faf71027bc050b18c9ff853d.tar.gz
hdf5-cf5cd3b639992718faf71027bc050b18c9ff853d.tar.bz2
Refactor H5Dvlen_get_buf_size to use optional dataset operation, with generic fallback for VOL connectors that don't implement operation
Diffstat (limited to 'test/tvltypes.c')
-rw-r--r--test/tvltypes.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/tvltypes.c b/test/tvltypes.c
index acfd0a2..a6ed60e 100644
--- a/test/tvltypes.c
+++ b/test/tvltypes.c
@@ -465,15 +465,15 @@ test_vltypes_vlen_atomic(void)
ret = H5Dvlen_get_buf_size(dataset, tid1, sid1, &size);
CHECK(ret, FAIL, "H5Dvlen_get_buf_size");
+ /* 10 elements allocated = 1 + 2 + 3 + 4 elements for each array position */
+ VERIFY(size,((SPACE1_DIM1*(SPACE1_DIM1+1))/2)*sizeof(unsigned int),"H5Dvlen_get_buf_size");
+
/* Try to call H5Dvlen_get_buf with bad dataspace */
H5E_BEGIN_TRY {
ret = H5Dvlen_get_buf_size(dataset, tid1, sid2, &size);
} H5E_END_TRY
VERIFY(ret, FAIL, "H5Dvlen_get_buf_size");
- /* 10 elements allocated = 1 + 2 + 3 + 4 elements for each array position */
- VERIFY(size,((SPACE1_DIM1*(SPACE1_DIM1+1))/2)*sizeof(unsigned int),"H5Dvlen_get_buf_size");
-
/* Read dataset from disk */
ret=H5Dread(dataset,tid1,H5S_ALL,H5S_ALL,xfer_pid,rdata);
CHECK(ret, FAIL, "H5Dread");