summaryrefslogtreecommitdiffstats
path: root/test/gen_cross.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_cross.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_cross.c')
-rw-r--r--test/gen_cross.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/gen_cross.c b/test/gen_cross.c
index c468039..d72f4cb 100644
--- a/test/gen_cross.c
+++ b/test/gen_cross.c
@@ -1258,8 +1258,8 @@ main(void)
/* Create memory space. This does not include the extra row for fill
* values. */
- HDassert(dimsf[0] == NX);
- HDassert(dimsf[1] == NY);
+ assert(dimsf[0] == NX);
+ assert(dimsf[1] == NY);
if ((memspace = H5Screate_simple(RANK, dimsf, NULL)) < 0)
TEST_ERROR;
@@ -1325,8 +1325,8 @@ main(void)
if (H5Fclose(file) < 0)
TEST_ERROR;
- HDexit(EXIT_SUCCESS);
+ exit(EXIT_SUCCESS);
error:
- HDexit(EXIT_FAILURE);
+ exit(EXIT_FAILURE);
} /* end main() */