summaryrefslogtreecommitdiffstats
path: root/test/mount.c
diff options
context:
space:
mode:
authorAllen Byrne <50328838+byrnHDF@users.noreply.github.com>2021-04-20 00:17:24 (GMT)
committerGitHub <noreply@github.com>2021-04-20 00:17:24 (GMT)
commit168c1245b4aa6fa4779b3df5cc050d0272abdc2e (patch)
tree6e4dc53920a8c2c0bbdb7cfb6f190e6703e80446 /test/mount.c
parent100e132a62ae1aaf97f379684d04ed00d6016208 (diff)
downloadhdf5-168c1245b4aa6fa4779b3df5cc050d0272abdc2e.zip
hdf5-168c1245b4aa6fa4779b3df5cc050d0272abdc2e.tar.gz
hdf5-168c1245b4aa6fa4779b3df5cc050d0272abdc2e.tar.bz2
1 8 Merge dev changes for long double and cmake (#548)
* Update supported platforms * Merge PR#3 changes from develop * # WARNING: head commit changed in the meantime Merge gcc 10 diagnostics option from develop Merge CMake changes from develop Merge warnings from develop Merge #318 OSX changes from develop Merge tools changes from develop Merge test macros from develop * Format updates * Fix missing semicolon and format fix * Format update * Correct actions, remove java option * Update autotools build files * Add testfiles * Fix configure issue with make flags * Init fapls to default * Update generated files and fix h5repack id closure * update format * Merges from develop #358 patches from vtk #361 fix header guard spelling * Merges from develop #340 clang -Wformat-security warnings #360 Fixed uninitialized warnings header guard underscore cleanup whitespace cleanup tools sync * format alignment * initialize vars * revert H5private change * Merge #380 from develop * Split format source and commit changes on repo push * Change windows TS to use older VS. * HDFFV-11229 merge dev changes for long double display in tools * Committing clang-format changes * Update unsupported types with precision Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
Diffstat (limited to 'test/mount.c')
-rw-r--r--test/mount.c125
1 files changed, 100 insertions, 25 deletions
diff --git a/test/mount.c b/test/mount.c
index 724c701..ff39873 100644
--- a/test/mount.c
+++ b/test/mount.c
@@ -96,7 +96,10 @@ setup(hid_t fapl)
return 0;
error:
- H5E_BEGIN_TRY { H5Fclose(file); }
+ H5E_BEGIN_TRY
+ {
+ H5Fclose(file);
+ }
H5E_END_TRY;
return -1;
} /* end setup() */
@@ -197,7 +200,10 @@ test_illegal(hid_t fapl)
FAIL_STACK_ERROR
/* Try mounting a file on itself */
- H5E_BEGIN_TRY { status = H5Fmount(file1, "/mnt1", file1, H5P_DEFAULT); }
+ H5E_BEGIN_TRY
+ {
+ status = H5Fmount(file1, "/mnt1", file1, H5P_DEFAULT);
+ }
H5E_END_TRY;
if (status >= 0) {
H5_FAILED();
@@ -214,7 +220,10 @@ test_illegal(hid_t fapl)
FAIL_STACK_ERROR
if (H5Fmount(mnt, ".", file2, H5P_DEFAULT) < 0)
FAIL_STACK_ERROR
- H5E_BEGIN_TRY { status = H5Fmount(mnt, ".", file3, H5P_DEFAULT); }
+ H5E_BEGIN_TRY
+ {
+ status = H5Fmount(mnt, ".", file3, H5P_DEFAULT);
+ }
H5E_END_TRY;
if (status >= 0) {
H5_FAILED();
@@ -236,7 +245,10 @@ test_illegal(hid_t fapl)
FAIL_STACK_ERROR
if (H5Fmount(mnt, ".", file3, H5P_DEFAULT) < 0)
FAIL_STACK_ERROR
- H5E_BEGIN_TRY { status = H5Fmount(mnt, ".", file3b, H5P_DEFAULT); }
+ H5E_BEGIN_TRY
+ {
+ status = H5Fmount(mnt, ".", file3b, H5P_DEFAULT);
+ }
H5E_END_TRY;
if (status >= 0) {
H5_FAILED();
@@ -251,7 +263,10 @@ test_illegal(hid_t fapl)
/* Try to create a "weak" cycle */
if (H5Fmount(file1, "/mnt1", file2, H5P_DEFAULT) < 0)
FAIL_STACK_ERROR
- H5E_BEGIN_TRY { status = H5Fmount(file2, "/mnt1/file2", file1b, H5P_DEFAULT); }
+ H5E_BEGIN_TRY
+ {
+ status = H5Fmount(file2, "/mnt1/file2", file1b, H5P_DEFAULT);
+ }
H5E_END_TRY;
if (status >= 0) {
H5_FAILED();
@@ -353,7 +368,10 @@ test_samefile(hid_t fapl)
FAIL_STACK_ERROR
if (!grp_info.mounted)
FAIL_PUTS_ERROR(" Group should have 'mounted' flag set.")
- H5E_BEGIN_TRY { status = H5Fmount(mnt1b, ".", file3, H5P_DEFAULT); }
+ H5E_BEGIN_TRY
+ {
+ status = H5Fmount(mnt1b, ".", file3, H5P_DEFAULT);
+ }
H5E_END_TRY;
if (status >= 0)
FAIL_PUTS_ERROR(" Mounting different files at one mount point should have failed.")
@@ -389,7 +407,10 @@ test_samefile(hid_t fapl)
FAIL_STACK_ERROR
if (!grp_info.mounted)
FAIL_PUTS_ERROR(" Group should have 'mounted' flag set.")
- H5E_BEGIN_TRY { status = H5Fmount(mnt1b, ".", file2, H5P_DEFAULT); }
+ H5E_BEGIN_TRY
+ {
+ status = H5Fmount(mnt1b, ".", file2, H5P_DEFAULT);
+ }
H5E_END_TRY;
if (status >= 0)
FAIL_PUTS_ERROR(" Mounting same files at one mount point should have failed.")
@@ -469,7 +490,10 @@ test_hide(hid_t fapl)
FAIL_STACK_ERROR
/* Original names under file1:/mnt1 should not be accessible */
- H5E_BEGIN_TRY { grp = H5Gopen2(file1, "/mnt1/file1", H5P_DEFAULT); }
+ H5E_BEGIN_TRY
+ {
+ grp = H5Gopen2(file1, "/mnt1/file1", H5P_DEFAULT);
+ }
H5E_END_TRY;
if (grp >= 0) {
H5_FAILED();
@@ -931,7 +955,10 @@ test_unlink(hid_t fapl)
FAIL_STACK_ERROR
if (H5Oget_info_by_name(root, "file2", &oinfo, H5P_DEFAULT) < 0)
FAIL_STACK_ERROR
- H5E_BEGIN_TRY { status = H5Oget_info_by_name(mnt, "file2", &oinfo, H5P_DEFAULT); }
+ H5E_BEGIN_TRY
+ {
+ status = H5Oget_info_by_name(mnt, "file2", &oinfo, H5P_DEFAULT);
+ }
H5E_END_TRY;
if (status >= 0) {
H5_FAILED();
@@ -949,14 +976,20 @@ test_unlink(hid_t fapl)
*/
if (H5Oget_info_by_name(root, "file2", &oinfo, H5P_DEFAULT) < 0)
FAIL_STACK_ERROR
- H5E_BEGIN_TRY { status = H5Oget_info_by_name(mnt, "file2", &oinfo, H5P_DEFAULT); }
+ H5E_BEGIN_TRY
+ {
+ status = H5Oget_info_by_name(mnt, "file2", &oinfo, H5P_DEFAULT);
+ }
H5E_END_TRY;
if (status >= 0) {
H5_FAILED();
HDputs(" Traversal through mount point should not have worked!");
TEST_ERROR
} /* end if */
- H5E_BEGIN_TRY { status = H5Oget_info_by_name(file2, "/mnt_unlink/file2", &oinfo, H5P_DEFAULT); }
+ H5E_BEGIN_TRY
+ {
+ status = H5Oget_info_by_name(file2, "/mnt_unlink/file2", &oinfo, H5P_DEFAULT);
+ }
H5E_END_TRY;
if (status >= 0) {
H5_FAILED();
@@ -969,14 +1002,20 @@ test_unlink(hid_t fapl)
* the mount point because the name doesn't exist anymore. We must
* supply the mount point directly.
*/
- H5E_BEGIN_TRY { status = H5Funmount(file1, "/mnt_unlink"); }
+ H5E_BEGIN_TRY
+ {
+ status = H5Funmount(file1, "/mnt_unlink");
+ }
H5E_END_TRY;
if (status >= 0) {
H5_FAILED();
HDprintf(" %d: Unmount by name should not have been allowed!\n", __LINE__);
TEST_ERROR
} /* end if */
- H5E_BEGIN_TRY { status = H5Funmount(file2, "/"); }
+ H5E_BEGIN_TRY
+ {
+ status = H5Funmount(file2, "/");
+ }
H5E_END_TRY;
if (status >= 0) {
H5_FAILED();
@@ -2382,7 +2421,10 @@ test_fcdegree_same(hid_t fapl)
TEST_ERROR
/* Try mounting file with different file close degree (should fail) */
- H5E_BEGIN_TRY { ret = H5Fmount(gidA, ".", fid2, H5P_DEFAULT); }
+ H5E_BEGIN_TRY
+ {
+ ret = H5Fmount(gidA, ".", fid2, H5P_DEFAULT);
+ }
H5E_END_TRY;
if (ret >= 0)
TEST_ERROR
@@ -2535,7 +2577,10 @@ test_fcdegree_semi(hid_t fapl)
TEST_ERROR
/* Try closing file #2 (should fail, since there are still objects open) */
- H5E_BEGIN_TRY { ret = H5Fclose(fid2); }
+ H5E_BEGIN_TRY
+ {
+ ret = H5Fclose(fid2);
+ }
H5E_END_TRY;
if (ret >= 0)
TEST_ERROR
@@ -2545,7 +2590,10 @@ test_fcdegree_semi(hid_t fapl)
TEST_ERROR
/* Try closing file #2 (should still fail, since there are still objects open in child file) */
- H5E_BEGIN_TRY { ret = H5Fclose(fid2); }
+ H5E_BEGIN_TRY
+ {
+ ret = H5Fclose(fid2);
+ }
H5E_END_TRY;
if (ret >= 0)
TEST_ERROR
@@ -2683,11 +2731,17 @@ test_fcdegree_strong(hid_t fapl)
TEST_ERROR
/* Check that objects are closed */
- H5E_BEGIN_TRY { ret = H5Oget_info(gidA, &oinfo); }
+ H5E_BEGIN_TRY
+ {
+ ret = H5Oget_info(gidA, &oinfo);
+ }
H5E_END_TRY;
if (ret >= 0)
TEST_ERROR
- H5E_BEGIN_TRY { ret = H5Oget_info(gidAM, &oinfo); }
+ H5E_BEGIN_TRY
+ {
+ ret = H5Oget_info(gidAM, &oinfo);
+ }
H5E_END_TRY;
if (ret >= 0)
TEST_ERROR
@@ -2821,11 +2875,17 @@ test_acc_perm(hid_t fapl)
TEST_ERROR
/* Attempt to create objects in read only file (should fail) */
- H5E_BEGIN_TRY { bad_id = H5Gcreate2(gidAM, "Z", H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); }
+ H5E_BEGIN_TRY
+ {
+ bad_id = H5Gcreate2(gidAM, "Z", H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT);
+ }
H5E_END_TRY;
if (bad_id >= 0)
TEST_ERROR
- H5E_BEGIN_TRY { bad_id = H5Gcreate2(fid1, "/A/L", H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); }
+ H5E_BEGIN_TRY
+ {
+ bad_id = H5Gcreate2(fid1, "/A/L", H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT);
+ }
H5E_END_TRY;
if (bad_id >= 0)
TEST_ERROR
@@ -2865,7 +2925,10 @@ test_acc_perm(hid_t fapl)
TEST_ERROR
/* Attempt to create objects in read only file again (should fail) */
- H5E_BEGIN_TRY { bad_id = H5Gcreate2(fid1, "/A/L", H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); }
+ H5E_BEGIN_TRY
+ {
+ bad_id = H5Gcreate2(fid1, "/A/L", H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT);
+ }
H5E_END_TRY;
if (bad_id >= 0)
TEST_ERROR
@@ -3264,7 +3327,10 @@ test_nested_survive(hid_t fapl)
TEST_ERROR
/* Open object in file #3 through file #1 mount path (should fail) */
- H5E_BEGIN_TRY { gidAMS = H5Gopen2(fid1, "A/M/S", H5P_DEFAULT); }
+ H5E_BEGIN_TRY
+ {
+ gidAMS = H5Gopen2(fid1, "A/M/S", H5P_DEFAULT);
+ }
H5E_END_TRY;
if (gidAMS >= 0)
TEST_ERROR
@@ -3778,7 +3844,10 @@ test_cut_graph(hid_t fapl)
TEST_ERROR
/* Attempt to open an object in file #4, from file #1 */
- H5E_BEGIN_TRY { gidK = H5Gopen2(gidQ, "/A/D/K", H5P_DEFAULT); }
+ H5E_BEGIN_TRY
+ {
+ gidK = H5Gopen2(gidQ, "/A/D/K", H5P_DEFAULT);
+ }
H5E_END_TRY;
if (gidK >= 0)
TEST_ERROR
@@ -3798,7 +3867,10 @@ test_cut_graph(hid_t fapl)
TEST_ERROR
/* Attempt to open an object in file #6, from file #5 */
- H5E_BEGIN_TRY { gidO = H5Gopen2(gidM, "/B/H/O", H5P_DEFAULT); }
+ H5E_BEGIN_TRY
+ {
+ gidO = H5Gopen2(gidM, "/B/H/O", H5P_DEFAULT);
+ }
H5E_END_TRY;
if (gidO >= 0)
TEST_ERROR
@@ -4009,7 +4081,10 @@ test_symlink(hid_t fapl)
TEST_ERROR
/* Attempt to open an object in file #3 (should fail) */
- H5E_BEGIN_TRY { gidL = H5Gopen2(fid1, "L", H5P_DEFAULT); }
+ H5E_BEGIN_TRY
+ {
+ gidL = H5Gopen2(fid1, "L", H5P_DEFAULT);
+ }
H5E_END_TRY;
if (gidL >= 0)
TEST_ERROR