summaryrefslogtreecommitdiffstats
path: root/test/gen_deflate.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/gen_deflate.c')
-rw-r--r--test/gen_deflate.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/test/gen_deflate.c b/test/gen_deflate.c
index d11ed09..1f434bb 100644
--- a/test/gen_deflate.c
+++ b/test/gen_deflate.c
@@ -56,7 +56,7 @@ main(void)
/* Initialize the data */
/* (Try for something easily compressible) */
if (NULL == (data = (int *)HDmalloc(SPACE_DIM1 * SPACE_DIM2 * sizeof(int))))
- TEST_ERROR
+ TEST_ERROR;
for (i = 0; i < SPACE_DIM1; i++)
for (j = 0; j < SPACE_DIM2; j++)
@@ -64,39 +64,39 @@ main(void)
/* Create the file */
if ((fid = H5Fcreate(TESTFILE, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT)) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
/* Create the dataspace */
if ((sid = H5Screate_simple(SPACE_RANK, dims, NULL)) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
/* Create the dataset creation property list */
if ((dcpl_id = H5Pcreate(H5P_DATASET_CREATE)) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
/* Set up for deflated data */
if (H5Pset_chunk(dcpl_id, 2, chunk_dims) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
if (H5Pset_deflate(dcpl_id, 9) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
/* Create the compressed dataset */
if ((did = H5Dcreate2(fid, "Dataset1", H5T_NATIVE_INT, sid, H5P_DEFAULT, dcpl_id, H5P_DEFAULT)) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
/* Write the data to the dataset */
if (H5Dwrite(did, H5T_NATIVE_INT, H5S_ALL, H5S_ALL, H5P_DEFAULT, data) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
/* Close everything */
if (H5Pclose(dcpl_id) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
if (H5Dclose(did) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
if (H5Sclose(sid) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
if (H5Fclose(fid) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
HDfree(data);