summaryrefslogtreecommitdiffstats
path: root/src/H5Dtest.c
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2016-09-30 07:24:44 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2016-09-30 07:24:44 (GMT)
commita2fe6f7db93bb1e83cc030df0e4181119900c9e5 (patch)
tree5d9e597f7b26a05afb60db7c6957cb848d0c488c /src/H5Dtest.c
parentce11185fbb8489b94758ca810652760ce98180bc (diff)
downloadhdf5-a2fe6f7db93bb1e83cc030df0e4181119900c9e5.zip
hdf5-a2fe6f7db93bb1e83cc030df0e4181119900c9e5.tar.gz
hdf5-a2fe6f7db93bb1e83cc030df0e4181119900c9e5.tar.bz2
Added code to create the test file for all chunk index and layout types.
Diffstat (limited to 'src/H5Dtest.c')
-rw-r--r--src/H5Dtest.c41
1 files changed, 41 insertions, 0 deletions
diff --git a/src/H5Dtest.c b/src/H5Dtest.c
index c3b0b19..56f14f7 100644
--- a/src/H5Dtest.c
+++ b/src/H5Dtest.c
@@ -144,6 +144,47 @@ done:
/*--------------------------------------------------------------------------
NAME
+ H5D__layout_type_test
+ PURPOSE
+ Determine the storage layout type for a dataset
+ USAGE
+ herr_t H5D__layout_type_test(did, layout_type)
+ hid_t did; IN: Dataset to query
+ H5D_layout_t *layout_type; OUT: Pointer to location to place layout info
+ RETURNS
+ Non-negative on success, negative on failure
+ DESCRIPTION
+ Checks the layout type for a dataset.
+ GLOBAL VARIABLES
+ COMMENTS, BUGS, ASSUMPTIONS
+ DO NOT USE THIS FUNCTION FOR ANYTHING EXCEPT TESTING
+ EXAMPLES
+ REVISION LOG
+--------------------------------------------------------------------------*/
+herr_t
+H5D__layout_type_test(hid_t did, H5D_layout_t *layout_type)
+{
+ H5D_t *dset; /* Pointer to dataset to query */
+ herr_t ret_value = SUCCEED; /* return value */
+
+ FUNC_ENTER_PACKAGE
+
+ HDassert(layout_type);
+
+ /* Check args */
+ if(NULL == (dset = (H5D_t *)H5I_object_verify(did, H5I_DATASET)))
+ HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not a dataset")
+
+ if(layout_type)
+ *layout_type = dset->shared->layout.type;
+
+done:
+ FUNC_LEAVE_NOAPI(ret_value)
+} /* H5D__layout_type_test() */
+
+
+/*--------------------------------------------------------------------------
+ NAME
H5D__layout_idx_type_test
PURPOSE
Determine the storage layout index type for a dataset's layout information