summaryrefslogtreecommitdiffstats
path: root/test/gen_nullspace.c
diff options
context:
space:
mode:
authorDana Robinson <43805+derobins@users.noreply.github.com>2023-07-27 20:43:30 (GMT)
committerGitHub <noreply@github.com>2023-07-27 20:43:30 (GMT)
commit1e91d96fa02466ffe451319bdac1005f84dc7993 (patch)
tree4de04ef502c313dfd766497b20235188761146c0 /test/gen_nullspace.c
parent95e5349089b95dfb95f0f8ce2d6db1bc04ba6c82 (diff)
downloadhdf5-1e91d96fa02466ffe451319bdac1005f84dc7993.zip
hdf5-1e91d96fa02466ffe451319bdac1005f84dc7993.tar.gz
hdf5-1e91d96fa02466ffe451319bdac1005f84dc7993.tar.bz2
Brings over most of the HD prefix removal (#3293)
Diffstat (limited to 'test/gen_nullspace.c')
-rw-r--r--test/gen_nullspace.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/test/gen_nullspace.c b/test/gen_nullspace.c
index 12e00d4..84e7398 100644
--- a/test/gen_nullspace.c
+++ b/test/gen_nullspace.c
@@ -41,42 +41,42 @@ main(void)
/* Create the file */
fid = H5Fcreate(NULLFILE, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT);
- HDassert(fid > 0);
+ assert(fid > 0);
sid = H5Screate(H5S_NULL);
- HDassert(sid > 0);
+ assert(sid > 0);
/* Create dataset */
did = H5Dcreate2(fid, NULLDATASET, H5T_NATIVE_UINT, sid, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT);
- HDassert(did > 0);
+ assert(did > 0);
/* Close the dataset */
ret = H5Dclose(did);
- HDassert(ret >= 0);
+ assert(ret >= 0);
/* Open the root group */
gid = H5Gopen2(fid, "/", H5P_DEFAULT);
- HDassert(gid > 0);
+ assert(gid > 0);
/* Create an attribute for the group */
attr = H5Acreate2(gid, NULLATTR, H5T_NATIVE_INT, sid, H5P_DEFAULT, H5P_DEFAULT);
- HDassert(attr > 0);
+ assert(attr > 0);
/* Close attribute */
ret = H5Aclose(attr);
- HDassert(ret >= 0);
+ assert(ret >= 0);
/* Close the group */
ret = H5Gclose(gid);
- HDassert(ret >= 0);
+ assert(ret >= 0);
/* Close the dataspace */
ret = H5Sclose(sid);
- HDassert(ret >= 0);
+ assert(ret >= 0);
/* Close the file */
ret = H5Fclose(fid);
- HDassert(ret >= 0);
+ assert(ret >= 0);
return EXIT_SUCCESS;
}