summaryrefslogtreecommitdiffstats
path: root/test/hdfs.c
diff options
context:
space:
mode:
authorLarry Knox <lrknox@hdfgroup.org>2021-04-01 20:14:21 (GMT)
committerGitHub <noreply@github.com>2021-04-01 20:14:21 (GMT)
commit87d18137ceed7eae1ca7009dda6f4cf2841ff195 (patch)
tree291983f4bc5f9230bf53564e8555272319d382aa /test/hdfs.c
parentdf75d35cc5295b03dc305ca7e5495fece5737d30 (diff)
downloadhdf5-87d18137ceed7eae1ca7009dda6f4cf2841ff195.zip
hdf5-87d18137ceed7eae1ca7009dda6f4cf2841ff195.tar.gz
hdf5-87d18137ceed7eae1ca7009dda6f4cf2841ff195.tar.bz2
Hdf5 merge issue 487 v110 (#533)
* Cleans up a couple of MSVC warnings in testhdf5 (#475) * Fixes a few testhdf5 warnings raised in Visual Studio Visual Studio is grumpier about treating pointers like integers than gcc. * Committing clang-format changes Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com> * Fix typos and grammar errors. (#476) * Suppresses the tcheck_version test's abort dialog on Windows (#477) * Suppresses the tcheck_version test's abort dialog on Windows Windows raises a modal abort/retry/ignore dialog box when CRT calls abort(). This change installs a report hook that suppresses the dialog so that the CMake tests don't time out waiting for a nonexistent user to click a dialog box. * Committing clang-format changes * Removes __cdecl from callback Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com> * Committing clang-format changes Co-authored-by: Dana Robinson <43805+derobins@users.noreply.github.com> Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: H. Joe Lee <hyoklee@hdfgroup.org>
Diffstat (limited to 'test/hdfs.c')
-rw-r--r--test/hdfs.c40
1 files changed, 32 insertions, 8 deletions
diff --git a/test/hdfs.c b/test/hdfs.c
index 548bceb..d24e7aa 100644
--- a/test/hdfs.c
+++ b/test/hdfs.c
@@ -586,7 +586,10 @@ error:
***********/
if (fapl_id < 0) {
- H5E_BEGIN_TRY { (void)H5Pclose(fapl_id); }
+ H5E_BEGIN_TRY
+ {
+ (void)H5Pclose(fapl_id);
+ }
H5E_END_TRY;
}
return 1;
@@ -669,7 +672,10 @@ test_hdfs_fapl(void)
return 0;
error:
- H5E_BEGIN_TRY { (void)H5Pclose(fapl_id); }
+ H5E_BEGIN_TRY
+ {
+ (void)H5Pclose(fapl_id);
+ }
H5E_END_TRY;
return 1;
@@ -854,7 +860,10 @@ test_vfd_open(void)
HDfprintf(stderr, "testing: %s\n", T.message);
#endif /* HDFS_TEST_DEBUG */
- H5E_BEGIN_TRY { fd = H5FDopen(T.url, T.flags, fapl_id, T.maxaddr); }
+ H5E_BEGIN_TRY
+ {
+ fd = H5FDopen(T.url, T.flags, fapl_id, T.maxaddr);
+ }
H5E_END_TRY;
if (NULL != fd) {
if (TRUE == T.might_use_other_driver && H5FD_HDFS != fd->driver_id) {
@@ -1035,7 +1044,10 @@ error:
(void)H5FDclose(fd_shakespeare);
}
if (fapl_id >= 0) {
- H5E_BEGIN_TRY { (void)H5Pclose(fapl_id); }
+ H5E_BEGIN_TRY
+ {
+ (void)H5Pclose(fapl_id);
+ }
H5E_END_TRY;
}
@@ -1132,7 +1144,10 @@ error:
(void)H5FDclose(file_shakespeare);
}
if (fapl_id >= 0) {
- H5E_BEGIN_TRY { (void)H5Pclose(fapl_id); }
+ H5E_BEGIN_TRY
+ {
+ (void)H5Pclose(fapl_id);
+ }
H5E_END_TRY;
}
@@ -1336,7 +1351,10 @@ error:
(void)H5FDclose(file_raven);
}
if (fapl_id >= 0) {
- H5E_BEGIN_TRY { (void)H5Pclose(fapl_id); }
+ H5E_BEGIN_TRY
+ {
+ (void)H5Pclose(fapl_id);
+ }
H5E_END_TRY;
}
@@ -1457,7 +1475,10 @@ error:
***********/
if (fapl_id >= 0) {
- H5E_BEGIN_TRY { (void)H5Pclose(fapl_id); }
+ H5E_BEGIN_TRY
+ {
+ (void)H5Pclose(fapl_id);
+ }
H5E_END_TRY;
}
if (file != NULL) {
@@ -1600,7 +1621,10 @@ error:
#endif /* HDFS_TEST_DEBUG */
if (fapl_id >= 0) {
- H5E_BEGIN_TRY { (void)H5Pclose(fapl_id); }
+ H5E_BEGIN_TRY
+ {
+ (void)H5Pclose(fapl_id);
+ }
H5E_END_TRY;
}
if (file > 0) {