summaryrefslogtreecommitdiffstats
path: root/testpar/API/t_dset.c
diff options
context:
space:
mode:
authorDana Robinson <43805+derobins@users.noreply.github.com>2023-06-28 14:31:56 (GMT)
committerGitHub <noreply@github.com>2023-06-28 14:31:56 (GMT)
commit7a44581a84778a1346a2fd5b6cca7d9db905a321 (patch)
tree44ea9c2d1b471eb227698abe8499c34cfa6d47d2 /testpar/API/t_dset.c
parent622fcbd13881fbc58bbeaed3062583b759f5e864 (diff)
downloadhdf5-7a44581a84778a1346a2fd5b6cca7d9db905a321.zip
hdf5-7a44581a84778a1346a2fd5b6cca7d9db905a321.tar.gz
hdf5-7a44581a84778a1346a2fd5b6cca7d9db905a321.tar.bz2
Rename HDassert() to assert() (#3191)
* Change HDassert to assert * Fix bin/make_err
Diffstat (limited to 'testpar/API/t_dset.c')
-rw-r--r--testpar/API/t_dset.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/testpar/API/t_dset.c b/testpar/API/t_dset.c
index dd8e58c..0bc88c1 100644
--- a/testpar/API/t_dset.c
+++ b/testpar/API/t_dset.c
@@ -3116,13 +3116,13 @@ test_actual_io_mode(int selection_mode)
MPI_Barrier(MPI_COMM_WORLD);
- HDassert(mpi_size >= 1);
+ assert(mpi_size >= 1);
mpi_comm = MPI_COMM_WORLD;
mpi_info = MPI_INFO_NULL;
filename = (const char *)PARATESTFILE /* GetTestParameters() */;
- HDassert(filename != NULL);
+ assert(filename != NULL);
/* Setup the file access template */
fapl = create_faccess_plist(mpi_comm, mpi_info, facc_type);
@@ -3638,7 +3638,7 @@ test_no_collective_cause_mode(int selection_mode)
MPI_Barrier(MPI_COMM_WORLD);
- HDassert(mpi_size >= 1);
+ assert(mpi_size >= 1);
mpi_comm = MPI_COMM_WORLD;
mpi_info = MPI_INFO_NULL;
@@ -3680,7 +3680,7 @@ test_no_collective_cause_mode(int selection_mode)
}
filename = (const char *)PARATESTFILE /* GetTestParameters() */;
- HDassert(filename != NULL);
+ assert(filename != NULL);
/* Setup the file access template */
fapl = create_faccess_plist(mpi_comm, mpi_info, l_facc_type);
@@ -4294,7 +4294,7 @@ test_dense_attr(void)
/* get filename */
filename = (const char *)PARATESTFILE /* GetTestParameters() */;
- HDassert(filename != NULL);
+ assert(filename != NULL);
fpid = H5Pcreate(H5P_FILE_ACCESS);
VRFY((fpid > 0), "H5Pcreate succeeded");