mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-03-31 17:10:47 +08:00
[svn-r1136] Updated test for expanded API.
This commit is contained in:
parent
fbef4e61ed
commit
84b5b71e84
@ -362,7 +362,7 @@ test_reference_region(void)
|
||||
ret = H5Sget_select_hyper_nblocks(sid2);
|
||||
VERIFY(ret, 1, "H5Sget_select_hyper_nblocks");
|
||||
coords=HDmalloc(ret*SPACE2_RANK*sizeof(hsize_t)*2); /* allocate space for the hyperslab blocks */
|
||||
ret = H5Sget_select_hyper_blocklist(sid2,coords);
|
||||
ret = H5Sget_select_hyper_blocklist(sid2,0,ret,coords);
|
||||
CHECK(ret, FAIL, "H5Sget_select_hyper_blocklist");
|
||||
VERIFY(coords[0], 2, "Hyperslab Coordinates");
|
||||
VERIFY(coords[1], 2, "Hyperslab Coordinates");
|
||||
@ -390,7 +390,7 @@ test_reference_region(void)
|
||||
ret = H5Sget_select_elem_npoints(sid2);
|
||||
VERIFY(ret, 10, "H5Sget_select_elem_npoints");
|
||||
coords=HDmalloc(ret*SPACE2_RANK*sizeof(hsize_t)); /* allocate space for the element points */
|
||||
ret = H5Sget_select_elem_pointlist(sid2,coords);
|
||||
ret = H5Sget_select_elem_pointlist(sid2,0,ret,coords);
|
||||
CHECK(ret, FAIL, "H5Sget_select_elem_pointlist");
|
||||
VERIFY((hssize_t)coords[0], coord1[0][0], "Element Coordinates");
|
||||
VERIFY((hssize_t)coords[1], coord1[0][1], "Element Coordinates");
|
||||
|
Loading…
x
Reference in New Issue
Block a user