summaryrefslogtreecommitdiffstats
path: root/test/gen_new_fill.c
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2020-09-30 14:27:10 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2020-09-30 14:27:10 (GMT)
commitb2d661b508a7fc7a2592c13bc6bdc175551f075d (patch)
tree13baeb0d83a7c2a4c6299993c182b1227c2f6114 /test/gen_new_fill.c
parent29ab58b58dce556639ea3154e262895773a8a8df (diff)
downloadhdf5-b2d661b508a7fc7a2592c13bc6bdc175551f075d.zip
hdf5-b2d661b508a7fc7a2592c13bc6bdc175551f075d.tar.gz
hdf5-b2d661b508a7fc7a2592c13bc6bdc175551f075d.tar.bz2
Clang-format of source files
Diffstat (limited to 'test/gen_new_fill.c')
-rw-r--r--test/gen_new_fill.c87
1 files changed, 52 insertions, 35 deletions
diff --git a/test/gen_new_fill.c b/test/gen_new_fill.c
index c012d8b..0080f3f 100644
--- a/test/gen_new_fill.c
+++ b/test/gen_new_fill.c
@@ -31,57 +31,74 @@
int
main(void)
{
- hid_t file=-1, dcpl=-1, space=-1, dset1=-1, dset2=-1;
- hsize_t cur_size[2]={8, 8};
- H5D_space_status_t allocation;
- int fill_val1 = 4444, fill_val2=5555;
+ hid_t file = -1, dcpl = -1, space = -1, dset1 = -1, dset2 = -1;
+ hsize_t cur_size[2] = {8, 8};
+ H5D_space_status_t allocation;
+ int fill_val1 = 4444, fill_val2 = 5555;
- if((file=H5Fcreate(FILENAME, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT)) <0) goto error;
- if((space=H5Screate_simple(2, cur_size, cur_size)) < 0) goto error;
- if((dcpl=H5Pcreate(H5P_DATASET_CREATE)) < 0) goto error;
+ if ((file = H5Fcreate(FILENAME, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT)) < 0)
+ goto error;
+ if ((space = H5Screate_simple(2, cur_size, cur_size)) < 0)
+ goto error;
+ if ((dcpl = H5Pcreate(H5P_DATASET_CREATE)) < 0)
+ goto error;
/* Create a dataset with space being allocated and fill value written */
- if(H5Pset_alloc_time(dcpl, H5D_ALLOC_TIME_EARLY) < 0) goto error;
- if(H5Pset_fill_time(dcpl, H5D_FILL_TIME_ALLOC) < 0) goto error;
- if(H5Pset_fill_value(dcpl, H5T_NATIVE_INT, &fill_val1) < 0) goto error;
- if((dset1 = H5Dcreate2(file, "dset1", H5T_NATIVE_INT, space, H5P_DEFAULT, dcpl, H5P_DEFAULT)) < 0)
- goto error;
- if(H5Dget_space_status(dset1, &allocation) < 0) goto error;
- if(allocation == H5D_SPACE_STATUS_NOT_ALLOCATED) {
- puts(" Got unallocated space instead of allocated.");
- printf(" Got %d\n", allocation);
- goto error;
+ if (H5Pset_alloc_time(dcpl, H5D_ALLOC_TIME_EARLY) < 0)
+ goto error;
+ if (H5Pset_fill_time(dcpl, H5D_FILL_TIME_ALLOC) < 0)
+ goto error;
+ if (H5Pset_fill_value(dcpl, H5T_NATIVE_INT, &fill_val1) < 0)
+ goto error;
+ if ((dset1 = H5Dcreate2(file, "dset1", H5T_NATIVE_INT, space, H5P_DEFAULT, dcpl, H5P_DEFAULT)) < 0)
+ goto error;
+ if (H5Dget_space_status(dset1, &allocation) < 0)
+ goto error;
+ if (allocation == H5D_SPACE_STATUS_NOT_ALLOCATED) {
+ puts(" Got unallocated space instead of allocated.");
+ printf(" Got %d\n", allocation);
+ goto error;
}
- if(H5Dclose(dset1) < 0) goto error;
+ if (H5Dclose(dset1) < 0)
+ goto error;
/* Create a dataset with space allocation being delayed */
- if(H5Pset_alloc_time(dcpl, H5D_ALLOC_TIME_LATE) < 0) goto error;
- if(H5Pset_fill_time(dcpl, H5D_FILL_TIME_ALLOC) < 0) goto error;
- if(H5Pset_fill_value(dcpl, H5T_NATIVE_INT, &fill_val2) < 0) goto error;
- if((dset2 = H5Dcreate2(file, "dset2", H5T_NATIVE_INT, space, H5P_DEFAULT, dcpl, H5P_DEFAULT)) < 0)
- goto error;
- if(H5Dget_space_status(dset2, &allocation) < 0) goto error;
- if(allocation != H5D_SPACE_STATUS_NOT_ALLOCATED) {
- puts(" Got allocated space instead of unallocated.");
- printf(" Got %d\n", allocation);
- goto error;
+ if (H5Pset_alloc_time(dcpl, H5D_ALLOC_TIME_LATE) < 0)
+ goto error;
+ if (H5Pset_fill_time(dcpl, H5D_FILL_TIME_ALLOC) < 0)
+ goto error;
+ if (H5Pset_fill_value(dcpl, H5T_NATIVE_INT, &fill_val2) < 0)
+ goto error;
+ if ((dset2 = H5Dcreate2(file, "dset2", H5T_NATIVE_INT, space, H5P_DEFAULT, dcpl, H5P_DEFAULT)) < 0)
+ goto error;
+ if (H5Dget_space_status(dset2, &allocation) < 0)
+ goto error;
+ if (allocation != H5D_SPACE_STATUS_NOT_ALLOCATED) {
+ puts(" Got allocated space instead of unallocated.");
+ printf(" Got %d\n", allocation);
+ goto error;
}
- if(H5Dclose(dset2) < 0) goto error;
+ if (H5Dclose(dset2) < 0)
+ goto error;
- if(H5Sclose(space) < 0) goto error;
- if(H5Pclose(dcpl) < 0) goto error;
- if(H5Fclose(file) < 0) goto error;
+ if (H5Sclose(space) < 0)
+ goto error;
+ if (H5Pclose(dcpl) < 0)
+ goto error;
+ if (H5Fclose(file) < 0)
+ goto error;
return 0;
error:
- H5E_BEGIN_TRY {
+ H5E_BEGIN_TRY
+ {
H5Pclose(dcpl);
H5Sclose(space);
H5Dclose(dset1);
H5Dclose(dset2);
H5Fclose(file);
- } H5E_END_TRY;
+ }
+ H5E_END_TRY;
return 1;
}
-