summaryrefslogtreecommitdiffstats
path: root/tools/test/misc/repart_test.c
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2018-11-14 21:37:31 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2018-11-23 13:04:14 (GMT)
commit2b616c7c183592010bcfa151060f52f729d01867 (patch)
treee1af95e241da39dcc4e6e9bdf780404c27b44f90 /tools/test/misc/repart_test.c
parent67db60c2c293be2a949fadadbe5b8e5fd4fb658a (diff)
downloadhdf5-2b616c7c183592010bcfa151060f52f729d01867.zip
hdf5-2b616c7c183592010bcfa151060f52f729d01867.tar.gz
hdf5-2b616c7c183592010bcfa151060f52f729d01867.tar.bz2
Renamed h5repart's -family_to_sec2 to -family_to_single.
Diffstat (limited to 'tools/test/misc/repart_test.c')
-rw-r--r--tools/test/misc/repart_test.c21
1 files changed, 14 insertions, 7 deletions
diff --git a/tools/test/misc/repart_test.c b/tools/test/misc/repart_test.c
index 4016ee8..b8e0292 100644
--- a/tools/test/misc/repart_test.c
+++ b/tools/test/misc/repart_test.c
@@ -26,12 +26,13 @@
const char *FILENAME[] = {
"fst_family%05d.h5",
"scd_family%05d.h5",
+ "family_to_single.h5",
"family_to_sec2.h5",
NULL
};
herr_t test_family_h5repart_opens(void);
-herr_t test_sec2_h5repart_opens(void);
+herr_t test_single_h5repart_opens(void);
/*-------------------------------------------------------------------------
@@ -90,23 +91,28 @@ error:
/*-------------------------------------------------------------------------
- * Function: test_sec2_h5repart_opens
+ * Function: test_single_h5repart_opens
*
- * Purpose: Tries to reopen a sec2 file.
+ * Purpose: Tries to reopen a single file.
*
* Return: SUCCEED/FAIL
*
*-------------------------------------------------------------------------
*/
herr_t
-test_sec2_h5repart_opens(void)
+test_single_h5repart_opens(void)
{
hid_t fid = -1;
- /* open the sec2 file */
+ /* open the single file */
if ((fid = H5Fopen(FILENAME[2], H5F_ACC_RDWR, H5P_DEFAULT)) < 0)
goto error;
+ if (H5Fclose(fid) < 0)
+ goto error;
+ /* open the single file (created using the old argument) */
+ if ((fid = H5Fopen(FILENAME[3], H5F_ACC_RDWR, H5P_DEFAULT)) < 0)
+ goto error;
if (H5Fclose(fid) < 0)
goto error;
@@ -119,7 +125,7 @@ error:
return FAIL;
-} /* end test_sec2_h5repart_opens() */
+} /* end test_single_h5repart_opens() */
/*-------------------------------------------------------------------------
@@ -137,7 +143,7 @@ main(void)
int nerrors = 0;
nerrors += test_family_h5repart_opens() < 0 ? 1 : 0;
- nerrors += test_sec2_h5repart_opens() < 0 ? 1 : 0;
+ nerrors += test_single_h5repart_opens() < 0 ? 1 : 0;
if (nerrors)
goto error;
@@ -150,3 +156,4 @@ error:
nerrors, 1 == nerrors ? "" : "S");
HDexit(EXIT_FAILURE);
} /* end main() */
+