summaryrefslogtreecommitdiffstats
path: root/testpar
diff options
context:
space:
mode:
authorH. Joe Lee <hyoklee@hdfgroup.org>2023-08-25 13:13:32 (GMT)
committerGitHub <noreply@github.com>2023-08-25 13:13:32 (GMT)
commitdf161ac293c30c2e74c5c85bac36d4e5de7b14b4 (patch)
treeb7daf1e5a174995219353b95906c26a22f24a09c /testpar
parente7bb05a8869f460afe9f198e9b7eee4a11972d48 (diff)
downloadhdf5-df161ac293c30c2e74c5c85bac36d4e5de7b14b4.zip
hdf5-df161ac293c30c2e74c5c85bac36d4e5de7b14b4.tar.gz
hdf5-df161ac293c30c2e74c5c85bac36d4e5de7b14b4.tar.bz2
chore: match function call and VRFY() output (#3428)
Diffstat (limited to 'testpar')
-rw-r--r--testpar/t_file.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/testpar/t_file.c b/testpar/t_file.c
index 9338344..55a9d6e 100644
--- a/testpar/t_file.c
+++ b/testpar/t_file.c
@@ -781,7 +781,7 @@ test_file_properties(void)
mpi_ret = MPI_Info_create(&info);
VRFY((mpi_ret >= 0), "MPI_Info_create succeeded");
mpi_ret = MPI_Info_set(info, "hdf_info_prop1", "xyz");
- VRFY((mpi_ret == MPI_SUCCESS), "MPI_Info_set");
+ VRFY((mpi_ret == MPI_SUCCESS), "MPI_Info_set succeeded");
/* setup file access plist */
fapl_id = H5Pcreate(H5P_FILE_ACCESS);
@@ -870,7 +870,7 @@ test_file_properties(void)
ret = H5Pset_fapl_mpio(fapl_id, comm, info);
VRFY((ret >= 0), "H5Pset_fapl_mpio failed");
fid = H5Fopen(filename, H5F_ACC_RDWR, fapl_id);
- VRFY((fid != H5I_INVALID_HID), "H5Fcreate succeeded");
+ VRFY((fid != H5I_INVALID_HID), "H5Fopen succeeded");
/* verify settings for file access properties */
@@ -897,7 +897,7 @@ test_file_properties(void)
ret = H5Pset_all_coll_metadata_ops(fapl_id, TRUE);
VRFY((ret >= 0), "H5Pget_all_coll_metadata_ops succeeded");
fid = H5Fopen(filename, H5F_ACC_RDWR, fapl_id);
- VRFY((fid != H5I_INVALID_HID), "H5Fcreate succeeded");
+ VRFY((fid != H5I_INVALID_HID), "H5Fopen succeeded");
/* verify settings for file access properties */