diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2019-10-08 16:33:04 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2019-10-08 16:33:04 (GMT) |
commit | f89b8d3252f60e5f13730584ad9f38079c924c31 (patch) | |
tree | 8984b9d60842d8f6980158511c634b671eb320d7 /tools/libtest/h5tools_test_utils.c | |
parent | e4ea70a674aef20203b242ef808507b2896e3f84 (diff) | |
download | hdf5-f89b8d3252f60e5f13730584ad9f38079c924c31.zip hdf5-f89b8d3252f60e5f13730584ad9f38079c924c31.tar.gz hdf5-f89b8d3252f60e5f13730584ad9f38079c924c31.tar.bz2 |
HDFFV-10903 adjust for missing functions
Diffstat (limited to 'tools/libtest/h5tools_test_utils.c')
-rw-r--r-- | tools/libtest/h5tools_test_utils.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/libtest/h5tools_test_utils.c b/tools/libtest/h5tools_test_utils.c index 120f803..c2ec22c 100644 --- a/tools/libtest/h5tools_test_utils.c +++ b/tools/libtest/h5tools_test_utils.c @@ -1002,6 +1002,7 @@ test_set_configured_fapl(void) hid_t fapl_id = -1; 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 */ @@ -1010,6 +1011,9 @@ 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 */ @@ -1018,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", |