summaryrefslogtreecommitdiffstats
path: root/test/enc_dec_plist.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/enc_dec_plist.c')
-rw-r--r--test/enc_dec_plist.c256
1 files changed, 128 insertions, 128 deletions
diff --git a/test/enc_dec_plist.c b/test/enc_dec_plist.c
index 0a73273..47944b6 100644
--- a/test/enc_dec_plist.c
+++ b/test/enc_dec_plist.c
@@ -33,11 +33,11 @@ test_encode_decode(hid_t orig_pl, H5F_libver_t low, H5F_libver_t high, hbool_t s
/* Create file access property list */
if ((fapl = H5Pcreate(H5P_FILE_ACCESS)) < 0)
- TEST_ERROR
+ TEST_ERROR;
/* Set library version bounds */
if (H5Pset_libver_bounds(fapl, low, high) < 0)
- TEST_ERROR
+ TEST_ERROR;
H5E_BEGIN_TRY
{
@@ -53,23 +53,23 @@ test_encode_decode(hid_t orig_pl, H5F_libver_t low, H5F_libver_t high, hbool_t s
/* Allocate the buffer for encoding */
if (NULL == (temp_buf = (void *)HDmalloc(temp_size)))
- TEST_ERROR
+ TEST_ERROR;
/* Encode the property list to the buffer */
if (H5Pencode2(orig_pl, temp_buf, &temp_size, fapl) < 0)
- TEST_ERROR
+ TEST_ERROR;
/* Decode the buffer */
if ((pl = H5Pdecode(temp_buf)) < 0)
- STACK_ERROR
+ STACK_ERROR;
/* Check if the original and the decoded property lists are equal */
if (!H5Pequal(orig_pl, pl))
- PUTS_ERROR("encoding-decoding cycle failed\n")
+ PUTS_ERROR("encoding-decoding cycle failed\n");
/* Close the decoded property list */
if ((H5Pclose(pl)) < 0)
- TEST_ERROR
+ TEST_ERROR;
/* Free the buffer */
if (temp_buf)
@@ -80,22 +80,22 @@ test_encode_decode(hid_t orig_pl, H5F_libver_t low, H5F_libver_t high, hbool_t s
/* first call to encode returns only the size of the buffer needed */
if (H5Pencode1(orig_pl, NULL, &temp_size) < 0)
- STACK_ERROR
+ STACK_ERROR;
if (NULL == (temp_buf = (void *)HDmalloc(temp_size)))
- TEST_ERROR
+ TEST_ERROR;
if (H5Pencode1(orig_pl, temp_buf, &temp_size) < 0)
- STACK_ERROR
+ STACK_ERROR;
if ((pl = H5Pdecode(temp_buf)) < 0)
- STACK_ERROR
+ STACK_ERROR;
if (!H5Pequal(orig_pl, pl))
- PUTS_ERROR("encoding-decoding cycle failed\n")
+ PUTS_ERROR("encoding-decoding cycle failed\n");
if ((H5Pclose(pl)) < 0)
- STACK_ERROR
+ STACK_ERROR;
if (temp_buf)
HDfree(temp_buf);
@@ -103,7 +103,7 @@ test_encode_decode(hid_t orig_pl, H5F_libver_t low, H5F_libver_t high, hbool_t s
}
if ((H5Pclose(fapl)) < 0)
- TEST_ERROR
+ TEST_ERROR;
/* Success */
return (0);
@@ -209,367 +209,367 @@ main(void)
/******* ENCODE/DECODE DCPLS *****/
TESTING("Default DCPL Encoding/Decoding");
if ((dcpl = H5Pcreate(H5P_DATASET_CREATE)) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
/* Test encoding & decoding default property list */
if (test_encode_decode(dcpl, low, high, FALSE) < 0)
- FAIL_PUTS_ERROR("Default DCPL encoding/decoding failed\n")
+ FAIL_PUTS_ERROR("Default DCPL encoding/decoding failed\n");
PASSED();
TESTING("DCPL Encoding/Decoding");
if ((H5Pset_chunk(dcpl, 2, chunk_size)) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
if ((H5Pset_alloc_time(dcpl, H5D_ALLOC_TIME_LATE)) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
if ((H5Pset_fill_value(dcpl, H5T_NATIVE_DOUBLE, &fill)) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
if ((H5Pset_dset_no_attrs_hint(dcpl, FALSE)) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
max_size[0] = 100;
if ((H5Pset_external(dcpl, "ext1.data", (off_t)0, (hsize_t)(max_size[0] * sizeof(int) / 4))) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
if ((H5Pset_external(dcpl, "ext2.data", (off_t)0, (hsize_t)(max_size[0] * sizeof(int) / 4))) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
if ((H5Pset_external(dcpl, "ext3.data", (off_t)0, (hsize_t)(max_size[0] * sizeof(int) / 4))) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
if ((H5Pset_external(dcpl, "ext4.data", (off_t)0, (hsize_t)(max_size[0] * sizeof(int) / 4))) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
/* Test encoding & decoding property list */
if (test_encode_decode(dcpl, low, high, FALSE) < 0)
- FAIL_PUTS_ERROR("DCPL encoding/decoding failed\n")
+ FAIL_PUTS_ERROR("DCPL encoding/decoding failed\n");
/* release resource */
if ((H5Pclose(dcpl)) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
PASSED();
/******* ENCODE/DECODE DCPLS *****/
TESTING("DCPL Encoding/Decoding for virtual layout");
if ((dcpl = H5Pcreate(H5P_DATASET_CREATE)) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
/* Set virtual layout */
if (H5Pset_layout(dcpl, H5D_VIRTUAL) < 0)
- TEST_ERROR
+ TEST_ERROR;
/* Create source dataspace */
if ((srcspace = H5Screate_simple(1, dims, NULL)) < 0)
- TEST_ERROR
+ TEST_ERROR;
/* Create virtual dataspace */
if ((vspace = H5Screate_simple(1, dims, NULL)) < 0)
- TEST_ERROR
+ TEST_ERROR;
/* Add virtual layout mapping */
if (H5Pset_virtual(dcpl, vspace, SRC_FNAME, SRC_DSET, srcspace) < 0)
- TEST_ERROR
+ TEST_ERROR;
if (test_encode_decode(dcpl, low, high, TRUE) < 0)
- FAIL_PUTS_ERROR("DCPL encoding/decoding failed\n")
+ FAIL_PUTS_ERROR("DCPL encoding/decoding failed\n");
/* release resource */
if ((H5Pclose(dcpl)) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
/******* ENCODE/DECODE DAPLS *****/
TESTING("Default DAPL Encoding/Decoding");
if ((dapl = H5Pcreate(H5P_DATASET_ACCESS)) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
/* Test encoding & decoding default property list */
if (test_encode_decode(dapl, low, high, FALSE) < 0)
- FAIL_PUTS_ERROR("Default DAPL encoding/decoding failed\n")
+ FAIL_PUTS_ERROR("Default DAPL encoding/decoding failed\n");
PASSED();
TESTING("DAPL Encoding/Decoding");
if ((H5Pset_chunk_cache(dapl, nslots, nbytes, w0)) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
/* Test encoding & decoding property list */
if (test_encode_decode(dapl, low, high, FALSE) < 0)
- FAIL_PUTS_ERROR("DAPL encoding/decoding failed\n")
+ FAIL_PUTS_ERROR("DAPL encoding/decoding failed\n");
/* release resource */
if ((H5Pclose(dapl)) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
PASSED();
/******* ENCODE/DECODE OCPLS *****/
TESTING("Default OCPL Encoding/Decoding");
if ((ocpl = H5Pcreate(H5P_OBJECT_CREATE)) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
/* Test encoding & decoding default property list */
if (test_encode_decode(ocpl, low, high, FALSE) < 0)
- FAIL_PUTS_ERROR("Default OCPL encoding/decoding failed\n")
+ FAIL_PUTS_ERROR("Default OCPL encoding/decoding failed\n");
PASSED();
TESTING("OCPL Encoding/Decoding");
if ((H5Pset_attr_creation_order(ocpl, (H5P_CRT_ORDER_TRACKED | H5P_CRT_ORDER_INDEXED))) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
if ((H5Pset_attr_phase_change(ocpl, 110, 105)) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
if ((H5Pset_filter(ocpl, H5Z_FILTER_FLETCHER32, 0, (size_t)0, NULL)) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
/* Test encoding & decoding property list */
if (test_encode_decode(ocpl, low, high, FALSE) < 0)
- FAIL_PUTS_ERROR("OCPL encoding/decoding failed\n")
+ FAIL_PUTS_ERROR("OCPL encoding/decoding failed\n");
/* release resource */
if ((H5Pclose(ocpl)) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
PASSED();
/******* ENCODE/DECODE DXPLS *****/
TESTING("Default DXPL Encoding/Decoding");
if ((dxpl = H5Pcreate(H5P_DATASET_XFER)) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
/* Test encoding & decoding default property list */
if (test_encode_decode(dxpl, low, high, FALSE) < 0)
- FAIL_PUTS_ERROR("Default DXPL encoding/decoding failed\n")
+ FAIL_PUTS_ERROR("Default DXPL encoding/decoding failed\n");
PASSED();
TESTING("DXPL Encoding/Decoding");
if ((H5Pset_btree_ratios(dxpl, 0.2, 0.6, 0.2)) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
if ((H5Pset_hyper_vector_size(dxpl, 5)) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
#ifdef H5_HAVE_PARALLEL
if ((H5Pset_dxpl_mpio(dxpl, H5FD_MPIO_COLLECTIVE)) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
if ((H5Pset_dxpl_mpio_collective_opt(dxpl, H5FD_MPIO_INDIVIDUAL_IO)) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
if ((H5Pset_dxpl_mpio_chunk_opt(dxpl, H5FD_MPIO_CHUNK_MULTI_IO)) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
if ((H5Pset_dxpl_mpio_chunk_opt_ratio(dxpl, 30)) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
if ((H5Pset_dxpl_mpio_chunk_opt_num(dxpl, 40)) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
#endif /* H5_HAVE_PARALLEL */
if ((H5Pset_edc_check(dxpl, H5Z_DISABLE_EDC)) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
if ((H5Pset_data_transform(dxpl, c_to_f)) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
/* Test encoding & decoding property list */
if (test_encode_decode(dxpl, low, high, FALSE) < 0)
- FAIL_PUTS_ERROR("DXPL encoding/decoding failed\n")
+ FAIL_PUTS_ERROR("DXPL encoding/decoding failed\n");
/* release resource */
if ((H5Pclose(dxpl)) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
PASSED();
/******* ENCODE/DECODE GCPLS *****/
TESTING("Default GCPL Encoding/Decoding");
if ((gcpl = H5Pcreate(H5P_GROUP_CREATE)) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
/* Test encoding & decoding default property list */
if (test_encode_decode(gcpl, low, high, FALSE) < 0)
- FAIL_PUTS_ERROR("Default GCPL encoding/decoding failed\n")
+ FAIL_PUTS_ERROR("Default GCPL encoding/decoding failed\n");
PASSED();
TESTING("GCPL Encoding/Decoding");
if ((H5Pset_local_heap_size_hint(gcpl, 256)) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
if ((H5Pset_link_phase_change(gcpl, 2, 2)) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
/* Query the group creation properties */
if ((H5Pget_link_phase_change(gcpl, &max_compact, &min_dense)) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
if ((H5Pset_est_link_info(gcpl, 3, 9)) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
if ((H5Pset_link_creation_order(gcpl, (H5P_CRT_ORDER_TRACKED | H5P_CRT_ORDER_INDEXED))) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
/* Test encoding & decoding property list */
if (test_encode_decode(gcpl, low, high, FALSE) < 0)
- FAIL_PUTS_ERROR("GCPL encoding/decoding failed\n")
+ FAIL_PUTS_ERROR("GCPL encoding/decoding failed\n");
/* release resource */
if ((H5Pclose(gcpl)) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
PASSED();
/******* ENCODE/DECODE LCPLS *****/
TESTING("Default LCPL Encoding/Decoding");
if ((lcpl = H5Pcreate(H5P_LINK_CREATE)) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
/* Test encoding & decoding default property list */
if (test_encode_decode(lcpl, low, high, FALSE) < 0)
- FAIL_PUTS_ERROR("Default LCPL encoding/decoding failed\n")
+ FAIL_PUTS_ERROR("Default LCPL encoding/decoding failed\n");
PASSED();
TESTING("LCPL Encoding/Decoding");
if ((H5Pset_create_intermediate_group(lcpl, TRUE)) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
/* Test encoding & decoding property list */
if (test_encode_decode(lcpl, low, high, FALSE) < 0)
- FAIL_PUTS_ERROR("LCPL encoding/decoding failed\n")
+ FAIL_PUTS_ERROR("LCPL encoding/decoding failed\n");
/* release resource */
if ((H5Pclose(lcpl)) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
PASSED();
/******* ENCODE/DECODE LAPLS *****/
TESTING("Default LAPL Encoding/Decoding");
if ((lapl = H5Pcreate(H5P_LINK_ACCESS)) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
/* Test encoding & decoding default property list */
if (test_encode_decode(lapl, low, high, FALSE) < 0)
- FAIL_PUTS_ERROR("Default LAPL encoding/decoding failed\n")
+ FAIL_PUTS_ERROR("Default LAPL encoding/decoding failed\n");
PASSED();
TESTING("LAPL Encoding/Decoding");
if ((H5Pset_nlinks(lapl, (size_t)134)) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
if ((H5Pset_elink_acc_flags(lapl, H5F_ACC_RDONLY)) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
if ((H5Pset_elink_prefix(lapl, "/tmpasodiasod")) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
/* Create FAPL for the elink FAPL */
if ((fapl = H5Pcreate(H5P_FILE_ACCESS)) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
if ((H5Pset_alignment(fapl, 2, 1024)) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
if ((H5Pset_elink_fapl(lapl, fapl)) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
/* Close the elink's FAPL */
if ((H5Pclose(fapl)) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
/* Test encoding & decoding property list */
if (test_encode_decode(lapl, low, high, FALSE) < 0)
- FAIL_PUTS_ERROR("LAPL encoding/decoding failed\n")
+ FAIL_PUTS_ERROR("LAPL encoding/decoding failed\n");
/* release resource */
if ((H5Pclose(lapl)) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
PASSED();
/******* ENCODE/DECODE OCPYPLS *****/
TESTING("Default OCPYPL Encoding/Decoding");
if ((ocpypl = H5Pcreate(H5P_OBJECT_COPY)) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
/* Test encoding & decoding default property list */
if (test_encode_decode(ocpypl, low, high, FALSE) < 0)
- FAIL_PUTS_ERROR("Default OCPYPL encoding/decoding failed\n")
+ FAIL_PUTS_ERROR("Default OCPYPL encoding/decoding failed\n");
PASSED();
TESTING("OCPYPL Encoding/Decoding");
if ((H5Pset_copy_object(ocpypl, H5O_COPY_EXPAND_EXT_LINK_FLAG)) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
if ((H5Padd_merge_committed_dtype_path(ocpypl, "foo")) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
if ((H5Padd_merge_committed_dtype_path(ocpypl, "bar")) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
/* Test encoding & decoding property list */
if (test_encode_decode(ocpypl, low, high, FALSE) < 0)
- FAIL_PUTS_ERROR("OCPYPL encoding/decoding failed\n")
+ FAIL_PUTS_ERROR("OCPYPL encoding/decoding failed\n");
/* release resource */
if ((H5Pclose(ocpypl)) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
PASSED();
/******* ENCODE/DECODE FAPLS *****/
TESTING("Default FAPL Encoding/Decoding");
if ((fapl = H5Pcreate(H5P_FILE_ACCESS)) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
/* Test encoding & decoding default property list */
if (test_encode_decode(fapl, low, high, FALSE) < 0)
- FAIL_PUTS_ERROR("Default FAPL encoding/decoding failed\n")
+ FAIL_PUTS_ERROR("Default FAPL encoding/decoding failed\n");
PASSED();
TESTING("FAPL Encoding/Decoding");
if ((H5Pset_family_offset(fapl, 1024)) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
if ((H5Pset_meta_block_size(fapl, 2098452)) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
if ((H5Pset_sieve_buf_size(fapl, 1048576)) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
if ((H5Pset_alignment(fapl, 2, 1024)) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
if ((H5Pset_cache(fapl, 1024, 128, 10485760, 0.3)) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
if ((H5Pset_elink_file_cache_size(fapl, 10485760)) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
if ((H5Pset_gc_references(fapl, 1)) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
if ((H5Pset_small_data_block_size(fapl, 2048)) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
if ((H5Pset_libver_bounds(fapl, H5F_LIBVER_LATEST, H5F_LIBVER_LATEST)) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
if ((H5Pset_fclose_degree(fapl, H5F_CLOSE_WEAK)) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
if ((H5Pset_multi_type(fapl, H5FD_MEM_GHEAP)) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
if ((H5Pset_mdc_config(fapl, &my_cache_config)) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
if ((H5Pset_mdc_image_config(fapl, &my_cache_image_config)) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
/* Test encoding & decoding property list */
if (test_encode_decode(fapl, low, high, FALSE) < 0)
- FAIL_PUTS_ERROR("FAPL encoding/decoding failed\n")
+ FAIL_PUTS_ERROR("FAPL encoding/decoding failed\n");
/* release resource */
if ((H5Pclose(fapl)) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
PASSED();
@@ -577,44 +577,44 @@ main(void)
TESTING("Default FCPL Encoding/Decoding");
if ((fcpl = H5Pcreate(H5P_FILE_CREATE)) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
/* Test encoding & decoding default property list */
if (test_encode_decode(fcpl, low, high, FALSE) < 0)
- FAIL_PUTS_ERROR("Default FCPL encoding/decoding failed\n")
+ FAIL_PUTS_ERROR("Default FCPL encoding/decoding failed\n");
PASSED();
TESTING("FCPL Encoding/Decoding");
if ((H5Pset_userblock(fcpl, 1024) < 0))
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
if ((H5Pset_istore_k(fcpl, 3) < 0))
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
if ((H5Pset_sym_k(fcpl, 4, 5) < 0))
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
if ((H5Pset_shared_mesg_nindexes(fcpl, 8) < 0))
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
if ((H5Pset_shared_mesg_index(fcpl, 1, H5O_SHMESG_SDSPACE_FLAG, 32) < 0))
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
if ((H5Pset_shared_mesg_phase_change(fcpl, 60, 20) < 0))
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
if ((H5Pset_sizes(fcpl, 8, 4) < 0))
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
/* Test encoding & decoding property list */
if (test_encode_decode(fcpl, low, high, FALSE) < 0)
- FAIL_PUTS_ERROR("FCPL encoding/decoding failed\n")
+ FAIL_PUTS_ERROR("FCPL encoding/decoding failed\n");
/* release resource */
if ((H5Pclose(fcpl)) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
PASSED();
@@ -622,26 +622,26 @@ main(void)
TESTING("Default STRCPL Encoding/Decoding");
if ((strcpl = H5Pcreate(H5P_STRING_CREATE)) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
/* Test encoding & decoding default property list */
if (test_encode_decode(strcpl, low, high, FALSE) < 0)
- FAIL_PUTS_ERROR("Default STRCPL encoding/decoding failed\n")
+ FAIL_PUTS_ERROR("Default STRCPL encoding/decoding failed\n");
PASSED();
TESTING("STRCPL Encoding/Decoding");
if ((H5Pset_char_encoding(strcpl, H5T_CSET_UTF8) < 0))
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
/* Test encoding & decoding property list */
if (test_encode_decode(strcpl, low, high, FALSE) < 0)
- FAIL_PUTS_ERROR("STRCPL encoding/decoding failed\n")
+ FAIL_PUTS_ERROR("STRCPL encoding/decoding failed\n");
/* release resource */
if ((H5Pclose(strcpl)) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
PASSED();
@@ -649,26 +649,26 @@ main(void)
TESTING("Default ACPL Encoding/Decoding");
if ((acpl = H5Pcreate(H5P_ATTRIBUTE_CREATE)) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
/* Test encoding & decoding default property list */
if (test_encode_decode(acpl, low, high, FALSE) < 0)
- FAIL_PUTS_ERROR("Default ACPL encoding/decoding failed\n")
+ FAIL_PUTS_ERROR("Default ACPL encoding/decoding failed\n");
PASSED();
TESTING("ACPL Encoding/Decoding");
if ((H5Pset_char_encoding(acpl, H5T_CSET_UTF8) < 0))
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
/* Test encoding & decoding property list */
if (test_encode_decode(acpl, low, high, FALSE) < 0)
- FAIL_PUTS_ERROR("ACPL encoding/decoding failed\n")
+ FAIL_PUTS_ERROR("ACPL encoding/decoding failed\n");
/* release resource */
if ((H5Pclose(acpl)) < 0)
- FAIL_STACK_ERROR
+ FAIL_STACK_ERROR;
PASSED();