summaryrefslogtreecommitdiffstats
path: root/test/gen_new_super.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/gen_new_super.c')
-rw-r--r--test/gen_new_super.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/gen_new_super.c b/test/gen_new_super.c
index 47d6d47..46855e7 100644
--- a/test/gen_new_super.c
+++ b/test/gen_new_super.c
@@ -48,10 +48,10 @@ main(void)
/* Create a file creation property list */
fcpl = H5Pcreate(H5P_FILE_CREATE);
- HDassert(fcpl >= 0);
+ assert(fcpl >= 0);
ret = H5Pset_istore_k(fcpl, ISTORE_IK);
- HDassert(ret >= 0);
+ assert(ret >= 0);
/* Creating a file with the non-default file creation property list should
* create a version 1 superblock
@@ -59,15 +59,15 @@ main(void)
/* Create file with custom file creation property list */
file = H5Fcreate(TESTFILE, H5F_ACC_TRUNC, fcpl, H5P_DEFAULT);
- HDassert(file >= 0);
+ assert(file >= 0);
/* Close FCPL */
ret = H5Pclose(fcpl);
- HDassert(ret >= 0);
+ assert(ret >= 0);
/* Close file */
ret = H5Fclose(file);
- HDassert(ret >= 0);
+ assert(ret >= 0);
return EXIT_SUCCESS;
}