diff options
author | Larry Knox <lrknox@hdfgroup.org> | 2020-08-24 15:14:40 (GMT) |
---|---|---|
committer | Larry Knox <lrknox@hdfgroup.org> | 2020-08-24 15:14:40 (GMT) |
commit | 27c7d1aca86797436c2121f112c2d8928b2c8ff4 (patch) | |
tree | 78c023e6e00e17c9ff85285fb1fc7383ae1e0cd2 /tools/libtest | |
parent | 4f8359f4665f0b8070af66c9c92093596f22cbc8 (diff) | |
parent | 3240248a8a12ac04fd454c6016a2636fd31d132c (diff) | |
download | hdf5-27c7d1aca86797436c2121f112c2d8928b2c8ff4.zip hdf5-27c7d1aca86797436c2121f112c2d8928b2c8ff4.tar.gz hdf5-27c7d1aca86797436c2121f112c2d8928b2c8ff4.tar.bz2 |
Merge pull request #2832 in HDFFV/hdf5 from ~LRKNOX/hdf5_lrk:hdf5_1_10_7 to hdf5_1_10_7
* commit '3240248a8a12ac04fd454c6016a2636fd31d132c':
Merge pull request #2828 in HDFFV/hdf5 from ~BYRN/hdf5_adb:hdf5_1_10 to hdf5_1_10
Diffstat (limited to 'tools/libtest')
-rw-r--r-- | tools/libtest/h5tools_test_utils.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/libtest/h5tools_test_utils.c b/tools/libtest/h5tools_test_utils.c index 210fae6..8faa4c6 100644 --- a/tools/libtest/h5tools_test_utils.c +++ b/tools/libtest/h5tools_test_utils.c @@ -1003,6 +1003,7 @@ test_set_configured_fapl(void) hid_t fapl_id = H5I_INVALID_HID; other_fa_t wrong_fa = {0x432, 0xf82, 0x9093}; +#ifdef H5_HAVE_ROS3_VFD H5FD_ros3_fapl_t ros3_anon_fa = {1, FALSE, "", "", ""}; H5FD_ros3_fapl_t ros3_auth_fa = { 1, /* fapl version */ @@ -1011,6 +1012,8 @@ test_set_configured_fapl(void) "12345677890abcdef", /* simulate access key ID */ "oiwnerwe9u0234nJw0-aoj+dsf", /* simulate secret key */ }; +#endif /* H5_HAVE_ROS3_VFD */ +#ifdef H5_HAVE_LIBHDFS H5FD_hdfs_fapl_t hdfs_fa = { 1, /* fapl version */ "", /* namenode name */ @@ -1019,6 +1022,7 @@ test_set_configured_fapl(void) "", /* user name */ 2048, /* stream buffer size */ }; +#endif /* H5_HAVE_LIBHDFS */ unsigned n_cases = 7; /* number of common testcases */ testcase cases[] = { { "(common) should fail: no fapl id", |