[svn-r26389] Revision 26387 failed with configure option --with-default-api-version=v16.

Changed H5Dcreate() to H5Dcreate2 in test/trefer.c line 633.

Tested with h5committest and with --with-default-api-version=v16 on platypus.
This commit is contained in:
Larry Knox 2015-03-08 12:06:02 -05:00
parent 89ffc9f2d7
commit 63bd09ec8b

View File

@ -633,7 +633,7 @@ test_reference_region(void)
CHECK(space_NA, FAIL, "H5Screate_simple");
/* Create the dataset and write the region references to it */
dset_NA = H5Dcreate(fid1, "DS_NA", H5T_STD_REF_DSETREG, space_NA, H5P_DEFAULT,
dset_NA = H5Dcreate2(fid1, "DS_NA", H5T_STD_REF_DSETREG, space_NA, H5P_DEFAULT,
H5P_DEFAULT, H5P_DEFAULT);
CHECK(dset_NA, FAIL, "H5Dcreate");