summaryrefslogtreecommitdiffstats
path: root/test/API
diff options
context:
space:
mode:
authorjhendersonHDF <jhenderson@hdfgroup.org>2023-05-26 20:29:02 (GMT)
committerGitHub <noreply@github.com>2023-05-26 20:29:02 (GMT)
commit79bb60c3f6f67411e5d70b84743fc9f6b6143cbc (patch)
treedce0c97c567cb20eeb65de917e21347376979f18 /test/API
parent77e64e0df46bb7498be014b1005efd49c4ad7518 (diff)
downloadhdf5-79bb60c3f6f67411e5d70b84743fc9f6b6143cbc.zip
hdf5-79bb60c3f6f67411e5d70b84743fc9f6b6143cbc.tar.gz
hdf5-79bb60c3f6f67411e5d70b84743fc9f6b6143cbc.tar.bz2
API test updates (#3018)
* Remove macros from api tests (#2929) * Remove macros and undefined callbacks (#2959) * Remove remaining macros from H5_api_tests_disabled.h (#2968) * Put some vol capability checks in testpar tests and remove remaining warnings (#2995) * API tests datatype generation cleanup * Clean up API tests' random datatype generation and fix bug with enum datatype generation * Init parallel API tests with MPI_THREAD_MULTIPLE * HDF5 API tests - Check VOL connector registration * Determine whether a VOL connector failed to load before running API tests * Cleanup some usages of H5VL_CAP_FLAG_CREATION_ORDER in API tests * Remove some now-unused macros from H5_api_tests_disabled.h * Enable HDF5 API tests by default * Implement CMake option to install HDF5 API tests * Check for invalid AAPL from H5Acreate * Enable building of VOL connectors alongside HDF5 in CMake * Prepend CMake VOL URL option indices with 0s so they come in order * Don't turn on API tests by default yet * Document VOL connector FetchContent functionality * Add release note for API test updates * Only install testing library if API tests are installed * Fix grammar
Diffstat (limited to 'test/API')
-rw-r--r--test/API/CMakeLists.txt193
-rw-r--r--test/API/H5_api_async_test.c29
-rw-r--r--test/API/H5_api_attribute_test.c338
-rw-r--r--test/API/H5_api_dataset_test.c722
-rw-r--r--test/API/H5_api_dataset_test.h40
-rw-r--r--test/API/H5_api_datatype_test.c11
-rw-r--r--test/API/H5_api_file_test.c42
-rw-r--r--test/API/H5_api_group_test.c51
-rw-r--r--test/API/H5_api_link_test.c2269
-rw-r--r--test/API/H5_api_object_test.c132
-rw-r--r--test/API/H5_api_test.c104
-rw-r--r--test/API/H5_api_test.h1
-rw-r--r--test/API/H5_api_test_util.c876
-rw-r--r--test/API/H5_api_tests_disabled.h46
-rw-r--r--test/API/tattr.c656
-rw-r--r--test/API/testhdf5.c2
-rw-r--r--test/API/testhdf5.h4
-rw-r--r--test/API/tfile.c101
-rw-r--r--test/API/th5s.c236
-rw-r--r--test/API/titerate.c879
-rw-r--r--test/API/tmisc.c45
-rw-r--r--test/API/trefer.c131
-rw-r--r--test/API/tvlstr.c113
23 files changed, 3381 insertions, 3640 deletions
diff --git a/test/API/CMakeLists.txt b/test/API/CMakeLists.txt
index 606aa9c..e90a4c8 100644
--- a/test/API/CMakeLists.txt
+++ b/test/API/CMakeLists.txt
@@ -161,6 +161,21 @@ if (HDF5_ENABLE_FORMATTERS)
clang_format (HDF5_TEST_h5_api_test_FORMAT h5_api_test)
endif ()
+if (HDF5_TEST_API_INSTALL)
+ install (
+ TARGETS
+ h5_api_test
+ EXPORT
+ ${HDF5_EXPORTED_TARGETS}
+ DESTINATION
+ ${HDF5_INSTALL_BIN_DIR}
+ PERMISSIONS
+ OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE
+ COMPONENT
+ tests
+ )
+endif ()
+
#-----------------------------------------------------------------------------
# Build the ported HDF5 test executables
#-----------------------------------------------------------------------------
@@ -232,12 +247,32 @@ foreach (api_test_extra ${HDF5_API_TESTS_EXTRA})
if (HDF5_ENABLE_FORMATTERS)
clang_format (HDF5_TEST_h5_api_test_${api_test_extra}_FORMAT h5_api_test_${api_test_extra})
endif ()
+
+ if (HDF5_TEST_API_INSTALL)
+ install (
+ TARGETS
+ h5_api_test_${api_test_extra}
+ EXPORT
+ ${HDF5_EXPORTED_TARGETS}
+ DESTINATION
+ ${HDF5_INSTALL_BIN_DIR}
+ PERMISSIONS
+ OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE
+ COMPONENT
+ tests
+ )
+ endif ()
endforeach ()
#-----------------------------------------------------------------------------
# Add tests if HDF5 serial testing is enabled
#-----------------------------------------------------------------------------
if (HDF5_TEST_SERIAL)
+ # Setup working directories for any external VOL connectors to be tested
+ foreach (external_vol_tgt ${HDF5_EXTERNAL_VOL_TARGETS})
+ file (MAKE_DIRECTORY "${HDF5_TEST_BINARY_DIR}/${external_vol_tgt}")
+ endforeach ()
+
if (HDF5_TEST_API_ENABLE_DRIVER)
if ("${HDF5_TEST_API_SERVER}" STREQUAL "")
message (FATAL_ERROR "Please set HDF5_TEST_API_SERVER to point to a server executable for the test driver program.")
@@ -258,7 +293,7 @@ if (HDF5_TEST_SERIAL)
)
endif ()
- set(last_api_test "")
+ set (last_api_test "")
foreach (api_test ${HDF5_API_TESTS})
add_test (
NAME "h5_api_test_${api_test}"
@@ -269,9 +304,9 @@ if (HDF5_TEST_SERIAL)
${HDF5_TEST_API_DRIVER_EXTRA_FLAGS}
)
- set_tests_properties("h5_api_test_${api_test}" PROPERTIES DEPENDS "${last_api_test}")
+ set_tests_properties ("h5_api_test_${api_test}" PROPERTIES DEPENDS "${last_api_test}")
- set(last_api_test "h5_api_test_${api_test}")
+ set (last_api_test "h5_api_test_${api_test}")
endforeach ()
foreach (hdf5_test ${HDF5_API_TESTS_EXTRA})
@@ -296,17 +331,104 @@ if (HDF5_TEST_SERIAL)
${HDF5_TEST_API_DRIVER_EXTRA_FLAGS}
)
endforeach ()
+
+ # Add tests for each external VOL connector that was built
+ foreach (external_vol_tgt ${HDF5_EXTERNAL_VOL_TARGETS})
+ # Determine environment variables that need to be set for testing
+ set (vol_test_env "")
+ set (vol_plugin_paths "${CMAKE_BINARY_DIR}/${HDF5_INSTALL_BIN_DIR}")
+
+ get_target_property (vol_test_string "${external_vol_tgt}" HDF5_VOL_NAME)
+ list (APPEND vol_test_env "HDF5_VOL_CONNECTOR=${vol_test_string}")
+
+ get_target_property (vol_lib_targets "${external_vol_tgt}" HDF5_VOL_TARGETS)
+ foreach (lib_target ${vol_lib_targets})
+ get_target_property (lib_target_output_dir "${lib_target}" LIBRARY_OUTPUT_DIRECTORY)
+ if (NOT "${lib_target_output_dir}" STREQUAL "lib_target_output_dir-NOTFOUND"
+ AND NOT "${lib_target_output_dir}" STREQUAL ""
+ AND NOT "${lib_target_output_dir}" STREQUAL "${CMAKE_BINARY_DIR}/${HDF5_INSTALL_BIN_DIR}")
+ set (vol_plugin_paths "${vol_plugin_paths}${CMAKE_SEP}${lib_target_output_dir}")
+ endif ()
+ endforeach ()
+
+ list (APPEND vol_test_env "HDF5_PLUGIN_PATH=${vol_plugin_paths}")
+
+ # Add main API tests
+ set (last_api_test "")
+ foreach (api_test ${HDF5_API_TESTS})
+ add_test (
+ NAME "${external_vol_tgt}-h5_api_test_${api_test}"
+ COMMAND $<TARGET_FILE:h5_api_test_driver>
+ --server ${HDF5_TEST_API_SERVER}
+ --client $<TARGET_FILE:h5_api_test> "${api_test}"
+ --serial
+ ${HDF5_TEST_API_DRIVER_EXTRA_FLAGS}
+ )
+ set_tests_properties (
+ "${external_vol_tgt}-h5_api_test_${api_test}"
+ PROPERTIES
+ ENVIRONMENT
+ "${vol_test_env}"
+ WORKING_DIRECTORY
+ "${HDF5_TEST_BINARY_DIR}/${external_vol_tgt}"
+ DEPENDS
+ "${last_api_test}"
+ )
+
+ set (last_api_test "${external_vol_tgt}-h5_api_test_${api_test}")
+ endforeach ()
+
+ # Add any extra HDF5 tests
+ foreach (hdf5_test ${HDF5_API_TESTS_EXTRA})
+ add_test (
+ NAME "${external_vol_tgt}-h5_api_test_${hdf5_test}"
+ COMMAND $<TARGET_FILE:h5_api_test_driver>
+ --server ${HDF5_TEST_API_SERVER}
+ --client $<TARGET_FILE:h5_api_test_${hdf5_test}>
+ --serial
+ ${HDF5_TEST_API_DRIVER_EXTRA_FLAGS}
+ )
+ set_tests_properties (
+ "${external_vol_tgt}-h5_api_test_${hdf5_test}"
+ PROPERTIES
+ ENVIRONMENT
+ "${vol_test_env}"
+ WORKING_DIRECTORY
+ "${HDF5_TEST_BINARY_DIR}/${external_vol_tgt}"
+ )
+ endforeach ()
+
+ # Hook external tests to same test suite
+ foreach (ext_api_test ${HDF5_API_EXT_SERIAL_TESTS})
+ add_test (
+ NAME "${external_vol_tgt}-h5_api_ext_test_${ext_api_test}"
+ COMMAND $<TARGET_FILE:h5_api_test_driver>
+ --server ${HDF5_TEST_API_SERVER}
+ --client $<TARGET_FILE:${ext_api_test}>
+ --serial
+ ${HDF5_TEST_API_DRIVER_EXTRA_FLAGS}
+ )
+ set_tests_properties (
+ "${external_vol_tgt}-h5_api_ext_test_${ext_api_test}"
+ PROPERTIES
+ ENVIRONMENT
+ "${vol_test_env}"
+ WORKING_DIRECTORY
+ "${HDF5_TEST_BINARY_DIR}/${external_vol_tgt}"
+ )
+ endforeach ()
+ endforeach ()
else ()
- set(last_api_test "")
+ set (last_api_test "")
foreach (api_test ${HDF5_API_TESTS})
add_test (
NAME "h5_api_test_${api_test}"
COMMAND $<TARGET_FILE:h5_api_test> "${api_test}"
)
- set_tests_properties("h5_api_test_${api_test}" PROPERTIES DEPENDS "${last_api_test}")
+ set_tests_properties ("h5_api_test_${api_test}" PROPERTIES DEPENDS "${last_api_test}")
- set(last_api_test "h5_api_test_${api_test}")
+ set (last_api_test "h5_api_test_${api_test}")
endforeach ()
foreach (hdf5_test ${HDF5_API_TESTS_EXTRA})
@@ -315,5 +437,64 @@ if (HDF5_TEST_SERIAL)
COMMAND $<TARGET_FILE:h5_api_test_${hdf5_test}>
)
endforeach ()
+
+ # Add tests for each external VOL connector that was built
+ foreach (external_vol_tgt ${HDF5_EXTERNAL_VOL_TARGETS})
+ # Determine environment variables that need to be set for testing
+ set (vol_test_env "")
+ set (vol_plugin_paths "${CMAKE_BINARY_DIR}/${HDF5_INSTALL_BIN_DIR}")
+
+ get_target_property (vol_test_string "${external_vol_tgt}" HDF5_VOL_NAME)
+ list (APPEND vol_test_env "HDF5_VOL_CONNECTOR=${vol_test_string}")
+
+ get_target_property (vol_lib_targets "${external_vol_tgt}" HDF5_VOL_TARGETS)
+ foreach (lib_target ${vol_lib_targets})
+ get_target_property (lib_target_output_dir "${lib_target}" LIBRARY_OUTPUT_DIRECTORY)
+ if (NOT "${lib_target_output_dir}" STREQUAL "lib_target_output_dir-NOTFOUND"
+ AND NOT "${lib_target_output_dir}" STREQUAL ""
+ AND NOT "${lib_target_output_dir}" STREQUAL "${CMAKE_BINARY_DIR}/${HDF5_INSTALL_BIN_DIR}")
+ set (vol_plugin_paths "${vol_plugin_paths}${CMAKE_SEP}${lib_target_output_dir}")
+ endif ()
+ endforeach ()
+
+ list (APPEND vol_test_env "HDF5_PLUGIN_PATH=${vol_plugin_paths}")
+
+ # Add main API tests
+ set (last_api_test "")
+ foreach (api_test ${HDF5_API_TESTS})
+ add_test (
+ NAME "${external_vol_tgt}-h5_api_test_${api_test}"
+ COMMAND $<TARGET_FILE:h5_api_test> "${api_test}"
+ )
+ set_tests_properties (
+ "${external_vol_tgt}-h5_api_test_${api_test}"
+ PROPERTIES
+ ENVIRONMENT
+ "${vol_test_env}"
+ WORKING_DIRECTORY
+ "${HDF5_TEST_BINARY_DIR}/${external_vol_tgt}"
+ DEPENDS
+ "${last_api_test}"
+ )
+
+ set (last_api_test "${external_vol_tgt}-h5_api_test_${api_test}")
+ endforeach ()
+
+ # Add any extra HDF5 tests
+ foreach (hdf5_test ${HDF5_API_TESTS_EXTRA})
+ add_test (
+ NAME "${external_vol_tgt}-h5_api_test_${hdf5_test}"
+ COMMAND $<TARGET_FILE:h5_api_test_${hdf5_test}>
+ )
+ set_tests_properties (
+ "${external_vol_tgt}-h5_api_test_${hdf5_test}"
+ PROPERTIES
+ ENVIRONMENT
+ "${vol_test_env}"
+ WORKING_DIRECTORY
+ "${HDF5_TEST_BINARY_DIR}/${external_vol_tgt}"
+ )
+ endforeach ()
+ endforeach ()
endif ()
endif ()
diff --git a/test/API/H5_api_async_test.c b/test/API/H5_api_async_test.c
index b5208ba..3d676c0 100644
--- a/test/API/H5_api_async_test.c
+++ b/test/API/H5_api_async_test.c
@@ -2141,10 +2141,9 @@ test_group(void)
/* Make sure the connector supports the API functions being tested */
if (!(vol_cap_flags_g & H5VL_CAP_FLAG_FILE_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_GROUP_BASIC) ||
- !(vol_cap_flags_g & H5VL_CAP_FLAG_GROUP_MORE) || !(vol_cap_flags_g & H5VL_CAP_FLAG_FLUSH_REFRESH) ||
- !(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ !(vol_cap_flags_g & H5VL_CAP_FLAG_GROUP_MORE) || !(vol_cap_flags_g & H5VL_CAP_FLAG_FLUSH_REFRESH)) {
SKIPPED();
- HDprintf(" API functions for basic file, group, group more, or creation order aren't supported "
+ HDprintf(" API functions for basic file, group, or group more aren't supported "
"with this connector\n");
return 0;
}
@@ -2153,9 +2152,11 @@ test_group(void)
if ((gcpl_id = H5Pcreate(H5P_GROUP_CREATE)) < 0)
TEST_ERROR;
- /* Track creation order */
- if (H5Pset_link_creation_order(gcpl_id, H5P_CRT_ORDER_TRACKED | H5P_CRT_ORDER_INDEXED) < 0)
- TEST_ERROR;
+ if (vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER) {
+ /* Track creation order */
+ if (H5Pset_link_creation_order(gcpl_id, H5P_CRT_ORDER_TRACKED | H5P_CRT_ORDER_INDEXED) < 0)
+ TEST_ERROR;
+ }
/* Create event stack */
if ((es_id = H5EScreate()) < 0)
@@ -2219,10 +2220,12 @@ test_group(void)
if (H5Gget_info_async(group_id, &info1, es_id) < 0)
TEST_ERROR;
- /* Test H5Gget_info_by_idx_async */
- if (H5Gget_info_by_idx_async(parent_group_id, ".", H5_INDEX_CRT_ORDER, H5_ITER_INC, 1, &info2,
- H5P_DEFAULT, es_id) < 0)
- TEST_ERROR;
+ if (vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER) {
+ /* Test H5Gget_info_by_idx_async */
+ if (H5Gget_info_by_idx_async(parent_group_id, ".", H5_INDEX_CRT_ORDER, H5_ITER_INC, 1, &info2,
+ H5P_DEFAULT, es_id) < 0)
+ TEST_ERROR;
+ }
/* Test H5Gget_info_by_name_async */
if (H5Gget_info_by_name_async(parent_group_id, "group3", &info3, H5P_DEFAULT, es_id) < 0)
@@ -2237,8 +2240,10 @@ test_group(void)
/* Verify group infos */
if (info1.nlinks != 0)
FAIL_PUTS_ERROR(" incorrect number of links");
- if (info2.nlinks != 1)
- FAIL_PUTS_ERROR(" incorrect number of links");
+ if (vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER) {
+ if (info2.nlinks != 1)
+ FAIL_PUTS_ERROR(" incorrect number of links");
+ }
if (info3.nlinks != 2)
FAIL_PUTS_ERROR(" incorrect number of links");
diff --git a/test/API/H5_api_attribute_test.c b/test/API/H5_api_attribute_test.c
index 7f767a7..f1409a4 100644
--- a/test/API/H5_api_attribute_test.c
+++ b/test/API/H5_api_attribute_test.c
@@ -1114,7 +1114,7 @@ test_create_attribute_invalid_params(void)
PART_BEGIN(H5Acreate_invalid_aapl)
{
TESTING_2("H5Acreate with an invalid AAPL");
-#ifndef NO_INVALID_PROPERTY_LIST_TESTS
+
H5E_BEGIN_TRY
{
attr_id = H5Acreate2(group_id, ATTRIBUTE_CREATE_INVALID_PARAMS_ATTR_NAME, attr_dtype,
@@ -1130,10 +1130,6 @@ test_create_attribute_invalid_params(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Acreate_invalid_aapl);
-#endif
}
PART_END(H5Acreate_invalid_aapl);
@@ -1306,7 +1302,7 @@ test_create_attribute_invalid_params(void)
PART_BEGIN(H5Acreate_by_name_invalid_aapl)
{
TESTING_2("H5Acreate_by_name with invalid AAPL");
-#ifndef NO_INVALID_PROPERTY_LIST_TESTS
+
H5E_BEGIN_TRY
{
attr_id = H5Acreate_by_name(container_group, ATTRIBUTE_CREATE_INVALID_PARAMS_GROUP_NAME,
@@ -1323,10 +1319,6 @@ test_create_attribute_invalid_params(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Acreate_by_name_invalid_aapl);
-#endif
}
PART_END(H5Acreate_by_name_invalid_aapl);
@@ -1406,8 +1398,8 @@ test_open_attribute(void)
if (!(vol_cap_flags_g & H5VL_CAP_FLAG_FILE_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_GROUP_BASIC) ||
!(vol_cap_flags_g & H5VL_CAP_FLAG_ATTR_BASIC)) {
SKIPPED();
- HDprintf(
- " API functions for basic file, group, or attribute aren't supported with this connector\n");
+ HDprintf(" API functions for basic file, group, or attribute aren't supported "
+ "with this connector\n");
return 0;
}
@@ -1431,10 +1423,12 @@ test_open_attribute(void)
goto error;
}
- if (H5Pset_attr_creation_order(gcpl_id, H5P_CRT_ORDER_TRACKED) < 0) {
- H5_FAILED();
- HDprintf(" couldn't set attribute creation order tracking\n");
- goto error;
+ if (vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER) {
+ if (H5Pset_attr_creation_order(gcpl_id, H5P_CRT_ORDER_TRACKED) < 0) {
+ H5_FAILED();
+ HDprintf(" couldn't set attribute creation order tracking\n");
+ goto error;
+ }
}
if ((group_id = H5Gcreate2(container_group, ATTRIBUTE_OPEN_TEST_GROUP_NAME, H5P_DEFAULT, gcpl_id,
@@ -1531,6 +1525,12 @@ test_open_attribute(void)
{
TESTING_2("H5Aopen_by_idx by creation order in increasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking is not supported with this VOL connector\n");
+ PART_EMPTY(H5Aopen_by_idx_crt_order_increasing);
+ }
+
if ((attr_id = H5Aopen_by_idx(container_group, ATTRIBUTE_OPEN_TEST_GROUP_NAME, H5_INDEX_CRT_ORDER,
H5_ITER_INC, 0, H5P_DEFAULT, H5P_DEFAULT)) < 0) {
H5_FAILED();
@@ -1584,6 +1584,12 @@ test_open_attribute(void)
{
TESTING_2("H5Aopen_by_idx by creation order in decreasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking is not supported with this VOL connector\n");
+ PART_EMPTY(H5Aopen_by_idx_crt_order_decreasing);
+ }
+
if ((attr_id = H5Aopen_by_idx(container_group, ATTRIBUTE_OPEN_TEST_GROUP_NAME, H5_INDEX_CRT_ORDER,
H5_ITER_DEC, 2, H5P_DEFAULT, H5P_DEFAULT)) < 0) {
H5_FAILED();
@@ -1689,11 +1695,11 @@ test_open_attribute(void)
PART_BEGIN(H5Aopen_by_idx_name_order_decreasing)
{
TESTING_2("H5Aopen_by_idx by alphabetical order in decreasing order");
-#ifndef NO_DECREASING_ALPHA_ITER_ORDER
+
if ((attr_id = H5Aopen_by_idx(container_group, ATTRIBUTE_OPEN_TEST_GROUP_NAME, H5_INDEX_NAME,
H5_ITER_DEC, 2, H5P_DEFAULT, H5P_DEFAULT)) < 0) {
H5_FAILED();
- HDprintf(" couldn't open attribute '%s' at index %lld using H5Aopen_by_idx by "
+ HDprintf(" couldn't open attribute '%s' at index %d using H5Aopen_by_idx by "
"alphabetical order in decreasing order\n",
ATTRIBUTE_OPEN_TEST_ATTR_NAME, 2);
PART_ERROR(H5Aopen_by_idx_name_order_decreasing);
@@ -1708,7 +1714,7 @@ test_open_attribute(void)
if ((attr_id = H5Aopen_by_idx(container_group, ATTRIBUTE_OPEN_TEST_GROUP_NAME, H5_INDEX_NAME,
H5_ITER_DEC, 1, H5P_DEFAULT, H5P_DEFAULT)) < 0) {
H5_FAILED();
- HDprintf(" couldn't open attribute '%s' at index %lld using H5Aopen_by_idx by "
+ HDprintf(" couldn't open attribute '%s' at index %d using H5Aopen_by_idx by "
"alphabetical order in decreasing order\n",
ATTRIBUTE_OPEN_TEST_ATTR_NAME2, 1);
PART_ERROR(H5Aopen_by_idx_name_order_decreasing);
@@ -1723,7 +1729,7 @@ test_open_attribute(void)
if ((attr_id = H5Aopen_by_idx(container_group, ATTRIBUTE_OPEN_TEST_GROUP_NAME, H5_INDEX_NAME,
H5_ITER_DEC, 0, H5P_DEFAULT, H5P_DEFAULT)) < 0) {
H5_FAILED();
- HDprintf(" couldn't open attribute '%s' at index %lld using H5Aopen_by_idx by "
+ HDprintf(" couldn't open attribute '%s' at index %d using H5Aopen_by_idx by "
"alphabetical order in decreasing order\n",
ATTRIBUTE_OPEN_TEST_ATTR_NAME3, 0);
PART_ERROR(H5Aopen_by_idx_name_order_decreasing);
@@ -1736,10 +1742,6 @@ test_open_attribute(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Aopen_by_idx_name_order_decreasing);
-#endif
}
PART_END(H5Aopen_by_idx_name_order_decreasing);
}
@@ -3193,8 +3195,8 @@ test_get_attribute_space_and_type(void)
if (!(vol_cap_flags_g & H5VL_CAP_FLAG_FILE_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_GROUP_BASIC) ||
!(vol_cap_flags_g & H5VL_CAP_FLAG_ATTR_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_ATTR_MORE)) {
SKIPPED();
- HDprintf(
- " API functions for basic file, group, or attribute aren't supported with this connector\n");
+ HDprintf(" API functions for basic file, group, attribute, or attribute aren't supported with "
+ "this connector\n");
return 0;
}
@@ -3941,10 +3943,9 @@ test_get_attribute_name(void)
/* Make sure the connector supports the API functions being tested */
if (!(vol_cap_flags_g & H5VL_CAP_FLAG_FILE_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_GROUP_BASIC) ||
- !(vol_cap_flags_g & H5VL_CAP_FLAG_ATTR_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_ATTR_MORE) ||
- !(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ !(vol_cap_flags_g & H5VL_CAP_FLAG_ATTR_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_ATTR_MORE)) {
SKIPPED();
- HDprintf(" API functions for basic file, group, attribute, or creation order aren't supported "
+ HDprintf(" API functions for basic file, group, or attribute aren't supported "
"with this connector\n");
return 0;
}
@@ -3969,10 +3970,12 @@ test_get_attribute_name(void)
goto error;
}
- if (H5Pset_attr_creation_order(gcpl_id, H5P_CRT_ORDER_TRACKED) < 0) {
- H5_FAILED();
- HDprintf(" couldn't set attribute creation order tracking\n");
- goto error;
+ if (vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER) {
+ if (H5Pset_attr_creation_order(gcpl_id, H5P_CRT_ORDER_TRACKED) < 0) {
+ H5_FAILED();
+ HDprintf(" couldn't set attribute creation order tracking\n");
+ goto error;
+ }
}
if ((group_id = H5Gcreate2(container_group, ATTRIBUTE_GET_NAME_TEST_GROUP_NAME, H5P_DEFAULT, gcpl_id,
@@ -4116,6 +4119,12 @@ test_get_attribute_name(void)
{
TESTING_2("H5Aget_name_by_idx by creation order in increasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Aget_name_by_idx_crt_order_increasing);
+ }
+
*name_buf = '\0';
if (H5Aget_name_by_idx(container_group, ATTRIBUTE_GET_NAME_TEST_GROUP_NAME, H5_INDEX_CRT_ORDER,
H5_ITER_INC, 0, name_buf, (size_t)name_buf_size, H5P_DEFAULT) < 0) {
@@ -4178,6 +4187,12 @@ test_get_attribute_name(void)
{
TESTING_2("H5Aget_name_by_idx by creation order in decreasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Aget_name_by_idx_crt_order_decreasing);
+ }
+
*name_buf = '\0';
if (H5Aget_name_by_idx(container_group, ATTRIBUTE_GET_NAME_TEST_GROUP_NAME, H5_INDEX_CRT_ORDER,
H5_ITER_DEC, 2, name_buf, (size_t)name_buf_size, H5P_DEFAULT) < 0) {
@@ -4301,12 +4316,12 @@ test_get_attribute_name(void)
PART_BEGIN(H5Aget_name_by_idx_name_order_decreasing)
{
TESTING_2("H5Aget_name_by_idx by alphabetical order in decreasing order");
-#ifndef NO_DECREASING_ALPHA_ITER_ORDER
+
*name_buf = '\0';
if (H5Aget_name_by_idx(container_group, ATTRIBUTE_GET_NAME_TEST_GROUP_NAME, H5_INDEX_NAME,
H5_ITER_DEC, 2, name_buf, (size_t)name_buf_size, H5P_DEFAULT) < 0) {
H5_FAILED();
- HDprintf(" couldn't retrieve name of attribute at index %lld using H5Aget_name_by_index "
+ HDprintf(" couldn't retrieve name of attribute at index %d using H5Aget_name_by_index "
"by alphabetical order in decreasing order\n",
2);
PART_ERROR(H5Aget_name_by_idx_name_order_decreasing);
@@ -4324,7 +4339,7 @@ test_get_attribute_name(void)
if (H5Aget_name_by_idx(container_group, ATTRIBUTE_GET_NAME_TEST_GROUP_NAME, H5_INDEX_NAME,
H5_ITER_DEC, 1, name_buf, (size_t)name_buf_size, H5P_DEFAULT) < 0) {
H5_FAILED();
- HDprintf(" couldn't retrieve name of attribute at index %lld using H5Aget_name_by_index "
+ HDprintf(" couldn't retrieve name of attribute at index %d using H5Aget_name_by_index "
"by alphabetical order in decreasing order\n",
1);
PART_ERROR(H5Aget_name_by_idx_name_order_decreasing);
@@ -4342,7 +4357,7 @@ test_get_attribute_name(void)
if (H5Aget_name_by_idx(container_group, ATTRIBUTE_GET_NAME_TEST_GROUP_NAME, H5_INDEX_NAME,
H5_ITER_DEC, 0, name_buf, (size_t)name_buf_size, H5P_DEFAULT) < 0) {
H5_FAILED();
- HDprintf(" couldn't retrieve name of attribute at index %lld using H5Aget_name_by_index "
+ HDprintf(" couldn't retrieve name of attribute at index %d using H5Aget_name_by_index "
"by alphabetical order in decreasing order\n",
0);
PART_ERROR(H5Aget_name_by_idx_name_order_decreasing);
@@ -4357,10 +4372,6 @@ test_get_attribute_name(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Aget_name_by_idx_name_order_decreasing);
-#endif
}
PART_END(H5Aget_name_by_idx_name_order_decreasing);
}
@@ -4799,10 +4810,9 @@ test_get_attribute_info(void)
/* Make sure the connector supports the API functions being tested */
if (!(vol_cap_flags_g & H5VL_CAP_FLAG_FILE_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_GROUP_BASIC) ||
- !(vol_cap_flags_g & H5VL_CAP_FLAG_ATTR_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_ATTR_MORE) ||
- !(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ !(vol_cap_flags_g & H5VL_CAP_FLAG_ATTR_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_ATTR_MORE)) {
SKIPPED();
- HDprintf(" API functions for basic file, group, attribute, or creation order aren't supported "
+ HDprintf(" API functions for basic file, group, or attribute aren't supported "
"with this connector\n");
return 0;
}
@@ -4827,10 +4837,12 @@ test_get_attribute_info(void)
goto error;
}
- if (H5Pset_attr_creation_order(gcpl_id, H5P_CRT_ORDER_TRACKED) < 0) {
- H5_FAILED();
- HDprintf(" couldn't set attribute creation order tracking\n");
- goto error;
+ if (vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER) {
+ if (H5Pset_attr_creation_order(gcpl_id, H5P_CRT_ORDER_TRACKED) < 0) {
+ H5_FAILED();
+ HDprintf(" couldn't set attribute creation order tracking\n");
+ goto error;
+ }
}
if ((group_id = H5Gcreate2(container_group, ATTRIBUTE_GET_INFO_TEST_GROUP_NAME, H5P_DEFAULT, gcpl_id,
@@ -5050,6 +5062,12 @@ test_get_attribute_info(void)
{
TESTING_2("H5Aget_info_by_idx by creation order in increasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Aget_info_by_idx_crt_order_increasing);
+ }
+
HDmemset(&attr_info, 0, sizeof(attr_info));
if (H5Aget_info_by_idx(group_id, ".", H5_INDEX_CRT_ORDER, H5_ITER_INC, 0, &attr_info,
H5P_DEFAULT) < 0) {
@@ -5133,6 +5151,12 @@ test_get_attribute_info(void)
{
TESTING_2("H5Aget_info_by_idx by creation order in decreasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Aget_info_by_idx_crt_order_decreasing);
+ }
+
HDmemset(&attr_info, 0, sizeof(attr_info));
if (H5Aget_info_by_idx(group_id, ".", H5_INDEX_CRT_ORDER, H5_ITER_DEC, 2, &attr_info,
H5P_DEFAULT) < 0) {
@@ -5298,12 +5322,12 @@ test_get_attribute_info(void)
PART_BEGIN(H5Aget_info_by_idx_name_order_decreasing)
{
TESTING_2("H5Aget_info_by_idx by alphabetical order in decreasing order");
-#ifndef NO_DECREASING_ALPHA_ITER_ORDER
+
HDmemset(&attr_info, 0, sizeof(attr_info));
if (H5Aget_info_by_idx(group_id, ".", H5_INDEX_NAME, H5_ITER_DEC, 2, &attr_info, H5P_DEFAULT) <
0) {
H5_FAILED();
- HDprintf(" couldn't get info for attribute at index %lld using H5Aget_info_by_idx by "
+ HDprintf(" couldn't get info for attribute at index %d using H5Aget_info_by_idx by "
"alphabetical order in decreasing order\n",
2);
PART_ERROR(H5Aget_info_by_idx_name_order_decreasing);
@@ -5328,7 +5352,7 @@ test_get_attribute_info(void)
if (H5Aget_info_by_idx(group_id, ".", H5_INDEX_NAME, H5_ITER_DEC, 1, &attr_info, H5P_DEFAULT) <
0) {
H5_FAILED();
- HDprintf(" couldn't get info for attribute at index %lld using H5Aget_info_by_idx by "
+ HDprintf(" couldn't get info for attribute at index %d using H5Aget_info_by_idx by "
"alphabetical order in decreasing order\n",
1);
PART_ERROR(H5Aget_info_by_idx_name_order_decreasing);
@@ -5353,7 +5377,7 @@ test_get_attribute_info(void)
if (H5Aget_info_by_idx(group_id, ".", H5_INDEX_NAME, H5_ITER_DEC, 0, &attr_info, H5P_DEFAULT) <
0) {
H5_FAILED();
- HDprintf(" couldn't get info for attribute at index %lld using H5Aget_info_by_idx by "
+ HDprintf(" couldn't get info for attribute at index %d using H5Aget_info_by_idx by "
"alphabetical order in decreasing order\n",
0);
PART_ERROR(H5Aget_info_by_idx_name_order_decreasing);
@@ -5375,10 +5399,6 @@ test_get_attribute_info(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Aget_info_by_idx_name_order_decreasing);
-#endif
}
PART_END(H5Aget_info_by_idx_name_order_decreasing);
}
@@ -6493,10 +6513,9 @@ test_attribute_iterate_group(void)
/* Make sure the connector supports the API functions being tested */
if (!(vol_cap_flags_g & H5VL_CAP_FLAG_FILE_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_GROUP_BASIC) ||
- !(vol_cap_flags_g & H5VL_CAP_FLAG_ATTR_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_ITERATE) ||
- !(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ !(vol_cap_flags_g & H5VL_CAP_FLAG_ATTR_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_ITERATE)) {
SKIPPED();
- HDprintf(" API functions for basic file, group, attribute, iterate, or creation order aren't "
+ HDprintf(" API functions for basic file, group, attribute, or iterate aren't "
"supported with this connector\n");
return 0;
}
@@ -6521,10 +6540,12 @@ test_attribute_iterate_group(void)
goto error;
}
- if (H5Pset_attr_creation_order(gcpl_id, H5P_CRT_ORDER_TRACKED) < 0) {
- H5_FAILED();
- HDprintf(" couldn't set attribute creation order tracking\n");
- goto error;
+ if (vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER) {
+ if (H5Pset_attr_creation_order(gcpl_id, H5P_CRT_ORDER_TRACKED) < 0) {
+ H5_FAILED();
+ HDprintf(" couldn't set attribute creation order tracking\n");
+ goto error;
+ }
}
if ((group_id = H5Gcreate2(container_group, ATTRIBUTE_ITERATE_TEST_GRP_SUBGROUP_NAME, H5P_DEFAULT,
@@ -6615,7 +6636,6 @@ test_attribute_iterate_group(void)
PART_BEGIN(H5Aiterate2_name_decreasing)
{
TESTING_2("H5Aiterate by attribute name in decreasing order");
-#ifndef NO_DECREASING_ALPHA_ITER_ORDER
/* Reset the counter to the appropriate value for the next test */
link_counter = ATTRIBUTE_ITERATE_TEST_NUM_ATTRS;
@@ -6635,10 +6655,6 @@ test_attribute_iterate_group(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Aiterate2_name_decreasing);
-#endif
}
PART_END(H5Aiterate2_name_decreasing);
@@ -6646,6 +6662,12 @@ test_attribute_iterate_group(void)
{
TESTING_2("H5Aiterate by creation order in increasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Aiterate2_creation_increasing);
+ }
+
/* Reset the counter to the appropriate value for the next test */
link_counter = 2 * ATTRIBUTE_ITERATE_TEST_NUM_ATTRS;
@@ -6672,6 +6694,12 @@ test_attribute_iterate_group(void)
{
TESTING_2("H5Aiterate by creation order in decreasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Aiterate2_creation_decreasing);
+ }
+
/* Reset the counter to the appropriate value for the next test */
link_counter = 3 * ATTRIBUTE_ITERATE_TEST_NUM_ATTRS;
@@ -6724,7 +6752,7 @@ test_attribute_iterate_group(void)
PART_BEGIN(H5Aiterate_by_name_name_decreasing)
{
TESTING_2("H5Aiterate_by_name by attribute name in decreasing order");
-#ifndef NO_DECREASING_ALPHA_ITER_ORDER
+
/* Reset the counter to the appropriate value for the next test */
link_counter = ATTRIBUTE_ITERATE_TEST_NUM_ATTRS;
@@ -6745,10 +6773,6 @@ test_attribute_iterate_group(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Aiterate_by_name_name_decreasing);
-#endif
}
PART_END(H5Aiterate_by_name_name_decreasing);
@@ -6756,6 +6780,12 @@ test_attribute_iterate_group(void)
{
TESTING_2("H5Aiterate_by_name by creation order in increasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Aiterate_by_name_creation_increasing);
+ }
+
/* Reset the counter to the appropriate value for the next test */
link_counter = 2 * ATTRIBUTE_ITERATE_TEST_NUM_ATTRS;
@@ -6784,6 +6814,12 @@ test_attribute_iterate_group(void)
{
TESTING_2("H5Aiterate_by_name by creation order in decreasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Aiterate_by_name_creation_decreasing);
+ }
+
/* Reset the counter to the appropriate value for the next test */
link_counter = 3 * ATTRIBUTE_ITERATE_TEST_NUM_ATTRS;
@@ -6873,10 +6909,9 @@ test_attribute_iterate_dataset(void)
/* Make sure the connector supports the API functions being tested */
if (!(vol_cap_flags_g & H5VL_CAP_FLAG_FILE_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_GROUP_BASIC) ||
!(vol_cap_flags_g & H5VL_CAP_FLAG_ATTR_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_ITERATE) ||
- !(vol_cap_flags_g & H5VL_CAP_FLAG_DATASET_BASIC) ||
- !(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ !(vol_cap_flags_g & H5VL_CAP_FLAG_DATASET_BASIC)) {
SKIPPED();
- HDprintf(" API functions for basic file, group, dataset, attribute, iterate, or creation order "
+ HDprintf(" API functions for basic file, group, dataset, attribute, or iterate "
"aren't supported with this connector\n");
return 0;
}
@@ -6908,10 +6943,12 @@ test_attribute_iterate_dataset(void)
goto error;
}
- if (H5Pset_attr_creation_order(dcpl_id, H5P_CRT_ORDER_TRACKED) < 0) {
- H5_FAILED();
- HDprintf(" couldn't set attribute creation order tracking\n");
- goto error;
+ if (vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER) {
+ if (H5Pset_attr_creation_order(dcpl_id, H5P_CRT_ORDER_TRACKED) < 0) {
+ H5_FAILED();
+ HDprintf(" couldn't set attribute creation order tracking\n");
+ goto error;
+ }
}
if ((dset_dtype = generate_random_datatype(H5T_NO_CLASS, FALSE)) < 0)
@@ -7008,7 +7045,6 @@ test_attribute_iterate_dataset(void)
PART_BEGIN(H5Aiterate2_name_decreasing)
{
TESTING_2("H5Aiterate by attribute name in decreasing order");
-#ifndef NO_DECREASING_ALPHA_ITER_ORDER
/* Reset the counter to the appropriate value for the next test */
link_counter = ATTRIBUTE_ITERATE_TEST_NUM_ATTRS;
@@ -7028,10 +7064,6 @@ test_attribute_iterate_dataset(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Aiterate2_name_decreasing);
-#endif
}
PART_END(H5Aiterate2_name_decreasing);
@@ -7039,6 +7071,12 @@ test_attribute_iterate_dataset(void)
{
TESTING_2("H5Aiterate by creation order in increasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Aiterate2_creation_increasing);
+ }
+
/* Reset the counter to the appropriate value for the next test */
link_counter = 2 * ATTRIBUTE_ITERATE_TEST_NUM_ATTRS;
@@ -7065,6 +7103,12 @@ test_attribute_iterate_dataset(void)
{
TESTING_2("H5Aiterate by creation order in decreasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Aiterate2_creation_decreasing);
+ }
+
/* Reset the counter to the appropriate value for the next test */
link_counter = 3 * ATTRIBUTE_ITERATE_TEST_NUM_ATTRS;
@@ -7119,7 +7163,7 @@ test_attribute_iterate_dataset(void)
PART_BEGIN(H5Aiterate_by_name_name_decreasing)
{
TESTING_2("H5Aiterate_by_name by attribute name in decreasing order");
-#ifndef NO_DECREASING_ALPHA_ITER_ORDER
+
/* Reset the counter to the appropriate value for the next test */
link_counter = ATTRIBUTE_ITERATE_TEST_NUM_ATTRS;
@@ -7142,10 +7186,6 @@ test_attribute_iterate_dataset(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Aiterate_by_name_name_decreasing);
-#endif
}
PART_END(H5Aiterate_by_name_name_decreasing);
@@ -7153,6 +7193,12 @@ test_attribute_iterate_dataset(void)
{
TESTING_2("H5Aiterate_by_name by creation order in increasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Aiterate_by_name_creation_increasing);
+ }
+
/* Reset the counter to the appropriate value for the next test */
link_counter = 2 * ATTRIBUTE_ITERATE_TEST_NUM_ATTRS;
@@ -7182,6 +7228,12 @@ test_attribute_iterate_dataset(void)
{
TESTING_2("H5Aiterate_by_name by creation order in decreasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Aiterate_by_name_creation_decreasing);
+ }
+
/* Reset the counter to the appropriate value for the next test */
link_counter = 3 * ATTRIBUTE_ITERATE_TEST_NUM_ATTRS;
@@ -7279,11 +7331,10 @@ test_attribute_iterate_datatype(void)
/* Make sure the connector supports the API functions being tested */
if (!(vol_cap_flags_g & H5VL_CAP_FLAG_FILE_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_GROUP_BASIC) ||
!(vol_cap_flags_g & H5VL_CAP_FLAG_ATTR_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_ITERATE) ||
- !(vol_cap_flags_g & H5VL_CAP_FLAG_STORED_DATATYPES) ||
- !(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ !(vol_cap_flags_g & H5VL_CAP_FLAG_STORED_DATATYPES)) {
SKIPPED();
- HDprintf(" API functions for basic file, group, stored datatype, attribute, iterate, or creation "
- "order aren't supported with this connector\n");
+ HDprintf(" API functions for basic file, group, stored datatype, attribute, or iterate "
+ "aren't supported with this connector\n");
return 0;
}
@@ -7314,10 +7365,12 @@ test_attribute_iterate_datatype(void)
goto error;
}
- if (H5Pset_attr_creation_order(tcpl_id, H5P_CRT_ORDER_TRACKED) < 0) {
- H5_FAILED();
- HDprintf(" couldn't set attribute creation order tracking\n");
- goto error;
+ if (vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER) {
+ if (H5Pset_attr_creation_order(tcpl_id, H5P_CRT_ORDER_TRACKED) < 0) {
+ H5_FAILED();
+ HDprintf(" couldn't set attribute creation order tracking\n");
+ goto error;
+ }
}
if ((type_id = generate_random_datatype(H5T_NO_CLASS, FALSE)) < 0)
@@ -7411,7 +7464,6 @@ test_attribute_iterate_datatype(void)
PART_BEGIN(H5Aiterate2_name_decreasing)
{
TESTING_2("H5Aiterate by attribute name in decreasing order");
-#ifndef NO_DECREASING_ALPHA_ITER_ORDER
/* Reset the counter to the appropriate value for the next test */
link_counter = ATTRIBUTE_ITERATE_TEST_NUM_ATTRS;
@@ -7431,10 +7483,6 @@ test_attribute_iterate_datatype(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Aiterate2_name_decreasing);
-#endif
}
PART_END(H5Aiterate2_name_decreasing);
@@ -7442,6 +7490,12 @@ test_attribute_iterate_datatype(void)
{
TESTING_2("H5Aiterate by creation order in increasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Aiterate2_creation_increasing);
+ }
+
/* Reset the counter to the appropriate value for the next test */
link_counter = 2 * ATTRIBUTE_ITERATE_TEST_NUM_ATTRS;
@@ -7468,6 +7522,12 @@ test_attribute_iterate_datatype(void)
{
TESTING_2("H5Aiterate by creation order in decreasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Aiterate2_creation_decreasing);
+ }
+
/* Reset the counter to the appropriate value for the next test */
link_counter = 3 * ATTRIBUTE_ITERATE_TEST_NUM_ATTRS;
@@ -7522,7 +7582,7 @@ test_attribute_iterate_datatype(void)
PART_BEGIN(H5Aiterate_by_name_name_decreasing)
{
TESTING_2("H5Aiterate_by_name by attribute name in decreasing order");
-#ifndef NO_DECREASING_ALPHA_ITER_ORDER
+
/* Reset the counter to the appropriate value for the next test */
link_counter = ATTRIBUTE_ITERATE_TEST_NUM_ATTRS;
@@ -7545,10 +7605,6 @@ test_attribute_iterate_datatype(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Aiterate_by_name_name_decreasing);
-#endif
}
PART_END(H5Aiterate_by_name_name_decreasing);
@@ -7556,6 +7612,12 @@ test_attribute_iterate_datatype(void)
{
TESTING_2("H5Aiterate_by_name by creation order in increasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Aiterate_by_name_creation_increasing);
+ }
+
/* Reset the counter to the appropriate value for the next test */
link_counter = 2 * ATTRIBUTE_ITERATE_TEST_NUM_ATTRS;
@@ -7586,6 +7648,12 @@ test_attribute_iterate_datatype(void)
{
TESTING_2("H5Aiterate_by_name by creation order in decreasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Aiterate_by_name_creation_decreasing);
+ }
+
/* Reset the counter to the appropriate value for the next test */
link_counter = 3 * ATTRIBUTE_ITERATE_TEST_NUM_ATTRS;
@@ -8112,8 +8180,8 @@ test_attribute_iterate_0_attributes(void)
!(vol_cap_flags_g & H5VL_CAP_FLAG_ATTR_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_ITERATE) ||
!(vol_cap_flags_g & H5VL_CAP_FLAG_DATASET_BASIC)) {
SKIPPED();
- HDprintf(" API functions for basic file, group, dataset, attribute, or iterate aren't supported "
- "with this connector\n");
+ HDprintf(" API functions for basic file, group, dataset, attribute, or iterate "
+ "aren't supported with this connector\n");
return 0;
}
@@ -8187,7 +8255,7 @@ test_attribute_iterate_0_attributes(void)
PART_BEGIN(H5Aiterate_0_attributes_dec)
{
TESTING_2("H5Aiterate (decreasing order)");
-#ifndef NO_DECREASING_ALPHA_ITER_ORDER
+
if (H5Aiterate2(dset_id, H5_INDEX_NAME, H5_ITER_DEC, NULL, attr_iter_callback2, NULL) < 0) {
H5_FAILED();
HDprintf(" H5Aiterate2 on object with 0 attributes failed\n");
@@ -8195,10 +8263,6 @@ test_attribute_iterate_0_attributes(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Aiterate_0_attributes_dec);
-#endif
}
PART_END(H5Aiterate_0_attributes_dec);
@@ -8235,7 +8299,6 @@ test_attribute_iterate_0_attributes(void)
PART_BEGIN(H5Aiterate_by_name_0_attributes_dec)
{
TESTING_2("H5Aiterate_by_name (decreasing order)");
-#ifndef NO_DECREASING_ALPHA_ITER_ORDER
if (H5Aiterate_by_name(group_id, ATTRIBUTE_ITERATE_TEST_0_ATTRIBUTES_DSET_NAME, H5_INDEX_NAME,
H5_ITER_DEC, NULL, attr_iter_callback2, NULL, H5P_DEFAULT) < 0) {
H5_FAILED();
@@ -8244,10 +8307,6 @@ test_attribute_iterate_0_attributes(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Aiterate_by_name_0_attributes_dec);
-#endif
}
PART_END(H5Aiterate_by_name_0_attributes_dec);
}
@@ -8307,9 +8366,9 @@ test_delete_attribute(void)
/* Make sure the connector supports the API functions being tested */
if (!(vol_cap_flags_g & H5VL_CAP_FLAG_FILE_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_GROUP_BASIC) ||
- !(vol_cap_flags_g & H5VL_CAP_FLAG_ATTR_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ !(vol_cap_flags_g & H5VL_CAP_FLAG_ATTR_BASIC)) {
SKIPPED();
- HDprintf(" API functions for basic file, group, attribute, or creation order aren't supported "
+ HDprintf(" API functions for basic file, group, or attribute aren't supported "
"with this connector\n");
return 0;
}
@@ -8334,10 +8393,12 @@ test_delete_attribute(void)
goto error;
}
- if (H5Pset_attr_creation_order(gcpl_id, H5P_CRT_ORDER_TRACKED) < 0) {
- H5_FAILED();
- HDprintf(" couldn't set attribute creation order tracking\n");
- goto error;
+ if (vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER) {
+ if (H5Pset_attr_creation_order(gcpl_id, H5P_CRT_ORDER_TRACKED) < 0) {
+ H5_FAILED();
+ HDprintf(" couldn't set attribute creation order tracking\n");
+ goto error;
+ }
}
if ((group_id = H5Gcreate2(container_group, ATTRIBUTE_DELETION_TEST_GROUP_NAME, H5P_DEFAULT, gcpl_id,
@@ -8492,6 +8553,12 @@ test_delete_attribute(void)
{
TESTING_2("H5Adelete_by_idx by creation order in increasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Adelete_by_idx_crt_order_increasing);
+ }
+
/* Create several attributes */
if ((attr_id = H5Acreate2(group_id, ATTRIBUTE_DELETION_TEST_ATTR_NAME, attr_dtype, space_id,
H5P_DEFAULT, H5P_DEFAULT)) < 0) {
@@ -8737,6 +8804,12 @@ test_delete_attribute(void)
{
TESTING_2("H5Adelete_by_idx by creation order in decreasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Adelete_by_idx_crt_order_decreasing);
+ }
+
/* Create several attributes */
if ((attr_id = H5Acreate2(group_id, ATTRIBUTE_DELETION_TEST_ATTR_NAME, attr_dtype, space_id,
H5P_DEFAULT, H5P_DEFAULT)) < 0) {
@@ -9226,7 +9299,7 @@ test_delete_attribute(void)
PART_BEGIN(H5Adelete_by_idx_name_order_decreasing)
{
TESTING_2("H5Adelete_by_idx by alphabetical order in decreasing order");
-#ifndef NO_DECREASING_ALPHA_ITER_ORDER
+
/* Create several attributes */
if ((attr_id = H5Acreate2(group_id, ATTRIBUTE_DELETION_TEST_ATTR_NAME, attr_dtype, space_id,
H5P_DEFAULT, H5P_DEFAULT)) < 0) {
@@ -9458,10 +9531,6 @@ test_delete_attribute(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Adelete_by_idx_name_order_decreasing);
-#endif
}
PART_END(H5Adelete_by_idx_name_order_decreasing);
@@ -10758,7 +10827,6 @@ error:
static int
test_attr_shared_dtype(void)
{
-#ifndef NO_SHARED_DATATYPES
H5O_info2_t obj_info;
htri_t attr_exists;
hid_t file_id = H5I_INVALID_HID;
@@ -10768,11 +10836,9 @@ test_attr_shared_dtype(void)
hid_t attr_dtype = H5I_INVALID_HID;
hid_t space_id = H5I_INVALID_HID;
hid_t dset_id = H5I_INVALID_HID;
-#endif
TESTING("shared datatype for attributes");
-#ifndef NO_SHARED_DATATYPES
/* Make sure the connector supports the API functions being tested */
if (!(vol_cap_flags_g & H5VL_CAP_FLAG_FILE_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_GROUP_BASIC) ||
!(vol_cap_flags_g & H5VL_CAP_FLAG_ATTR_BASIC) ||
@@ -10910,10 +10976,6 @@ error:
H5E_END_TRY;
return 1;
-#else
- SKIPPED();
- return 0;
-#endif
}
static herr_t
diff --git a/test/API/H5_api_dataset_test.c b/test/API/H5_api_dataset_test.c
index 35a19f3..e31ed43 100644
--- a/test/API/H5_api_dataset_test.c
+++ b/test/API/H5_api_dataset_test.c
@@ -50,20 +50,10 @@ static int test_read_dataset_small_all(void);
static int test_read_dataset_small_hyperslab(void);
static int test_read_dataset_small_point_selection(void);
static int test_dataset_io_point_selections(void);
-#ifndef NO_LARGE_TESTS
-static int test_read_dataset_large_all(void);
-static int test_read_dataset_large_hyperslab(void);
-static int test_read_dataset_large_point_selection(void);
-#endif
static int test_read_dataset_invalid_params(void);
static int test_write_dataset_small_all(void);
static int test_write_dataset_small_hyperslab(void);
static int test_write_dataset_small_point_selection(void);
-#ifndef NO_LARGE_TESTS
-static int test_write_dataset_large_all(void);
-static int test_write_dataset_large_hyperslab(void);
-static int test_write_dataset_large_point_selection(void);
-#endif
static int test_write_dataset_data_verification(void);
static int test_write_dataset_invalid_params(void);
static int test_dataset_builtin_type_conversion(void);
@@ -132,20 +122,10 @@ static int (*dataset_tests[])(void) = {
test_read_dataset_small_hyperslab,
test_read_dataset_small_point_selection,
test_dataset_io_point_selections,
-#ifndef NO_LARGE_TESTS
- test_read_dataset_large_all,
- test_read_dataset_large_hyperslab,
- test_read_dataset_large_point_selection,
-#endif
test_read_dataset_invalid_params,
test_write_dataset_small_all,
test_write_dataset_small_hyperslab,
test_write_dataset_small_point_selection,
-#ifndef NO_LARGE_TESTS
- test_write_dataset_large_all,
- test_write_dataset_large_hyperslab,
- test_write_dataset_large_point_selection,
-#endif
test_write_dataset_data_verification,
test_write_dataset_invalid_params,
test_dataset_builtin_type_conversion,
@@ -1780,7 +1760,7 @@ test_create_dataset_enum_types(void)
for (i = 0; i < DATASET_ENUM_TYPE_TEST_NUM_MEMBERS; i++) {
char val_name[15];
- HDsprintf(val_name, "%s%zu", DATASET_ENUM_TYPE_TEST_VAL_BASE_NAME, i);
+ HDsnprintf(val_name, 15, "%s%zu", DATASET_ENUM_TYPE_TEST_VAL_BASE_NAME, i);
if (H5Tenum_insert(enum_non_native, val_name, &i) < 0)
TEST_ERROR;
@@ -2080,13 +2060,11 @@ test_create_dataset_creation_properties(void)
TESTING_MULTIPART("dataset creation properties");
/* Make sure the connector supports the API functions being tested */
- if (!(vol_cap_flags_g & H5VL_CAP_FLAG_FILTERS) || !(vol_cap_flags_g & H5VL_CAP_FLAG_GROUP_BASIC) ||
- !(vol_cap_flags_g & H5VL_CAP_FLAG_DATASET_BASIC) ||
- !(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER) || !(vol_cap_flags_g & H5VL_CAP_FLAG_TRACK_TIMES) ||
- !(vol_cap_flags_g & H5VL_CAP_FLAG_FILTERS)) {
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_FILE_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_GROUP_BASIC) ||
+ !(vol_cap_flags_g & H5VL_CAP_FLAG_DATASET_BASIC)) {
SKIPPED();
- HDprintf(" API functions for basic file, group, dataset, creation order, track time, or filter "
- "pipeline aren't supported with this connector\n");
+ HDprintf(" API functions for basic file, group, or dataset "
+ "aren't supported with this connector\n");
return 0;
}
@@ -2209,6 +2187,12 @@ test_create_dataset_creation_properties(void)
TESTING_2("attribute creation order property for DCPL");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking is not supported by this VOL connector\n");
+ PART_EMPTY(DCPL_attr_crt_order_test);
+ }
+
if ((dcpl_id = H5Pcreate(H5P_DATASET_CREATE)) < 0) {
H5_FAILED();
HDprintf(" couldn't create DCPL\n");
@@ -2411,6 +2395,12 @@ test_create_dataset_creation_properties(void)
{
TESTING_2("dataset filters");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_FILTERS)) {
+ SKIPPED();
+ HDprintf(" dataset filters are not supported by this VOL connector\n");
+ PART_EMPTY(DCPL_filters_test);
+ }
+
if ((dcpl_id = H5Pcreate(H5P_DATASET_CREATE)) < 0) {
H5_FAILED();
HDprintf(" couldn't create DCPL\n");
@@ -2591,6 +2581,12 @@ test_create_dataset_creation_properties(void)
{
TESTING_2("object time tracking property for DCPL");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_TRACK_TIMES)) {
+ SKIPPED();
+ HDprintf(" object time tracking is not supported by this VOL connector\n");
+ PART_EMPTY(DCPL_track_obj_times_test);
+ }
+
if ((dcpl_id = H5Pcreate(H5P_DATASET_CREATE)) < 0) {
H5_FAILED();
HDprintf(" couldn't create DCPL\n");
@@ -4933,372 +4929,6 @@ error:
return 1;
} /* end test_dataset_io_point_selections() */
-#ifndef NO_LARGE_TESTS
-/*
- * A test to check that a large amount of data can be
- * read back from a dataset using an H5S_ALL selection.
- */
-static int
-test_read_dataset_large_all(void)
-{
- hsize_t dims[DATASET_LARGE_READ_TEST_ALL_DSET_SPACE_RANK] = {600, 600, 600};
- size_t i, data_size;
- hid_t file_id = H5I_INVALID_HID;
- hid_t container_group = H5I_INVALID_HID, group_id = H5I_INVALID_HID;
- hid_t dset_id = H5I_INVALID_HID;
- hid_t fspace_id = H5I_INVALID_HID;
- void *read_buf = NULL;
-
- TESTING("large read from dataset with H5S_ALL");
-
- /* Make sure the connector supports the API functions being tested */
- if (!(vol_cap_flags_g & H5VL_CAP_FLAG_FILE_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_GROUP_BASIC) ||
- !(vol_cap_flags_g & H5VL_CAP_FLAG_DATASET_BASIC)) {
- SKIPPED();
- HDprintf(
- " API functions for basic file, group, or dataset aren't supported with this connector\n");
- return 0;
- }
-
- if ((file_id = H5Fopen(H5_api_test_filename, H5F_ACC_RDWR, H5P_DEFAULT)) < 0) {
- H5_FAILED();
- HDprintf(" couldn't open file '%s'\n", H5_api_test_filename);
- goto error;
- }
-
- if ((container_group = H5Gopen2(file_id, DATASET_TEST_GROUP_NAME, H5P_DEFAULT)) < 0) {
- H5_FAILED();
- HDprintf(" couldn't open container group '%s'\n", DATASET_TEST_GROUP_NAME);
- goto error;
- }
-
- if ((group_id = H5Gcreate2(container_group, DATASET_LARGE_READ_TEST_ALL_GROUP_NAME, H5P_DEFAULT,
- H5P_DEFAULT, H5P_DEFAULT)) < 0) {
- H5_FAILED();
- HDprintf(" couldn't create container sub-group '%s'\n", DATASET_LARGE_READ_TEST_ALL_GROUP_NAME);
- goto error;
- }
-
- if ((fspace_id = H5Screate_simple(DATASET_LARGE_READ_TEST_ALL_DSET_SPACE_RANK, dims, NULL)) < 0)
- TEST_ERROR;
-
- if ((dset_id = H5Dcreate2(group_id, DATASET_LARGE_READ_TEST_ALL_DSET_NAME,
- DATASET_LARGE_READ_TEST_ALL_DSET_DTYPE, fspace_id, H5P_DEFAULT, H5P_DEFAULT,
- H5P_DEFAULT)) < 0) {
- H5_FAILED();
- HDprintf(" couldn't create dataset '%s'\n", DATASET_LARGE_READ_TEST_ALL_DSET_NAME);
- goto error;
- }
-
- for (i = 0, data_size = 1; i < DATASET_LARGE_READ_TEST_ALL_DSET_SPACE_RANK; i++)
- data_size *= dims[i];
- data_size *= DATASET_LARGE_READ_TEST_ALL_DSET_DTYPESIZE;
-
- if (NULL == (read_buf = HDmalloc(data_size)))
- TEST_ERROR;
-
- if (H5Dread(dset_id, DATASET_LARGE_READ_TEST_ALL_DSET_DTYPE, H5S_ALL, H5S_ALL, H5P_DEFAULT, read_buf) <
- 0) {
- H5_FAILED();
- HDprintf(" couldn't read from dataset '%s'\n", DATASET_LARGE_READ_TEST_ALL_DSET_NAME);
- goto error;
- }
-
- if (read_buf) {
- HDfree(read_buf);
- read_buf = NULL;
- }
-
- if (H5Sclose(fspace_id) < 0)
- TEST_ERROR;
- if (H5Dclose(dset_id) < 0)
- TEST_ERROR;
- if (H5Gclose(group_id) < 0)
- TEST_ERROR;
- if (H5Gclose(container_group) < 0)
- TEST_ERROR;
- if (H5Fclose(file_id) < 0)
- TEST_ERROR;
-
- PASSED();
-
- return 0;
-
-error:
- H5E_BEGIN_TRY
- {
- if (read_buf)
- HDfree(read_buf);
- H5Sclose(fspace_id);
- H5Dclose(dset_id);
- H5Gclose(group_id);
- H5Gclose(container_group);
- H5Fclose(file_id);
- }
- H5E_END_TRY;
-
- return 1;
-}
-
-/*
- * A test to check that a large amount of data can be
- * read back from a dataset using a hyperslab selection.
- */
-static int
-test_read_dataset_large_hyperslab(void)
-{
- hsize_t start[DATASET_LARGE_READ_TEST_HYPERSLAB_DSET_SPACE_RANK];
- hsize_t stride[DATASET_LARGE_READ_TEST_HYPERSLAB_DSET_SPACE_RANK];
- hsize_t count[DATASET_LARGE_READ_TEST_HYPERSLAB_DSET_SPACE_RANK];
- hsize_t block[DATASET_LARGE_READ_TEST_HYPERSLAB_DSET_SPACE_RANK];
- hsize_t dims[DATASET_LARGE_READ_TEST_HYPERSLAB_DSET_SPACE_RANK] = {600, 600, 600};
- size_t i, data_size;
- hid_t file_id = H5I_INVALID_HID;
- hid_t container_group = H5I_INVALID_HID, group_id = H5I_INVALID_HID;
- hid_t dset_id = H5I_INVALID_HID;
- hid_t mspace_id = H5I_INVALID_HID, fspace_id = H5I_INVALID_HID;
- void *read_buf = NULL;
-
- TESTING("large read from dataset with a hyperslab selection");
-
- /* Make sure the connector supports the API functions being tested */
- if (!(vol_cap_flags_g & H5VL_CAP_FLAG_FILE_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_GROUP_BASIC) ||
- !(vol_cap_flags_g & H5VL_CAP_FLAG_DATASET_BASIC)) {
- SKIPPED();
- HDprintf(
- " API functions for basic file, group, or dataset aren't supported with this connector\n");
- return 0;
- }
-
- if ((file_id = H5Fopen(H5_api_test_filename, H5F_ACC_RDWR, H5P_DEFAULT)) < 0) {
- H5_FAILED();
- HDprintf(" couldn't open file '%s'\n", H5_api_test_filename);
- goto error;
- }
-
- if ((container_group = H5Gopen2(file_id, DATASET_TEST_GROUP_NAME, H5P_DEFAULT)) < 0) {
- H5_FAILED();
- HDprintf(" couldn't open container group '%s'\n", DATASET_TEST_GROUP_NAME);
- goto error;
- }
-
- if ((group_id = H5Gcreate2(container_group, DATASET_LARGE_READ_TEST_HYPERSLAB_GROUP_NAME, H5P_DEFAULT,
- H5P_DEFAULT, H5P_DEFAULT)) < 0) {
- H5_FAILED();
- HDprintf(" couldn't create container sub-group '%s'\n",
- DATASET_LARGE_READ_TEST_HYPERSLAB_GROUP_NAME);
- goto error;
- }
-
- if ((fspace_id = H5Screate_simple(DATASET_LARGE_READ_TEST_HYPERSLAB_DSET_SPACE_RANK, dims, NULL)) < 0)
- TEST_ERROR;
- if ((mspace_id = H5Screate_simple(DATASET_LARGE_READ_TEST_HYPERSLAB_DSET_SPACE_RANK, dims, NULL)) < 0)
- TEST_ERROR;
-
- if ((dset_id = H5Dcreate2(group_id, DATASET_LARGE_READ_TEST_HYPERSLAB_DSET_NAME,
- DATASET_LARGE_READ_TEST_HYPERSLAB_DSET_DTYPE, fspace_id, H5P_DEFAULT,
- H5P_DEFAULT, H5P_DEFAULT)) < 0) {
- H5_FAILED();
- HDprintf(" couldn't create dataset '%s'\n", DATASET_LARGE_READ_TEST_HYPERSLAB_DSET_NAME);
- goto error;
- }
-
- for (i = 0; i < DATASET_LARGE_READ_TEST_HYPERSLAB_DSET_SPACE_RANK; i++) {
- start[i] = 0;
- stride[i] = 1;
- count[i] = dims[i];
- block[i] = 1;
- }
-
- if (H5Sselect_hyperslab(fspace_id, H5S_SELECT_SET, start, stride, count, block) < 0)
- TEST_ERROR;
-
- for (i = 0, data_size = 1; i < DATASET_LARGE_READ_TEST_HYPERSLAB_DSET_SPACE_RANK; i++)
- data_size *= dims[i];
- data_size *= DATASET_LARGE_READ_TEST_HYPERSLAB_DSET_DTYPESIZE;
-
- if (NULL == (read_buf = HDmalloc(data_size)))
- TEST_ERROR;
-
- if (H5Dread(dset_id, DATASET_LARGE_READ_TEST_HYPERSLAB_DSET_DTYPE, mspace_id, fspace_id, H5P_DEFAULT,
- read_buf) < 0) {
- H5_FAILED();
- HDprintf(" couldn't read from dataset '%s'\n", DATASET_LARGE_READ_TEST_HYPERSLAB_DSET_NAME);
- goto error;
- }
-
- if (read_buf) {
- HDfree(read_buf);
- read_buf = NULL;
- }
-
- if (H5Sclose(mspace_id) < 0)
- TEST_ERROR;
- if (H5Sclose(fspace_id) < 0)
- TEST_ERROR;
- if (H5Dclose(dset_id) < 0)
- TEST_ERROR;
- if (H5Gclose(group_id) < 0)
- TEST_ERROR;
- if (H5Gclose(container_group) < 0)
- TEST_ERROR;
- if (H5Fclose(file_id) < 0)
- TEST_ERROR;
-
- PASSED();
-
- return 0;
-
-error:
- H5E_BEGIN_TRY
- {
- H5Sclose(mspace_id);
- H5Sclose(fspace_id);
- H5Dclose(dset_id);
- H5Gclose(group_id);
- H5Gclose(container_group);
- H5Fclose(file_id);
- }
- H5E_END_TRY;
-
- return 1;
-}
-
-/*
- * A test to check that a large amount of data can be
- * read back from a dataset using a large point selection.
- *
- * XXX: Test takes up significant amounts of memory.
- */
-static int
-test_read_dataset_large_point_selection(void)
-{
- hsize_t *points = NULL;
- hsize_t dims[DATASET_LARGE_READ_TEST_POINT_SELECTION_DSET_SPACE_RANK] = {225000000};
- size_t i, data_size;
- hid_t file_id = H5I_INVALID_HID;
- hid_t container_group = H5I_INVALID_HID, group_id = H5I_INVALID_HID;
- hid_t dset_id = H5I_INVALID_HID;
- hid_t fspace_id = H5I_INVALID_HID;
- void *data = NULL;
-
- TESTING("large read from dataset with a point selection");
-
- /* Make sure the connector supports the API functions being tested */
- if (!(vol_cap_flags_g & H5VL_CAP_FLAG_FILE_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_GROUP_BASIC) ||
- !(vol_cap_flags_g & H5VL_CAP_FLAG_DATASET_BASIC)) {
- SKIPPED();
- HDprintf(
- " API functions for basic file, group, or dataset aren't supported with this connector\n");
- return 0;
- }
-
- if ((file_id = H5Fopen(H5_api_test_filename, H5F_ACC_RDWR, H5P_DEFAULT)) < 0) {
- H5_FAILED();
- HDprintf(" couldn't open file '%s'\n", H5_api_test_filename);
- goto error;
- }
-
- if ((container_group = H5Gopen2(file_id, DATASET_TEST_GROUP_NAME, H5P_DEFAULT)) < 0) {
- H5_FAILED();
- HDprintf(" couldn't open container group '%s'\n", DATASET_TEST_GROUP_NAME);
- goto error;
- }
-
- if ((group_id = H5Gcreate2(container_group, DATASET_LARGE_READ_TEST_POINT_SELECTION_GROUP_NAME,
- H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT)) < 0) {
- H5_FAILED();
- HDprintf(" couldn't create container sub-group '%s'\n",
- DATASET_LARGE_READ_TEST_POINT_SELECTION_GROUP_NAME);
- goto error;
- }
-
- if ((fspace_id = H5Screate_simple(DATASET_LARGE_READ_TEST_POINT_SELECTION_DSET_SPACE_RANK, dims, NULL)) <
- 0)
- TEST_ERROR;
-
- if ((dset_id = H5Dcreate2(group_id, DATASET_LARGE_READ_TEST_POINT_SELECTION_DSET_NAME,
- DATASET_LARGE_READ_TEST_POINT_SELECTION_DSET_DTYPE, fspace_id, H5P_DEFAULT,
- H5P_DEFAULT, H5P_DEFAULT)) < 0) {
- H5_FAILED();
- HDprintf(" couldn't create dataset '%s'\n", DATASET_LARGE_READ_TEST_POINT_SELECTION_DSET_NAME);
- goto error;
- }
-
- for (i = 0, data_size = 1; i < DATASET_LARGE_READ_TEST_POINT_SELECTION_DSET_SPACE_RANK; i++)
- data_size *= dims[i];
- data_size *= DATASET_LARGE_READ_TEST_POINT_SELECTION_DSET_DTYPESIZE;
-
- if (NULL == (data = HDmalloc(data_size)))
- TEST_ERROR;
- if (NULL ==
- (points = HDmalloc((data_size / DATASET_LARGE_READ_TEST_POINT_SELECTION_DSET_DTYPESIZE) *
- ((DATASET_LARGE_READ_TEST_POINT_SELECTION_DSET_SPACE_RANK) * (sizeof(hsize_t))))))
- TEST_ERROR;
-
- /* Select the entire dataspace */
- for (i = 0; i < data_size / DATASET_LARGE_READ_TEST_POINT_SELECTION_DSET_DTYPESIZE; i++) {
- points[i] = i;
- }
-
- if (H5Sselect_elements(fspace_id, H5S_SELECT_SET,
- data_size / DATASET_LARGE_READ_TEST_POINT_SELECTION_DSET_DTYPESIZE, points) < 0) {
- H5_FAILED();
- HDprintf(" couldn't select points\n");
- goto error;
- }
-
- if (H5Dread(dset_id, DATASET_LARGE_READ_TEST_POINT_SELECTION_DSET_DTYPE, H5S_ALL, fspace_id, H5P_DEFAULT,
- data) < 0) {
- H5_FAILED();
- HDprintf(" couldn't read from dataset '%s'\n", DATASET_LARGE_READ_TEST_POINT_SELECTION_DSET_NAME);
- goto error;
- }
-
- if (data) {
- HDfree(data);
- data = NULL;
- }
-
- if (points) {
- HDfree(points);
- points = NULL;
- }
-
- if (H5Sclose(fspace_id) < 0)
- TEST_ERROR;
- if (H5Dclose(dset_id) < 0)
- TEST_ERROR;
- if (H5Gclose(group_id) < 0)
- TEST_ERROR;
- if (H5Gclose(container_group) < 0)
- TEST_ERROR;
- if (H5Fclose(file_id) < 0)
- TEST_ERROR;
-
- PASSED();
-
- return 0;
-
-error:
- H5E_BEGIN_TRY
- {
- if (data)
- HDfree(data);
- if (points)
- HDfree(points);
- H5Sclose(fspace_id);
- H5Dclose(dset_id);
- H5Gclose(group_id);
- H5Gclose(container_group);
- H5Fclose(file_id);
- }
- H5E_END_TRY;
-
- return 1;
-}
-#endif
-
/*
* A test to check that data can't be read from a
* dataset when H5Dread is passed invalid parameters.
@@ -5929,281 +5559,6 @@ error:
return 1;
}
-#ifndef NO_LARGE_TESTS
-/*
- * A test to check that a large write can be made
- * to a dataset using an H5S_ALL selection.
- */
-static int
-test_write_dataset_large_all(void)
-{
- hssize_t space_npoints;
- hsize_t dims[DATASET_LARGE_WRITE_TEST_ALL_DSET_SPACE_RANK] = {600, 600, 600};
- size_t i, data_size;
- hid_t file_id = H5I_INVALID_HID;
- hid_t container_group = H5I_INVALID_HID, group_id = H5I_INVALID_HID;
- hid_t dset_id = H5I_INVALID_HID;
- hid_t fspace_id = H5I_INVALID_HID;
- void *data = NULL;
-
- TESTING("large write to dataset with H5S_ALL");
-
- /* Make sure the connector supports the API functions being tested */
- if (!(vol_cap_flags_g & H5VL_CAP_FLAG_FILE_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_GROUP_BASIC) ||
- !(vol_cap_flags_g & H5VL_CAP_FLAG_DATASET_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_DATASET_MORE)) {
- SKIPPED();
- HDprintf(" API functions for basic file, group, basic or more dataset aren't supported with this "
- "connector\n");
- return 0;
- }
-
- if ((file_id = H5Fopen(H5_api_test_filename, H5F_ACC_RDWR, H5P_DEFAULT)) < 0) {
- H5_FAILED();
- HDprintf(" couldn't open file '%s'\n", H5_api_test_filename);
- goto error;
- }
-
- if ((container_group = H5Gopen2(file_id, DATASET_TEST_GROUP_NAME, H5P_DEFAULT)) < 0) {
- H5_FAILED();
- HDprintf(" couldn't open container group '%s'\n", DATASET_TEST_GROUP_NAME);
- goto error;
- }
-
- if ((group_id = H5Gcreate2(container_group, DATASET_LARGE_WRITE_TEST_ALL_GROUP_NAME, H5P_DEFAULT,
- H5P_DEFAULT, H5P_DEFAULT)) < 0) {
- H5_FAILED();
- HDprintf(" couldn't create container sub-group '%s'\n", DATASET_LARGE_WRITE_TEST_ALL_GROUP_NAME);
- goto error;
- }
-
- if ((fspace_id = H5Screate_simple(DATASET_LARGE_WRITE_TEST_ALL_DSET_SPACE_RANK, dims, NULL)) < 0)
- TEST_ERROR;
-
- if ((dset_id = H5Dcreate2(group_id, DATASET_LARGE_WRITE_TEST_ALL_DSET_NAME,
- DATASET_LARGE_WRITE_TEST_ALL_DSET_DTYPE, fspace_id, H5P_DEFAULT, H5P_DEFAULT,
- H5P_DEFAULT)) < 0) {
- H5_FAILED();
- HDprintf(" couldn't create dataset '%s'\n", DATASET_LARGE_WRITE_TEST_ALL_DSET_NAME);
- goto error;
- }
-
- /* Close the dataset and dataspace to ensure that retrieval of file space ID is working */
- if (H5Dclose(dset_id) < 0)
- TEST_ERROR;
- if (H5Sclose(fspace_id) < 0)
- TEST_ERROR;
-
- if ((dset_id = H5Dopen2(group_id, DATASET_LARGE_WRITE_TEST_ALL_DSET_NAME, H5P_DEFAULT)) < 0) {
- H5_FAILED();
- HDprintf(" couldn't open dataset '%s'\n", DATASET_LARGE_WRITE_TEST_ALL_DSET_NAME);
- goto error;
- }
-
- if ((fspace_id = H5Dget_space(dset_id)) < 0) {
- H5_FAILED();
- HDprintf(" couldn't get dataset dataspace\n");
- goto error;
- }
-
- if ((space_npoints = H5Sget_simple_extent_npoints(fspace_id)) < 0) {
- H5_FAILED();
- HDprintf(" couldn't get dataspace num points\n");
- goto error;
- }
-
- if (NULL == (data = HDmalloc((hsize_t)space_npoints * DATASET_LARGE_WRITE_TEST_ALL_DSET_DTYPESIZE)))
- TEST_ERROR;
-
- for (i = 0; i < (hsize_t)space_npoints; i++)
- ((int *)data)[i] = (int)i;
-
- if (H5Dwrite(dset_id, DATASET_LARGE_WRITE_TEST_ALL_DSET_DTYPE, H5S_ALL, H5S_ALL, H5P_DEFAULT, data) < 0) {
- H5_FAILED();
- HDprintf(" couldn't write to dataset '%s'\n", DATASET_LARGE_WRITE_TEST_ALL_DSET_NAME);
- goto error;
- }
-
- if (data) {
- HDfree(data);
- data = NULL;
- }
-
- if (H5Sclose(fspace_id) < 0)
- TEST_ERROR;
- if (H5Dclose(dset_id) < 0)
- TEST_ERROR;
- if (H5Gclose(group_id) < 0)
- TEST_ERROR;
- if (H5Gclose(container_group) < 0)
- TEST_ERROR;
- if (H5Fclose(file_id) < 0)
- TEST_ERROR;
-
- PASSED();
-
- return 0;
-
-error:
- H5E_BEGIN_TRY
- {
- H5Sclose(fspace_id);
- H5Dclose(dset_id);
- H5Gclose(group_id);
- H5Gclose(container_group);
- H5Fclose(file_id);
- }
- H5E_END_TRY;
-
- return 1;
-}
-
-/*
- * A test to check that a large write can be made
- * to a dataset using a hyperslab selection.
- */
-static int
-test_write_dataset_large_hyperslab(void)
-{
- hsize_t start[DATASET_LARGE_WRITE_TEST_HYPERSLAB_DSET_SPACE_RANK];
- hsize_t stride[DATASET_LARGE_WRITE_TEST_HYPERSLAB_DSET_SPACE_RANK];
- hsize_t count[DATASET_LARGE_WRITE_TEST_HYPERSLAB_DSET_SPACE_RANK];
- hsize_t block[DATASET_LARGE_WRITE_TEST_HYPERSLAB_DSET_SPACE_RANK];
- hsize_t dims[DATASET_LARGE_WRITE_TEST_HYPERSLAB_DSET_SPACE_RANK] = {600, 600, 600};
- size_t i, data_size;
- hid_t file_id = H5I_INVALID_HID;
- hid_t container_group = H5I_INVALID_HID, group_id = H5I_INVALID_HID;
- hid_t dset_id = H5I_INVALID_HID;
- hid_t mspace_id = H5I_INVALID_HID, fspace_id = H5I_INVALID_HID;
- void *data = NULL;
-
- TESTING("large write to dataset with a hyperslab selection");
-
- /* Make sure the connector supports the API functions being tested */
- if (!(vol_cap_flags_g & H5VL_CAP_FLAG_FILE_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_GROUP_BASIC) ||
- !(vol_cap_flags_g & H5VL_CAP_FLAG_DATASET_BASIC)) {
- SKIPPED();
- HDprintf(
- " API functions for basic file, group, or dataset aren't supported with this connector\n");
- return 0;
- }
-
- if ((file_id = H5Fopen(H5_api_test_filename, H5F_ACC_RDWR, H5P_DEFAULT)) < 0) {
- H5_FAILED();
- HDprintf(" couldn't open file '%s'\n", H5_api_test_filename);
- goto error;
- }
-
- if ((container_group = H5Gopen2(file_id, DATASET_TEST_GROUP_NAME, H5P_DEFAULT)) < 0) {
- H5_FAILED();
- HDprintf(" couldn't open container group '%s'\n", DATASET_TEST_GROUP_NAME);
- goto error;
- }
-
- if ((group_id = H5Gcreate2(container_group, DATASET_LARGE_WRITE_TEST_HYPERSLAB_GROUP_NAME, H5P_DEFAULT,
- H5P_DEFAULT, H5P_DEFAULT)) < 0) {
- H5_FAILED();
- HDprintf(" couldn't create container sub-group '%s'\n",
- DATASET_LARGE_WRITE_TEST_HYPERSLAB_GROUP_NAME);
- goto error;
- }
-
- if ((fspace_id = H5Screate_simple(DATASET_LARGE_WRITE_TEST_HYPERSLAB_DSET_SPACE_RANK, dims, NULL)) < 0)
- TEST_ERROR;
- if ((mspace_id = H5Screate_simple(DATASET_LARGE_WRITE_TEST_HYPERSLAB_DSET_SPACE_RANK, dims, NULL)) < 0)
- TEST_ERROR;
-
- if ((dset_id = H5Dcreate2(group_id, DATASET_LARGE_WRITE_TEST_HYPERSLAB_DSET_NAME,
- DATASET_LARGE_WRITE_TEST_HYPERSLAB_DSET_DTYPE, fspace_id, H5P_DEFAULT,
- H5P_DEFAULT, H5P_DEFAULT)) < 0) {
- H5_FAILED();
- HDprintf(" couldn't create dataset '%s'\n", DATASET_LARGE_WRITE_TEST_HYPERSLAB_DSET_NAME);
- goto error;
- }
-
- for (i = 0, data_size = 1; i < DATASET_LARGE_WRITE_TEST_HYPERSLAB_DSET_SPACE_RANK; i++)
- data_size *= dims[i];
- data_size *= DATASET_LARGE_WRITE_TEST_HYPERSLAB_DSET_DTYPESIZE;
-
- if (NULL == (data = HDmalloc(data_size)))
- TEST_ERROR;
-
- for (i = 0; i < data_size / DATASET_LARGE_WRITE_TEST_HYPERSLAB_DSET_DTYPESIZE; i++)
- ((int *)data)[i] = (int)i;
-
- for (i = 0; i < DATASET_LARGE_WRITE_TEST_HYPERSLAB_DSET_SPACE_RANK; i++) {
- start[i] = 0;
- stride[i] = 1;
- count[i] = dims[i];
- block[i] = 1;
- }
-
- if (H5Sselect_hyperslab(fspace_id, H5S_SELECT_SET, start, stride, count, block) < 0)
- TEST_ERROR;
-
- if (H5Dwrite(dset_id, DATASET_LARGE_WRITE_TEST_HYPERSLAB_DSET_DTYPE, mspace_id, fspace_id, H5P_DEFAULT,
- data) < 0) {
- H5_FAILED();
- HDprintf(" couldn't write to dataset '%s'\n", DATASET_LARGE_WRITE_TEST_HYPERSLAB_DSET_NAME);
- goto error;
- }
-
- if (data) {
- HDfree(data);
- data = NULL;
- }
-
- if (H5Sclose(mspace_id) < 0)
- TEST_ERROR;
- if (H5Sclose(fspace_id) < 0)
- TEST_ERROR;
- if (H5Dclose(dset_id) < 0)
- TEST_ERROR;
- if (H5Gclose(group_id) < 0)
- TEST_ERROR;
- if (H5Gclose(container_group) < 0)
- TEST_ERROR;
- if (H5Fclose(file_id) < 0)
- TEST_ERROR;
-
- PASSED();
-
- return 0;
-
-error:
- H5E_BEGIN_TRY
- {
- if (data)
- HDfree(data);
- H5Sclose(mspace_id);
- H5Sclose(fspace_id);
- H5Dclose(dset_id);
- H5Gclose(group_id);
- H5Gclose(container_group);
- H5Fclose(file_id);
- }
- H5E_END_TRY;
-
- return 1;
-}
-
-/*
- * A test to check that a large write can be made
- * to a dataset using a point selection.
- */
-static int
-test_write_dataset_large_point_selection(void)
-{
- TESTING("large write to dataset with a point selection");
-
- SKIPPED();
-
- return 0;
-
-error:
- return 1;
-}
-#endif
-
/*
* A test to ensure that data is read back correctly from
* a dataset after it has been written.
@@ -8298,10 +7653,8 @@ test_dataset_set_extent_data(void)
hid_t dcpl_id = H5I_INVALID_HID;
hid_t fspace_id = H5I_INVALID_HID, dset_space_id = H5I_INVALID_HID;
int buf_origin[DATASET_SET_EXTENT_DATA_TEST_SPACE_DIM][DATASET_SET_EXTENT_DATA_TEST_SPACE_DIM];
-#ifndef NO_CLEAR_ON_SHRINK
- int buf_expand2[DATASET_SET_EXTENT_DATA_TEST_SPACE_DIM][DATASET_SET_EXTENT_DATA_TEST_SPACE_DIM];
-#endif
- int buf_expand[DATASET_SET_EXTENT_DATA_TEST_SPACE_DIM * 2 - 1]
+ int buf_expand2[DATASET_SET_EXTENT_DATA_TEST_SPACE_DIM][DATASET_SET_EXTENT_DATA_TEST_SPACE_DIM];
+ int buf_expand[DATASET_SET_EXTENT_DATA_TEST_SPACE_DIM * 2 - 1]
[DATASET_SET_EXTENT_DATA_TEST_SPACE_DIM * 2 - 1];
int buf_shrink[DATASET_SET_EXTENT_DATA_TEST_SPACE_DIM / 2 + 1]
[DATASET_SET_EXTENT_DATA_TEST_SPACE_DIM / 2 + 1];
@@ -8468,7 +7821,7 @@ test_dataset_set_extent_data(void)
PART_BEGIN(H5Dset_extent_data_expand_to_origin)
{
TESTING_2("H5Dset_extent for data back to the original size");
-#ifndef NO_CLEAR_ON_SHRINK
+
/* Expand the dataset back to the original size. The data should look like this:
* X X X X X 0 0 0
* X X X X X 0 0 0
@@ -8508,10 +7861,6 @@ test_dataset_set_extent_data(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Dset_extent_data_expand_to_origin);
-#endif
}
PART_END(H5Dset_extent_data_expand_to_origin);
@@ -8552,7 +7901,7 @@ test_dataset_set_extent_data(void)
PART_BEGIN(H5Dset_extent_data_expand_to_origin_again)
{
TESTING_2("H5Dset_extent for data expansion back to the original again");
-#ifndef NO_CLEAR_ON_SHRINK
+
/* Expand the dataset back to the original size. The data should look like this:
* 0 0 0 0 0 0 0 0
* 0 0 0 0 0 0 0 0
@@ -8581,10 +7930,6 @@ test_dataset_set_extent_data(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Dset_extent_data_expand_to_origin_again);
-#endif
}
PART_END(H5Dset_extent_data_expand_to_origin_again);
}
@@ -8633,7 +7978,6 @@ error:
static int
test_dataset_set_extent_double_handles(void)
{
-#ifndef NO_DOUBLE_OBJECT_OPENS
hsize_t dims_origin[DATASET_SET_EXTENT_DOUBLE_HANDLES_TEST_SPACE_RANK] = {
DATASET_SET_EXTENT_DOUBLE_HANDLES_TEST_SPACE_DIM, DATASET_SET_EXTENT_DOUBLE_HANDLES_TEST_SPACE_DIM};
hsize_t dims_expand[DATASET_SET_EXTENT_DOUBLE_HANDLES_TEST_SPACE_RANK] = {
@@ -8650,12 +7994,9 @@ test_dataset_set_extent_double_handles(void)
hid_t dcpl_id = H5I_INVALID_HID;
hid_t fspace_id = H5I_INVALID_HID, dset_space_id = H5I_INVALID_HID;
int i;
-#endif
TESTING("H5Dset_extent on double dataset handles");
-#ifndef NO_DOUBLE_OBJECT_OPENS
-
/* Make sure the connector supports the API functions being tested */
if (!(vol_cap_flags_g & H5VL_CAP_FLAG_FILE_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_GROUP_BASIC) ||
!(vol_cap_flags_g & H5VL_CAP_FLAG_DATASET_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_DATASET_MORE)) {
@@ -8730,7 +8071,8 @@ test_dataset_set_extent_double_handles(void)
for (i = 0; i < DATASET_SET_EXTENT_DOUBLE_HANDLES_TEST_SPACE_RANK; i++)
if (dims_out[i] != dims_expand[i]) {
H5_FAILED();
- HDprintf(" dims_out[%d] = %d. It should be %d.\n", i, dims_out[i], dims_expand[i]);
+ HDprintf(" dims_out[%d] = %" PRIuHSIZE ". It should be %" PRIuHSIZE ".\n", i, dims_out[i],
+ dims_expand[i]);
goto error;
}
@@ -8768,10 +8110,6 @@ error:
H5E_END_TRY;
return 1;
-#else
- SKIPPED();
- return 0;
-#endif
} /* test_dataset_set_extent_double_handles */
/*
@@ -11551,7 +10889,7 @@ test_get_vlen_buf_size(void)
if (!(vol_cap_flags_g & H5VL_CAP_FLAG_FILE_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_GROUP_BASIC) ||
!(vol_cap_flags_g & H5VL_CAP_FLAG_DATASET_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_DATASET_MORE)) {
SKIPPED();
- HDprintf(" API functions for basic file, group, dataset, or more aren't supported with this "
+ HDprintf(" API functions for basic file, group, or dataset aren't supported with this "
"connector\n");
return 0;
}
diff --git a/test/API/H5_api_dataset_test.h b/test/API/H5_api_dataset_test.h
index 5a50a06..5f692b8 100644
--- a/test/API/H5_api_dataset_test.h
+++ b/test/API/H5_api_dataset_test.h
@@ -149,26 +149,6 @@ int H5_api_dataset_test(void);
#define DATASET_IO_POINT_DSET_NAME_NOCHUNK "dataset_io_point_selection_dset_nochunk"
#define DATASET_IO_POINT_DSET_NAME_CHUNK "dataset_io_point_selection_dset_chunk"
-#ifndef NO_LARGE_TESTS
-#define DATASET_LARGE_READ_TEST_ALL_DSET_SPACE_RANK 3
-#define DATASET_LARGE_READ_TEST_ALL_DSET_DTYPESIZE sizeof(int)
-#define DATASET_LARGE_READ_TEST_ALL_DSET_DTYPE H5T_NATIVE_INT
-#define DATASET_LARGE_READ_TEST_ALL_GROUP_NAME "dataset_large_read_all_test"
-#define DATASET_LARGE_READ_TEST_ALL_DSET_NAME "dataset_large_read_all_dset"
-
-#define DATASET_LARGE_READ_TEST_HYPERSLAB_DSET_SPACE_RANK 3
-#define DATASET_LARGE_READ_TEST_HYPERSLAB_DSET_DTYPESIZE sizeof(int)
-#define DATASET_LARGE_READ_TEST_HYPERSLAB_DSET_DTYPE H5T_NATIVE_INT
-#define DATASET_LARGE_READ_TEST_HYPERSLAB_GROUP_NAME "dataset_large_read_hyperslab_test"
-#define DATASET_LARGE_READ_TEST_HYPERSLAB_DSET_NAME "dataset_large_read_hyperslab_dset"
-
-#define DATASET_LARGE_READ_TEST_POINT_SELECTION_DSET_SPACE_RANK 1
-#define DATASET_LARGE_READ_TEST_POINT_SELECTION_DSET_DTYPESIZE sizeof(int)
-#define DATASET_LARGE_READ_TEST_POINT_SELECTION_DSET_DTYPE H5T_NATIVE_INT
-#define DATASET_LARGE_READ_TEST_POINT_SELECTION_GROUP_NAME "dataset_large_read_point_selection_test"
-#define DATASET_LARGE_READ_TEST_POINT_SELECTION_DSET_NAME "dataset_large_read_point_selection_dset"
-#endif
-
#define DATASET_READ_INVALID_PARAMS_TEST_DSET_SPACE_RANK 3
#define DATASET_READ_INVALID_PARAMS_TEST_DSET_DTYPESIZE sizeof(int)
#define DATASET_READ_INVALID_PARAMS_TEST_DSET_DTYPE H5T_NATIVE_INT
@@ -194,26 +174,6 @@ int H5_api_dataset_test(void);
#define DATASET_SMALL_WRITE_TEST_POINT_SELECTION_GROUP_NAME "dataset_small_write_point_selection_test"
#define DATASET_SMALL_WRITE_TEST_POINT_SELECTION_DSET_NAME "dataset_small_write_point_selection_dset"
-#ifndef NO_LARGE_TESTS
-#define DATASET_LARGE_WRITE_TEST_ALL_DSET_SPACE_RANK 3
-#define DATASET_LARGE_WRITE_TEST_ALL_DSET_DTYPESIZE sizeof(int)
-#define DATASET_LARGE_WRITE_TEST_ALL_DSET_DTYPE H5T_NATIVE_INT
-#define DATASET_LARGE_WRITE_TEST_ALL_GROUP_NAME "dataset_large_write_all_test"
-#define DATASET_LARGE_WRITE_TEST_ALL_DSET_NAME "dataset_large_write_all_dset"
-
-#define DATASET_LARGE_WRITE_TEST_HYPERSLAB_DSET_SPACE_RANK 3
-#define DATASET_LARGE_WRITE_TEST_HYPERSLAB_DSET_DTYPESIZE sizeof(int)
-#define DATASET_LARGE_WRITE_TEST_HYPERSLAB_DSET_DTYPE H5T_NATIVE_INT
-#define DATASET_LARGE_WRITE_TEST_HYPERSLAB_GROUP_NAME "dataset_large_write_hyperslab_test"
-#define DATASET_LARGE_WRITE_TEST_HYPERSLAB_DSET_NAME "dataset_large_write_hyperslab_dset"
-
-#define DATASET_LARGE_WRITE_TEST_POINT_SELECTION_DSET_SPACE_RANK 3
-#define DATASET_LARGE_WRITE_TEST_POINT_SELECTION_DSET_DTYPESIZE sizeof(int)
-#define DATASET_LARGE_WRITE_TEST_POINT_SELECTION_DSET_DTYPE H5T_NATIVE_INT
-#define DATASET_LARGE_WRITE_TEST_POINT_SELECTION_GROUP_NAME "dataset_large_write_point_selection_test"
-#define DATASET_LARGE_WRITE_TEST_POINT_SELECTION_DSET_NAME "dataset_large_write_point_selection_dset"
-#endif
-
#define DATASET_DATA_VERIFY_WRITE_TEST_DSET_SPACE_RANK 3
#define DATASET_DATA_VERIFY_WRITE_TEST_DSET_DTYPESIZE sizeof(int)
#define DATASET_DATA_VERIFY_WRITE_TEST_DSET_DTYPE H5T_NATIVE_INT
diff --git a/test/API/H5_api_datatype_test.c b/test/API/H5_api_datatype_test.c
index 9d53292..8bcd19a 100644
--- a/test/API/H5_api_datatype_test.c
+++ b/test/API/H5_api_datatype_test.c
@@ -2300,16 +2300,13 @@ error:
static int
test_resurrect_datatype(void)
{
-#ifndef NO_ID_PREVENTS_OBJ_DELETE
hid_t file_id = H5I_INVALID_HID;
hid_t container_group = H5I_INVALID_HID;
hid_t group_id = H5I_INVALID_HID;
hid_t type_id = H5I_INVALID_HID;
-#endif /* NO_ID_PREVENTS_OBJ_DELETE */
TESTING("resurrecting datatype after deletion");
-#ifndef NO_ID_PREVENTS_OBJ_DELETE
/* Make sure the connector supports the API functions being tested */
if (!(vol_cap_flags_g & (H5VL_CAP_FLAG_FILE_BASIC)) || !(vol_cap_flags_g & H5VL_CAP_FLAG_GROUP_BASIC) ||
!(vol_cap_flags_g & H5VL_CAP_FLAG_STORED_DATATYPES) ||
@@ -2359,14 +2356,13 @@ test_resurrect_datatype(void)
HDprintf(" failed to delete datatype\n");
goto error;
}
-#ifndef NO_OBJECT_GET_NAME
+
/* Check that datatype name is NULL */
if (H5Iget_name(type_id, NULL, (size_t)0) != 0) {
H5_FAILED();
HDprintf(" deleted datatype name was not NULL!\n");
goto error;
}
-#endif
/* Re-link the datatype to the group hierarchy (shouldn't get deleted now) */
if (H5Lcreate_hard(type_id, ".", group_id, DATATYPE_RESURRECT_TEST_DTYPE_NAME2, H5P_DEFAULT,
@@ -2422,13 +2418,9 @@ test_resurrect_datatype(void)
TEST_ERROR;
PASSED();
-#else /* NO_ID_PREVENTS_OBJ_DELETE */
- SKIPPED();
-#endif /* NO_ID_PREVENTS_OBJ_DELETE */
return 0;
-#ifndef NO_ID_PREVENTS_OBJ_DELETE
error:
H5E_BEGIN_TRY
{
@@ -2440,7 +2432,6 @@ error:
H5E_END_TRY;
return 1;
-#endif /* NO_ID_PREVENTS_OBJ_DELETE */
}
static int
diff --git a/test/API/H5_api_file_test.c b/test/API/H5_api_file_test.c
index 279e9e7..a8169e2 100644
--- a/test/API/H5_api_file_test.c
+++ b/test/API/H5_api_file_test.c
@@ -602,7 +602,7 @@ test_file_permission(void)
!(vol_cap_flags_g & H5VL_CAP_FLAG_DATASET_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_ATTR_BASIC) ||
!(vol_cap_flags_g & H5VL_CAP_FLAG_STORED_DATATYPES)) {
SKIPPED();
- HDprintf(" API functions for basic file, group, dataset, attribute, stored datatype aren't "
+ HDprintf(" API functions for basic file, group, dataset, attribute, or stored datatype aren't "
"supported with this connector\n");
return 0;
}
@@ -1597,8 +1597,9 @@ test_get_file_obj_count(void)
!(vol_cap_flags_g & H5VL_CAP_FLAG_STORED_DATATYPES) ||
!(vol_cap_flags_g & H5VL_CAP_FLAG_ATTR_BASIC)) {
SKIPPED();
- HDprintf(" API functions for basic or more file, basic dataset, group, datatype, or attribute "
- "aren't supported with this connector\n");
+ HDprintf(
+ " API functions for basic or more file, basic dataset, group, stored datatypes, or attribute "
+ "aren't supported with this connector\n");
return 0;
}
@@ -1742,7 +1743,7 @@ test_get_file_obj_count(void)
PART_BEGIN(H5Fget_obj_count_types)
{
TESTING_2("H5Fget_obj_count for datatypes");
-#ifndef WRONG_DATATYPE_OBJ_COUNT
+
/* Get the number of named datatype in two opened files */
if ((obj_count = H5Fget_obj_count((hid_t)H5F_OBJ_ALL, H5F_OBJ_DATATYPE)) < 0) {
H5_FAILED();
@@ -1758,10 +1759,6 @@ test_get_file_obj_count(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Fget_obj_count_types);
-#endif
}
PART_END(H5Fget_obj_count_types);
@@ -1833,7 +1830,7 @@ test_get_file_obj_count(void)
PART_BEGIN(H5Fget_obj_count_all)
{
TESTING_2("H5Fget_obj_count for all object types");
-#ifndef WRONG_DATATYPE_OBJ_COUNT
+
/* Get the number of all open objects */
if ((obj_count = H5Fget_obj_count(H5F_OBJ_ALL, H5F_OBJ_ALL)) < 0) {
H5_FAILED();
@@ -1848,10 +1845,6 @@ test_get_file_obj_count(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Fget_obj_count_all);
-#endif
}
PART_END(H5Fget_obj_count_all);
@@ -1930,7 +1923,6 @@ error:
static int
test_file_open_overlap(void)
{
-#ifndef NO_DOUBLE_OBJECT_OPENS
ssize_t obj_count;
hid_t file_id = H5I_INVALID_HID;
hid_t file_id2 = H5I_INVALID_HID;
@@ -1938,7 +1930,6 @@ test_file_open_overlap(void)
hid_t dspace_id = H5I_INVALID_HID;
hid_t dset_id = H5I_INVALID_HID;
char *prefixed_filename = NULL;
-#endif
TESTING("overlapping file opens");
@@ -1951,7 +1942,6 @@ test_file_open_overlap(void)
return 0;
}
-#ifndef NO_DOUBLE_OBJECT_OPENS
if (prefix_filename(test_path_prefix, OVERLAPPING_FILENAME, &prefixed_filename) < 0) {
H5_FAILED();
HDprintf(" couldn't prefix filename\n");
@@ -2062,10 +2052,6 @@ error:
HDfree(prefixed_filename);
return 1;
-#else
- SKIPPED();
- return 0;
-#endif
}
/*
@@ -2075,12 +2061,10 @@ error:
static int
test_file_mounts(void)
{
-#ifndef NO_FILE_MOUNTS
hid_t file_id = H5I_INVALID_HID;
hid_t child_fid = H5I_INVALID_HID;
hid_t group_id = H5I_INVALID_HID;
char *prefixed_filename = NULL;
-#endif
TESTING("file mounting/unmounting");
@@ -2093,7 +2077,6 @@ test_file_mounts(void)
return 0;
}
-#ifndef NO_FILE_MOUNTS
if (prefix_filename(test_path_prefix, FILE_MOUNT_TEST_FILENAME, &prefixed_filename) < 0) {
H5_FAILED();
HDprintf(" couldn't prefix filename\n");
@@ -2158,10 +2141,6 @@ error:
HDfree(prefixed_filename);
return 1;
-#else
- SKIPPED();
- return 0;
-#endif
}
/*
@@ -2188,8 +2167,9 @@ test_get_file_name(void)
!(vol_cap_flags_g & H5VL_CAP_FLAG_STORED_DATATYPES) ||
!(vol_cap_flags_g & H5VL_CAP_FLAG_ATTR_BASIC)) {
SKIPPED();
- HDprintf(" API functions for basic or more file, basic dataset, group, datatype, or attribute "
- "aren't supported with this connector\n");
+ HDprintf(
+ " API functions for basic or more file, basic dataset, group, stored datatypes, or attribute "
+ "aren't supported with this connector\n");
return 0;
}
@@ -2523,9 +2503,7 @@ cleanup_files(void)
/* The below file should not get created */
/* remove_test_file(test_path_prefix, FILE_CREATE_INVALID_PARAMS_FILE_NAME); */
-#ifndef NO_DOUBLE_OBJECT_OPENS
remove_test_file(test_path_prefix, OVERLAPPING_FILENAME);
-#endif
remove_test_file(test_path_prefix, FILE_PERMISSION_TEST_FILENAME);
remove_test_file(test_path_prefix, FILE_FLUSH_TEST_FILENAME);
remove_test_file(test_path_prefix, FILE_PROPERTY_LIST_TEST_FNAME1);
@@ -2533,9 +2511,7 @@ cleanup_files(void)
remove_test_file(test_path_prefix, FILE_INTENT_TEST_FILENAME);
remove_test_file(test_path_prefix, GET_OBJ_COUNT_TEST_FILENAME1);
remove_test_file(test_path_prefix, GET_OBJ_COUNT_TEST_FILENAME2);
-#ifndef NO_FILE_MOUNTS
remove_test_file(test_path_prefix, FILE_MOUNT_TEST_FILENAME);
-#endif
remove_test_file(test_path_prefix, GET_FILE_NAME_TEST_FNAME);
}
diff --git a/test/API/H5_api_group_test.c b/test/API/H5_api_group_test.c
index f652202..016d988 100644
--- a/test/API/H5_api_group_test.c
+++ b/test/API/H5_api_group_test.c
@@ -1123,7 +1123,7 @@ test_group_property_lists(void)
if (!(vol_cap_flags_g & (H5VL_CAP_FLAG_FILE_BASIC)) || !(vol_cap_flags_g & H5VL_CAP_FLAG_GROUP_BASIC) ||
!(vol_cap_flags_g & H5VL_CAP_FLAG_GET_PLIST) || !(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
SKIPPED();
- HDprintf(" API functions for basic file, group, property list, creation order aren't supported "
+ HDprintf(" API functions for basic file, group, property list, or creation order aren't supported "
"with this connector\n");
return 0;
}
@@ -1393,10 +1393,9 @@ test_get_group_info(void)
/* Make sure the connector supports the API functions being tested */
if (!(vol_cap_flags_g & (H5VL_CAP_FLAG_FILE_BASIC)) || !(vol_cap_flags_g & H5VL_CAP_FLAG_GROUP_BASIC) ||
- !(vol_cap_flags_g & H5VL_CAP_FLAG_GROUP_MORE) || !(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ !(vol_cap_flags_g & H5VL_CAP_FLAG_GROUP_MORE)) {
SKIPPED();
- HDprintf(" API functions for basic file or group, creation order aren't supported with this "
- "connector\n");
+ HDprintf(" API functions for basic file or group aren't supported with this connector\n");
return 0;
}
@@ -1420,10 +1419,12 @@ test_get_group_info(void)
goto error;
}
- if (H5Pset_link_creation_order(gcpl_id, H5P_CRT_ORDER_TRACKED | H5P_CRT_ORDER_INDEXED) < 0) {
- H5_FAILED();
- HDprintf(" couldn't enable link creation order tracking and indexing on GCPL\n");
- goto error;
+ if (vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER) {
+ if (H5Pset_link_creation_order(gcpl_id, H5P_CRT_ORDER_TRACKED | H5P_CRT_ORDER_INDEXED) < 0) {
+ H5_FAILED();
+ HDprintf(" couldn't enable link creation order tracking and indexing on GCPL\n");
+ goto error;
+ }
}
if ((parent_group_id = H5Gcreate2(container_group, GROUP_GET_INFO_TEST_GROUP_NAME, H5P_DEFAULT, gcpl_id,
@@ -1562,6 +1563,12 @@ test_get_group_info(void)
{
TESTING_2("H5Gget_info_by_idx by creation order in increasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Gget_info_by_idx_crt_order_increasing);
+ }
+
for (i = 0; i < GROUP_GET_INFO_TEST_GROUP_NUMB; i++) {
memset(&group_info, 0, sizeof(group_info));
@@ -1613,6 +1620,12 @@ test_get_group_info(void)
{
TESTING_2("H5Gget_info_by_idx by creation order in decreasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Gget_info_by_idx_crt_order_decreasing);
+ }
+
for (i = 0; i < GROUP_GET_INFO_TEST_GROUP_NUMB; i++) {
memset(&group_info, 0, sizeof(group_info));
@@ -1714,7 +1727,7 @@ test_get_group_info(void)
PART_BEGIN(H5Gget_info_by_idx_name_order_decreasing)
{
TESTING_2("H5Gget_info_by_idx by alphabetical order in decreasing order");
-#ifndef NO_DECREASING_ALPHA_ITER_ORDER
+
for (i = 0; i < GROUP_GET_INFO_TEST_GROUP_NUMB; i++) {
memset(&group_info, 0, sizeof(group_info));
@@ -1728,14 +1741,15 @@ test_get_group_info(void)
if (group_info.nlinks != 0) {
H5_FAILED();
- HDprintf(" group's number of links '%lld' doesn't match expected value '%lld'\n",
+ HDprintf(" group's number of links '%" PRIuHSIZE
+ "' doesn't match expected value '%d'\n",
group_info.nlinks, 0);
PART_ERROR(H5Gget_info_by_idx_name_order_decreasing);
}
if (group_info.max_corder != 0) {
H5_FAILED();
- HDprintf(" group's max creation order '%lld' doesn't match expected value '%lld'\n",
+ HDprintf(" group's max creation order '%lld' doesn't match expected value '%d'\n",
(long long)group_info.max_corder, 0);
PART_ERROR(H5Gget_info_by_idx_name_order_decreasing);
}
@@ -1759,10 +1773,6 @@ test_get_group_info(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Gget_info_by_idx_name_order_decreasing);
-#endif
}
PART_END(H5Gget_info_by_idx_name_order_decreasing);
}
@@ -1811,10 +1821,9 @@ test_get_group_info_invalid_params(void)
TESTING_MULTIPART("retrieval of group info with invalid parameters");
/* Make sure the connector supports the API functions being tested */
- if (!(vol_cap_flags_g & (H5VL_CAP_FLAG_FILE_BASIC)) || !(vol_cap_flags_g & H5VL_CAP_FLAG_GROUP_MORE) ||
- !(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ if (!(vol_cap_flags_g & (H5VL_CAP_FLAG_FILE_BASIC)) || !(vol_cap_flags_g & H5VL_CAP_FLAG_GROUP_MORE)) {
SKIPPED();
- HDprintf(" API functions for basic file, more group, creation order aren't supported with this "
+ HDprintf(" API functions for basic file, or more group aren't supported with this "
"connector\n");
return 0;
}
@@ -2172,7 +2181,7 @@ test_flush_group(void)
if (!(vol_cap_flags_g & (H5VL_CAP_FLAG_FILE_BASIC)) || !(vol_cap_flags_g & H5VL_CAP_FLAG_GROUP_BASIC) ||
!(vol_cap_flags_g & H5VL_CAP_FLAG_FLUSH_REFRESH)) {
SKIPPED();
- HDprintf(" API functions for basic file, more group, creation order aren't supported with this "
+ HDprintf(" API functions for basic file, group, or flush refresh aren't supported with this "
"connector\n");
return 0;
}
@@ -2280,8 +2289,8 @@ test_refresh_group(void)
if (!(vol_cap_flags_g & (H5VL_CAP_FLAG_FILE_BASIC)) || !(vol_cap_flags_g & H5VL_CAP_FLAG_GROUP_BASIC) ||
!(vol_cap_flags_g & H5VL_CAP_FLAG_FLUSH_REFRESH)) {
SKIPPED();
- HDprintf(
- " API functions for basic file, group, or refresh aren't supported with this connector\n");
+ HDprintf(" API functions for basic file, group, or flush refresh aren't supported with this "
+ "connector\n");
return 0;
}
diff --git a/test/API/H5_api_link_test.c b/test/API/H5_api_link_test.c
index 9a8c65a..65a3277 100644
--- a/test/API/H5_api_link_test.c
+++ b/test/API/H5_api_link_test.c
@@ -77,57 +77,31 @@ static herr_t link_iter_hard_links_cb(hid_t group_id, const char *name, const H5
void *op_data);
static herr_t link_iter_soft_links_cb(hid_t group_id, const char *name, const H5L_info2_t *info,
void *op_data);
-#ifndef NO_EXTERNAL_LINKS
static herr_t link_iter_external_links_cb(hid_t group_id, const char *name, const H5L_info2_t *info,
void *op_data);
-#endif
-#ifndef NO_USER_DEFINED_LINKS
-static herr_t link_iter_ud_links_cb(hid_t group_id, const char *name, const H5L_info2_t *info, void *op_data);
-#endif
-#if !defined(NO_EXTERNAL_LINKS) && !defined(NO_USER_DEFINED_LINKS)
static herr_t link_iter_mixed_links_cb(hid_t group_id, const char *name, const H5L_info2_t *info,
void *op_data);
-#endif
static herr_t link_iter_invalid_params_cb(hid_t group_id, const char *name, const H5L_info2_t *info,
void *op_data);
static herr_t link_iter_0_links_cb(hid_t group_id, const char *name, const H5L_info2_t *info, void *op_data);
-#if !defined(NO_EXTERNAL_LINKS) && !defined(NO_USER_DEFINED_LINKS)
static herr_t link_iter_idx_saving_cb(hid_t group_id, const char *name, const H5L_info2_t *info,
void *op_data);
-#endif
-
static herr_t link_visit_hard_links_no_cycles_cb(hid_t group_id, const char *name, const H5L_info2_t *info,
void *op_data);
static herr_t link_visit_soft_links_no_cycles_cb(hid_t group_id, const char *name, const H5L_info2_t *info,
void *op_data);
-#ifndef NO_EXTERNAL_LINKS
static herr_t link_visit_external_links_no_cycles_cb(hid_t group_id, const char *name,
const H5L_info2_t *info, void *op_data);
-#endif
-#ifndef NO_USER_DEFINED_LINKS
-static herr_t link_visit_ud_links_no_cycles_cb(hid_t group_id, const char *name, const H5L_info2_t *info,
- void *op_data);
-#endif
-#if !defined(NO_EXTERNAL_LINKS) && !defined(NO_USER_DEFINED_LINKS)
static herr_t link_visit_mixed_links_no_cycles_cb(hid_t group_id, const char *name, const H5L_info2_t *info,
void *op_data);
-#endif
static herr_t link_visit_hard_links_cycles_cb(hid_t group_id, const char *name, const H5L_info2_t *info,
void *op_data);
static herr_t link_visit_soft_links_cycles_cb(hid_t group_id, const char *name, const H5L_info2_t *info,
void *op_data);
-#ifndef NO_EXTERNAL_LINKS
static herr_t link_visit_external_links_cycles_cb(hid_t group_id, const char *name, const H5L_info2_t *info,
void *op_data);
-#endif
-#ifndef NO_USER_DEFINED_LINKS
-static herr_t link_visit_ud_links_cycles_cb(hid_t group_id, const char *name, const H5L_info2_t *info,
- void *op_data);
-#endif
-#if !defined(NO_EXTERNAL_LINKS) && !defined(NO_USER_DEFINED_LINKS)
static herr_t link_visit_mixed_links_cycles_cb(hid_t group_id, const char *name, const H5L_info2_t *info,
void *op_data);
-#endif
static herr_t link_visit_invalid_params_cb(hid_t group_id, const char *name, const H5L_info2_t *info,
void *op_data);
static herr_t link_visit_0_links_cb(hid_t group_id, const char *name, const H5L_info2_t *info, void *op_data);
@@ -211,7 +185,7 @@ test_create_hard_link(void)
if (!(vol_cap_flags_g & H5VL_CAP_FLAG_FILE_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_GROUP_BASIC) ||
!(vol_cap_flags_g & H5VL_CAP_FLAG_LINK_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_HARD_LINKS)) {
SKIPPED();
- HDprintf(" API functions for basic file or group, basic or hard link aren't supported with this "
+ HDprintf(" API functions for basic file, group, link, or hard link aren't supported with this "
"connector\n");
return 0;
}
@@ -298,7 +272,7 @@ test_create_hard_link_long_name(void)
if (!(vol_cap_flags_g & H5VL_CAP_FLAG_FILE_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_GROUP_BASIC) ||
!(vol_cap_flags_g & H5VL_CAP_FLAG_LINK_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_HARD_LINKS)) {
SKIPPED();
- HDprintf(" API functions for basic file or group, basic or hard link aren't supported with this "
+ HDprintf(" API functions for basic file, group, link, or hard link aren't supported with this "
"connector\n");
return 0;
}
@@ -400,9 +374,7 @@ test_create_hard_link_many(void)
hid_t file_id = H5I_INVALID_HID;
hid_t container_group = H5I_INVALID_HID;
hid_t group_id = H5I_INVALID_HID, group_id2 = H5I_INVALID_HID;
-#ifndef NO_OBJECT_GET_NAME
- char objname[HARD_LINK_TEST_GROUP_MANY_NAME_BUF_SIZE]; /* Object name */
-#endif
+ char objname[HARD_LINK_TEST_GROUP_MANY_NAME_BUF_SIZE]; /* Object name */
TESTING("hard link creation of many links");
@@ -411,7 +383,7 @@ test_create_hard_link_many(void)
!(vol_cap_flags_g & H5VL_CAP_FLAG_HARD_LINKS)) {
SKIPPED();
HDprintf(
- " API functions for basic file or group, or hard link aren't supported with this connector\n");
+ " API functions for basic file, group, or hard link aren't supported with this connector\n");
return 0;
}
@@ -533,7 +505,6 @@ test_create_hard_link_many(void)
HARD_LINK_TEST_GROUP_MANY_FINAL_NAME);
goto error;
}
-#ifndef NO_OBJECT_GET_NAME
/* Check name */
if (H5Iget_name(group_id2, objname, (size_t)HARD_LINK_TEST_GROUP_MANY_NAME_BUF_SIZE) < 0) {
H5_FAILED();
@@ -546,7 +517,6 @@ test_create_hard_link_many(void)
HDprintf(" wrong name of the object '%s'\n", objname);
goto error;
}
-#endif
if (H5Gclose(group_id) < 0)
TEST_ERROR;
@@ -591,7 +561,7 @@ test_create_hard_link_same_loc(void)
if (!(vol_cap_flags_g & H5VL_CAP_FLAG_FILE_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_GROUP_BASIC) ||
!(vol_cap_flags_g & H5VL_CAP_FLAG_LINK_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_HARD_LINKS)) {
SKIPPED();
- HDprintf(" API functions for basic file or group, basic or hard link aren't supported with this "
+ HDprintf(" API functions for basic file, group, link, or hard link aren't supported with this "
"connector\n");
return 0;
}
@@ -716,10 +686,8 @@ test_create_hard_link_invalid_params(void)
htri_t link_exists;
hid_t file_id = H5I_INVALID_HID;
hid_t container_group = H5I_INVALID_HID, group_id = H5I_INVALID_HID;
-#ifndef NO_PREVENT_HARD_LINKS_ACROSS_FILES
- char ext_link_filename[H5_API_TEST_FILENAME_MAX_LENGTH];
-#endif
- hid_t ext_file_id = H5I_INVALID_HID;
+ char ext_link_filename[H5_API_TEST_FILENAME_MAX_LENGTH];
+ hid_t ext_file_id = H5I_INVALID_HID;
TESTING_MULTIPART("hard link creation with invalid parameters");
@@ -727,7 +695,7 @@ test_create_hard_link_invalid_params(void)
if (!(vol_cap_flags_g & H5VL_CAP_FLAG_FILE_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_GROUP_BASIC) ||
!(vol_cap_flags_g & H5VL_CAP_FLAG_LINK_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_HARD_LINKS)) {
SKIPPED();
- HDprintf(" API functions for basic file or group, basic or hard link aren't supported with this "
+ HDprintf(" API functions for basic file, group, link, or hard link aren't supported with this "
"connector\n");
return 0;
}
@@ -931,7 +899,7 @@ test_create_hard_link_invalid_params(void)
PART_BEGIN(H5Lcreate_hard_across_files)
{
TESTING_2("H5Lcreate_hard across files");
-#ifndef NO_PREVENT_HARD_LINKS_ACROSS_FILES
+
HDsnprintf(ext_link_filename, H5_API_TEST_FILENAME_MAX_LENGTH, "%s",
EXTERNAL_LINK_TEST_FILE_NAME);
@@ -968,10 +936,6 @@ test_create_hard_link_invalid_params(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Lcreate_hard_across_files);
-#endif
}
PART_END(H5Lcreate_hard_across_files);
@@ -1001,10 +965,9 @@ test_create_hard_link_invalid_params(void)
END_MULTIPART;
TESTING_2("test cleanup");
-#ifndef NO_PREVENT_HARD_LINKS_ACROSS_FILES
+
if (H5Fclose(ext_file_id) < 0)
TEST_ERROR;
-#endif
if (H5Gclose(group_id) < 0)
TEST_ERROR;
if (H5Gclose(container_group) < 0)
@@ -1047,7 +1010,7 @@ test_create_soft_link_existing_relative(void)
if (!(vol_cap_flags_g & H5VL_CAP_FLAG_FILE_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_GROUP_BASIC) ||
!(vol_cap_flags_g & H5VL_CAP_FLAG_LINK_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_SOFT_LINKS)) {
SKIPPED();
- HDprintf(" API functions for basic file or group, basic or soft link aren't supported with this "
+ HDprintf(" API functions for basic file, group, link, or soft link aren't supported with this "
"connector\n");
return 0;
}
@@ -1153,7 +1116,7 @@ test_create_soft_link_existing_absolute(void)
if (!(vol_cap_flags_g & H5VL_CAP_FLAG_FILE_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_GROUP_BASIC) ||
!(vol_cap_flags_g & H5VL_CAP_FLAG_LINK_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_SOFT_LINKS)) {
SKIPPED();
- HDprintf(" API functions for basic file or group, basic or soft link aren't supported with this "
+ HDprintf(" API functions for basic file, group, link, or soft link aren't supported with this "
"connector\n");
return 0;
}
@@ -1250,7 +1213,7 @@ test_create_soft_link_dangling_relative(void)
if (!(vol_cap_flags_g & H5VL_CAP_FLAG_FILE_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_GROUP_BASIC) ||
!(vol_cap_flags_g & H5VL_CAP_FLAG_LINK_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_SOFT_LINKS)) {
SKIPPED();
- HDprintf(" API functions for basic file or group, basic or soft link aren't supported with this "
+ HDprintf(" API functions for basic file, group, link, or soft link aren't supported with this "
"connector\n");
return 0;
}
@@ -1371,7 +1334,7 @@ test_create_soft_link_dangling_absolute(void)
if (!(vol_cap_flags_g & H5VL_CAP_FLAG_FILE_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_GROUP_BASIC) ||
!(vol_cap_flags_g & H5VL_CAP_FLAG_LINK_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_SOFT_LINKS)) {
SKIPPED();
- HDprintf(" API functions for basic file or group, basic or soft link aren't supported with this "
+ HDprintf(" API functions for basic file, group, link, or soft link aren't supported with this "
"connector\n");
return 0;
}
@@ -1495,7 +1458,7 @@ test_create_soft_link_long_name(void)
if (!(vol_cap_flags_g & H5VL_CAP_FLAG_FILE_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_GROUP_BASIC) ||
!(vol_cap_flags_g & H5VL_CAP_FLAG_LINK_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_SOFT_LINKS)) {
SKIPPED();
- HDprintf(" API functions for basic file or group, basic or soft link aren't supported with this "
+ HDprintf(" API functions for basic file, group, link, or soft link aren't supported with this "
"connector\n");
return 0;
}
@@ -1593,16 +1556,12 @@ error:
static int
test_create_soft_link_many(void)
{
-#ifndef NO_SOFT_LINK_MANY_DANGLING
htri_t link_exists;
hid_t file_id = H5I_INVALID_HID;
hid_t container_group = H5I_INVALID_HID;
hid_t group_id = H5I_INVALID_HID;
hid_t object_id = H5I_INVALID_HID;
-#ifndef NO_OBJECT_GET_NAME
- char objname[SOFT_LINK_TEST_GROUP_MANY_NAME_BUF_SIZE]; /* Object name */
-#endif
-#endif
+ char objname[SOFT_LINK_TEST_GROUP_MANY_NAME_BUF_SIZE]; /* Object name */
TESTING("soft link creation of many links");
@@ -1610,12 +1569,11 @@ test_create_soft_link_many(void)
if (!(vol_cap_flags_g & H5VL_CAP_FLAG_FILE_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_GROUP_BASIC) ||
!(vol_cap_flags_g & H5VL_CAP_FLAG_LINK_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_SOFT_LINKS)) {
SKIPPED();
- HDprintf(" API functions for basic file or group, basic or soft link aren't supported with this "
+ HDprintf(" API functions for basic file, group, link, or soft link aren't supported with this "
"connector\n");
return 0;
}
-#ifndef NO_SOFT_LINK_MANY_DANGLING
if ((file_id = H5Fopen(H5_api_test_filename, H5F_ACC_RDWR, H5P_DEFAULT)) < 0) {
H5_FAILED();
HDprintf(" couldn't open file '%s'\n", H5_api_test_filename);
@@ -1745,7 +1703,6 @@ test_create_soft_link_many(void)
HDprintf(" failed to open object pointed to by soft link '%s'\n", SOFT_LINK_TEST_GROUP_MANY_NAME);
goto error;
}
-#ifndef NO_OBJECT_GET_NAME
/* Check name */
if (H5Iget_name(object_id, objname, (size_t)SOFT_LINK_TEST_GROUP_MANY_NAME_BUF_SIZE) < 0) {
H5_FAILED();
@@ -1758,7 +1715,6 @@ test_create_soft_link_many(void)
HDprintf(" wrong name of the object '%s'\n", objname);
goto error;
}
-#endif
if (H5Gclose(object_id) < 0)
TEST_ERROR;
@@ -1784,10 +1740,6 @@ error:
H5E_END_TRY;
return 1;
-#else
- SKIPPED();
- return 0;
-#endif
}
/*
@@ -1808,7 +1760,8 @@ test_create_soft_link_invalid_params(void)
if (!(vol_cap_flags_g & H5VL_CAP_FLAG_FILE_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_GROUP_BASIC) ||
!(vol_cap_flags_g & H5VL_CAP_FLAG_SOFT_LINKS)) {
SKIPPED();
- HDprintf(" API functions for basic file, group, or link aren't supported with this connector\n");
+ HDprintf(
+ " API functions for basic file, group, or soft link aren't supported with this connector\n");
return 0;
}
@@ -1954,7 +1907,7 @@ test_create_soft_link_invalid_params(void)
PART_BEGIN(H5Lcreate_soft_invalid_lapl)
{
TESTING_2("H5Lcreate_soft with an invalid LAPL");
-#ifndef NO_INVALID_PROPERTY_LIST_TESTS
+
H5E_BEGIN_TRY
{
err_ret = H5Lcreate_soft("/", group_id, SOFT_LINK_INVALID_PARAMS_TEST_LINK_NAME, H5P_DEFAULT,
@@ -1970,10 +1923,6 @@ test_create_soft_link_invalid_params(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Lcreate_soft_invalid_lapl);
-#endif
}
PART_END(H5Lcreate_soft_invalid_lapl);
@@ -2034,13 +1983,11 @@ error:
static int
test_create_external_link(void)
{
-#ifndef NO_EXTERNAL_LINKS
htri_t link_exists;
hid_t file_id = H5I_INVALID_HID;
hid_t container_group = H5I_INVALID_HID, group_id = H5I_INVALID_HID;
hid_t root_id = H5I_INVALID_HID;
char ext_link_filename[H5_API_TEST_FILENAME_MAX_LENGTH];
-#endif
TESTING("external link creation to existing object");
@@ -2048,12 +1995,11 @@ test_create_external_link(void)
if (!(vol_cap_flags_g & H5VL_CAP_FLAG_FILE_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_GROUP_BASIC) ||
!(vol_cap_flags_g & H5VL_CAP_FLAG_LINK_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_EXTERNAL_LINKS)) {
SKIPPED();
- HDprintf(" API functions for basic file, group, basic link, or external link aren't supported "
+ HDprintf(" API functions for basic file, group, link, or external link aren't supported "
"with this connector\n");
return 0;
}
-#ifndef NO_EXTERNAL_LINKS
HDsnprintf(ext_link_filename, H5_API_TEST_FILENAME_MAX_LENGTH, "%s", EXTERNAL_LINK_TEST_FILE_NAME);
if ((file_id = H5Fcreate(ext_link_filename, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT)) < 0) {
@@ -2135,10 +2081,6 @@ error:
H5E_END_TRY;
return 1;
-#else
- SKIPPED();
- return 0;
-#endif
}
/*
@@ -2149,22 +2091,19 @@ error:
static int
test_create_external_link_dangling(void)
{
-#ifndef NO_EXTERNAL_LINKS
htri_t link_exists;
hid_t file_id = H5I_INVALID_HID, ext_file_id = H5I_INVALID_HID;
hid_t container_group = H5I_INVALID_HID, group_id = H5I_INVALID_HID;
hid_t object_id = H5I_INVALID_HID;
char ext_link_filename[H5_API_TEST_FILENAME_MAX_LENGTH];
-#endif
TESTING("dangling external link creation");
-#ifndef NO_EXTERNAL_LINKS
/* Make sure the connector supports the API functions being tested */
if (!(vol_cap_flags_g & H5VL_CAP_FLAG_FILE_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_GROUP_BASIC) ||
!(vol_cap_flags_g & H5VL_CAP_FLAG_LINK_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_EXTERNAL_LINKS)) {
SKIPPED();
- HDprintf(" API functions for basic file, group, basic link, or external link aren't supported "
+ HDprintf(" API functions for basic file, group, link, or external link aren't supported "
"with this connector\n");
return 0;
}
@@ -2275,10 +2214,6 @@ error:
H5E_END_TRY;
return 1;
-#else
- SKIPPED();
- return 0;
-#endif
}
/*
@@ -2288,7 +2223,6 @@ error:
static int
test_create_external_link_multi(void)
{
-#ifndef NO_EXTERNAL_LINKS
hid_t file_id = H5I_INVALID_HID;
hid_t container_group = H5I_INVALID_HID, group_id = H5I_INVALID_HID;
hid_t group_id2 = H5I_INVALID_HID, group_id3 = H5I_INVALID_HID;
@@ -2297,11 +2231,9 @@ test_create_external_link_multi(void)
char ext_link_filename2[H5_API_TEST_FILENAME_MAX_LENGTH];
char ext_link_filename3[H5_API_TEST_FILENAME_MAX_LENGTH];
char objname[EXTERNAL_LINK_TEST_MULTI_NAME_BUF_SIZE];
-#endif
TESTING_MULTIPART("external link creation to an object across several files");
-#ifndef NO_EXTERNAL_LINKS
/* Make sure the connector supports the API functions being tested */
if (!(vol_cap_flags_g & H5VL_CAP_FLAG_FILE_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_GROUP_BASIC) ||
!(vol_cap_flags_g & H5VL_CAP_FLAG_EXTERNAL_LINKS)) {
@@ -2644,10 +2576,6 @@ error:
H5E_END_TRY;
return 1;
-#else
- SKIPPED();
- return 0;
-#endif
}
/*
@@ -2664,18 +2592,15 @@ error:
static int
test_create_external_link_ping_pong(void)
{
-#ifndef NO_EXTERNAL_LINKS
hid_t file_id = H5I_INVALID_HID;
hid_t group_id = H5I_INVALID_HID;
hid_t group_id2 = H5I_INVALID_HID;
char ext_link_filename1[H5_API_TEST_FILENAME_MAX_LENGTH];
char ext_link_filename2[H5_API_TEST_FILENAME_MAX_LENGTH];
char objname[EXTERNAL_LINK_TEST_MULTI_NAME_BUF_SIZE];
-#endif
TESTING_MULTIPART("external link creation to an object in ping pong style");
-#ifndef NO_EXTERNAL_LINKS
/* Make sure the connector supports the API functions being tested */
if (!(vol_cap_flags_g & H5VL_CAP_FLAG_FILE_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_GROUP_BASIC) ||
!(vol_cap_flags_g & H5VL_CAP_FLAG_EXTERNAL_LINKS)) {
@@ -2913,10 +2838,6 @@ error:
H5E_END_TRY;
return 1;
-#else
- SKIPPED();
- return 0;
-#endif
}
/*
@@ -2938,7 +2859,7 @@ test_create_external_link_invalid_params(void)
if (!(vol_cap_flags_g & H5VL_CAP_FLAG_FILE_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_GROUP_BASIC) ||
!(vol_cap_flags_g & H5VL_CAP_FLAG_LINK_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_EXTERNAL_LINKS)) {
SKIPPED();
- HDprintf(" API functions for basic file, group, or basic link or external link aren't supported "
+ HDprintf(" API functions for basic file, group, link, or external link aren't supported "
"with this connector\n");
return 0;
}
@@ -3215,23 +3136,21 @@ error:
static int
test_create_user_defined_link(void)
{
-#ifndef NO_USER_DEFINED_LINKS
ssize_t udata_size;
htri_t link_exists;
hid_t file_id = H5I_INVALID_HID;
hid_t container_group = H5I_INVALID_HID, group_id = H5I_INVALID_HID;
char udata[UD_LINK_TEST_UDATA_MAX_SIZE];
-#endif
TESTING("user-defined link creation");
-#ifndef NO_USER_DEFINED_LINKS
/* Make sure the connector supports the API functions being tested */
if (!(vol_cap_flags_g & H5VL_CAP_FLAG_FILE_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_GROUP_BASIC) ||
!(vol_cap_flags_g & H5VL_CAP_FLAG_LINK_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_UD_LINKS)) {
SKIPPED();
- HDprintf(" API functions for basic file, group, or user-defined link aren't supported with this "
- "connector\n");
+ HDprintf(
+ " API functions for basic file, group, link, or user-defined link aren't supported with this "
+ "connector\n");
return 0;
}
@@ -3298,10 +3217,6 @@ error:
H5E_END_TRY;
return 1;
-#else
- SKIPPED();
- return 0;
-#endif
}
/*
@@ -3324,7 +3239,8 @@ test_create_user_defined_link_invalid_params(void)
if (!(vol_cap_flags_g & H5VL_CAP_FLAG_FILE_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_GROUP_BASIC) ||
!(vol_cap_flags_g & H5VL_CAP_FLAG_UD_LINKS)) {
SKIPPED();
- HDprintf(" API functions for basic file, group, or link aren't supported with this connector\n");
+ HDprintf(" API functions for basic file, group, or user-defined link aren't supported with this "
+ "connector\n");
return 0;
}
@@ -3565,9 +3481,7 @@ test_delete_link(void)
hid_t subgroup_id = H5I_INVALID_HID;
hid_t nested_grp_id = H5I_INVALID_HID;
hid_t gcpl_id = H5I_INVALID_HID;
-#ifndef NO_EXTERNAL_LINKS
- char ext_link_filename[H5_API_TEST_FILENAME_MAX_LENGTH];
-#endif
+ char ext_link_filename[H5_API_TEST_FILENAME_MAX_LENGTH];
TESTING_MULTIPART("link deletion");
@@ -3575,10 +3489,10 @@ test_delete_link(void)
if (!(vol_cap_flags_g & H5VL_CAP_FLAG_FILE_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_GROUP_BASIC) ||
!(vol_cap_flags_g & H5VL_CAP_FLAG_LINK_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_LINK_MORE) ||
!(vol_cap_flags_g & H5VL_CAP_FLAG_HARD_LINKS) || !(vol_cap_flags_g & H5VL_CAP_FLAG_EXTERNAL_LINKS) ||
- !(vol_cap_flags_g & H5VL_CAP_FLAG_SOFT_LINKS) || !(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ !(vol_cap_flags_g & H5VL_CAP_FLAG_SOFT_LINKS)) {
SKIPPED();
- HDprintf(" API functions for basic file, group, or link, hard, soft, or external link aren't "
- "supported with this connector\n");
+ HDprintf(" API functions for basic file, group, link, hard link, soft link, or external link "
+ "aren't supported with this connector\n");
return 0;
}
@@ -3602,10 +3516,12 @@ test_delete_link(void)
goto error;
}
- if (H5Pset_link_creation_order(gcpl_id, H5P_CRT_ORDER_TRACKED) < 0) {
- H5_FAILED();
- HDprintf(" couldn't set link creation order tracking\n");
- goto error;
+ if (vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER) {
+ if (H5Pset_link_creation_order(gcpl_id, H5P_CRT_ORDER_TRACKED) < 0) {
+ H5_FAILED();
+ HDprintf(" couldn't set link creation order tracking\n");
+ goto error;
+ }
}
if ((group_id = H5Gcreate2(container_group, LINK_DELETE_TEST_SUBGROUP_NAME, H5P_DEFAULT, gcpl_id,
@@ -3842,7 +3758,7 @@ test_delete_link(void)
PART_BEGIN(H5Ldelete_external)
{
TESTING_2("H5Ldelete on external link");
-#ifndef NO_EXTERNAL_LINKS
+
HDsnprintf(ext_link_filename, H5_API_TEST_FILENAME_MAX_LENGTH, "%s",
EXTERNAL_LINK_TEST_FILE_NAME);
@@ -3915,10 +3831,6 @@ test_delete_link(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Ldelete_external);
-#endif
}
PART_END(H5Ldelete_external);
@@ -3953,6 +3865,12 @@ test_delete_link(void)
{
TESTING_2("H5Ldelete_by_idx on hard link by creation order in increasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Ldelete_by_idx_hard_crt_order_increasing);
+ }
+
if ((subgroup_id = H5Gcreate2(group_id, LINK_DELETE_TEST_SUBGROUP5_NAME, H5P_DEFAULT, gcpl_id,
H5P_DEFAULT)) < 0) {
H5_FAILED();
@@ -4193,6 +4111,12 @@ test_delete_link(void)
{
TESTING_2("H5Ldelete_by_idx on hard link by creation order in decreasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Ldelete_by_idx_hard_crt_order_decreasing);
+ }
+
if ((subgroup_id = H5Gcreate2(group_id, LINK_DELETE_TEST_SUBGROUP6_NAME, H5P_DEFAULT, gcpl_id,
H5P_DEFAULT)) < 0) {
H5_FAILED();
@@ -4672,7 +4596,7 @@ test_delete_link(void)
PART_BEGIN(H5Ldelete_by_idx_hard_name_order_decreasing)
{
TESTING_2("H5Ldelete_by_idx on hard link by alphabetical order in decreasing order");
-#ifndef NO_DECREASING_ALPHA_ITER_ORDER
+
if ((subgroup_id = H5Gcreate2(group_id, LINK_DELETE_TEST_SUBGROUP8_NAME, H5P_DEFAULT, gcpl_id,
H5P_DEFAULT)) < 0) {
H5_FAILED();
@@ -4899,10 +4823,6 @@ test_delete_link(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Ldelete_by_idx_hard_name_order_decreasing);
-#endif
}
PART_END(H5Ldelete_by_idx_hard_name_order_decreasing);
@@ -4917,6 +4837,12 @@ test_delete_link(void)
{
TESTING_2("H5Ldelete_by_idx on soft link by creation order in increasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Ldelete_by_idx_soft_crt_order_increasing);
+ }
+
if ((subgroup_id = H5Gcreate2(group_id, LINK_DELETE_TEST_SUBGROUP9_NAME, H5P_DEFAULT, gcpl_id,
H5P_DEFAULT)) < 0) {
H5_FAILED();
@@ -5160,6 +5086,12 @@ test_delete_link(void)
{
TESTING_2("H5Ldelete_by_idx on soft link by creation order in decreasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Ldelete_by_idx_soft_crt_order_decreasing);
+ }
+
if ((subgroup_id = H5Gcreate2(group_id, LINK_DELETE_TEST_SUBGROUP10_NAME, H5P_DEFAULT, gcpl_id,
H5P_DEFAULT)) < 0) {
H5_FAILED();
@@ -5645,7 +5577,7 @@ test_delete_link(void)
PART_BEGIN(H5Ldelete_by_idx_soft_name_order_decreasing)
{
TESTING_2("H5Ldelete_by_idx on soft link by alphabetical order in decreasing order");
-#ifndef NO_DECREASING_ALPHA_ITER_ORDER
+
if ((subgroup_id = H5Gcreate2(group_id, LINK_DELETE_TEST_SUBGROUP12_NAME, H5P_DEFAULT, gcpl_id,
H5P_DEFAULT)) < 0) {
H5_FAILED();
@@ -5875,10 +5807,6 @@ test_delete_link(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Ldelete_by_idx_soft_name_order_decreasing);
-#endif
}
PART_END(H5Ldelete_by_idx_soft_name_order_decreasing);
@@ -5892,7 +5820,13 @@ test_delete_link(void)
PART_BEGIN(H5Ldelete_by_idx_external_crt_order_increasing)
{
TESTING_2("H5Ldelete_by_idx on external link by creation order in increasing order");
-#ifndef NO_EXTERNAL_LINKS
+
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Ldelete_by_idx_external_crt_order_increasing);
+ }
+
/* Create file for external link to reference */
HDsnprintf(ext_link_filename, H5_API_TEST_FILENAME_MAX_LENGTH, "%s",
EXTERNAL_LINK_TEST_FILE_NAME);
@@ -6153,10 +6087,6 @@ test_delete_link(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Ldelete_by_idx_external_crt_order_increasing);
-#endif
}
PART_END(H5Ldelete_by_idx_external_crt_order_increasing);
@@ -6172,7 +6102,13 @@ test_delete_link(void)
PART_BEGIN(H5Ldelete_by_idx_external_crt_order_decreasing)
{
TESTING_2("H5Ldelete_by_idx on external link by creation order in decreasing order");
-#ifndef NO_EXTERNAL_LINKS
+
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Ldelete_by_idx_external_crt_order_decreasing);
+ }
+
/* Create file for external link to reference */
HDsnprintf(ext_link_filename, H5_API_TEST_FILENAME_MAX_LENGTH, "%s",
EXTERNAL_LINK_TEST_FILE_NAME);
@@ -6433,10 +6369,6 @@ test_delete_link(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Ldelete_by_idx_external_crt_order_decreasing);
-#endif
}
PART_END(H5Ldelete_by_idx_external_crt_order_decreasing);
@@ -6452,7 +6384,7 @@ test_delete_link(void)
PART_BEGIN(H5Ldelete_by_idx_external_name_order_increasing)
{
TESTING_2("H5Ldelete_by_idx on external link by alphabetical order in increasing order");
-#ifndef NO_EXTERNAL_LINKS
+
/* Create file for external link to reference */
HDsnprintf(ext_link_filename, H5_API_TEST_FILENAME_MAX_LENGTH, "%s",
EXTERNAL_LINK_TEST_FILE_NAME);
@@ -6713,10 +6645,6 @@ test_delete_link(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Ldelete_by_idx_external_name_order_increasing);
-#endif
}
PART_END(H5Ldelete_by_idx_external_name_order_increasing);
@@ -6732,7 +6660,7 @@ test_delete_link(void)
PART_BEGIN(H5Ldelete_by_idx_external_name_order_decreasing)
{
TESTING_2("H5Ldelete_by_idx on external link by alphabetical order in decreasing order");
-#ifndef NO_DECREASING_ALPHA_ITER_ORDER
+
/* Create file for external link to reference */
HDsnprintf(ext_link_filename, H5_API_TEST_FILENAME_MAX_LENGTH, "%s",
EXTERNAL_LINK_TEST_FILE_NAME);
@@ -6993,10 +6921,6 @@ test_delete_link(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Ldelete_by_idx_external_name_order_decreasing);
-#endif
}
PART_END(H5Ldelete_by_idx_external_name_order_decreasing);
@@ -7121,7 +7045,6 @@ error:
static int
test_delete_link_reset_grp_max_crt_order(void)
{
-#ifndef NO_MAX_LINK_CRT_ORDER_RESET
H5G_info_t grp_info;
size_t i;
hid_t file_id = H5I_INVALID_HID;
@@ -7129,20 +7052,19 @@ test_delete_link_reset_grp_max_crt_order(void)
hid_t subgroup_id = H5I_INVALID_HID;
hid_t gcpl_id = H5I_INVALID_HID;
char link_name[LINK_DELETE_RESET_MAX_CRT_ORDER_TEST_BUF_SIZE];
-#endif
TESTING_MULTIPART("H5Ldelete of all links in group resets group's maximum link creation order value");
/* Make sure the connector supports the API functions being tested */
if (!(vol_cap_flags_g & H5VL_CAP_FLAG_FILE_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_GROUP_BASIC) ||
- !(vol_cap_flags_g & H5VL_CAP_FLAG_LINK_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_GROUP_MORE)) {
+ !(vol_cap_flags_g & H5VL_CAP_FLAG_LINK_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_GROUP_MORE) ||
+ !(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
SKIPPED();
- HDprintf(" API functions for basic file, basic and more group, or basic link aren't supported "
- "with this connector\n");
+ HDprintf(" API functions for basic file, group, link, or creation order "
+ "aren't supported with this connector\n");
return 0;
}
-#ifndef NO_MAX_LINK_CRT_ORDER_RESET
TESTING_2("test setup");
if ((file_id = H5Fopen(H5_api_test_filename, H5F_ACC_RDWR, H5P_DEFAULT)) < 0) {
@@ -7217,7 +7139,7 @@ test_delete_link_reset_grp_max_crt_order(void)
if (grp_info.max_corder != LINK_DELETE_RESET_MAX_CRT_ORDER_TEST_NUM_LINKS) {
H5_FAILED();
HDprintf(" group's maximum creation order value got adjusted to %lld during link "
- "deletion; value should have remained at %lld\n",
+ "deletion; value should have remained at %d\n",
(long long)grp_info.max_corder, LINK_DELETE_RESET_MAX_CRT_ORDER_TEST_NUM_LINKS);
PART_ERROR(H5Ldelete_links_bottom_up);
}
@@ -7296,7 +7218,7 @@ test_delete_link_reset_grp_max_crt_order(void)
if (grp_info.max_corder != LINK_DELETE_RESET_MAX_CRT_ORDER_TEST_NUM_LINKS) {
H5_FAILED();
HDprintf(" group's maximum creation order value got adjusted to %lld during link "
- "deletion; value should have remained at %lld\n",
+ "deletion; value should have remained at %d\n",
(long long)grp_info.max_corder, LINK_DELETE_RESET_MAX_CRT_ORDER_TEST_NUM_LINKS);
PART_ERROR(H5Ldelete_links_top_down);
}
@@ -7369,10 +7291,6 @@ error:
H5E_END_TRY;
return 1;
-#else
- SKIPPED();
- return 0;
-#endif
}
static int
@@ -7390,7 +7308,8 @@ test_delete_link_invalid_params(void)
!(vol_cap_flags_g & H5VL_CAP_FLAG_LINK_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_BY_IDX) ||
!(vol_cap_flags_g & H5VL_CAP_FLAG_HARD_LINKS)) {
SKIPPED();
- HDprintf(" API functions for basic file, group, or link aren't supported with this connector\n");
+ HDprintf(" API functions for basic file, group, link, flag by index, or hard link aren't "
+ "supported with this connector\n");
return 0;
}
@@ -7497,7 +7416,7 @@ test_delete_link_invalid_params(void)
PART_BEGIN(H5Ldelete_invalid_lapl)
{
TESTING_2("H5Ldelete with an invalid LAPL");
-#ifndef NO_INVALID_PROPERTY_LIST_TESTS
+
H5E_BEGIN_TRY
{
err_ret =
@@ -7512,10 +7431,6 @@ test_delete_link_invalid_params(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Ldelete_invalid_lapl);
-#endif
}
PART_END(H5Ldelete_invalid_lapl);
@@ -7638,7 +7553,7 @@ test_delete_link_invalid_params(void)
PART_BEGIN(H5Ldelete_by_idx_invalid_lapl)
{
TESTING_2("H5Ldelete_by_idx with an invalid LAPL");
-#ifndef NO_INVALID_PROPERTY_LIST_TESTS
+
H5E_BEGIN_TRY
{
err_ret = H5Ldelete_by_idx(group_id, ".", H5_INDEX_NAME, H5_ITER_INC, 0, H5I_INVALID_HID);
@@ -7652,10 +7567,6 @@ test_delete_link_invalid_params(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Ldelete_by_idx_invalid_lapl);
-#endif
}
PART_END(H5Ldelete_by_idx_invalid_lapl);
@@ -7719,9 +7630,7 @@ test_copy_link(void)
hid_t file_id = H5I_INVALID_HID, ext_file_id = H5I_INVALID_HID;
hid_t container_group = H5I_INVALID_HID, group_id = H5I_INVALID_HID;
hid_t src_grp_id = H5I_INVALID_HID, dst_grp_id = H5I_INVALID_HID;
-#ifndef NO_EXTERNAL_LINKS
- char ext_link_filename[H5_API_TEST_FILENAME_MAX_LENGTH];
-#endif
+ char ext_link_filename[H5_API_TEST_FILENAME_MAX_LENGTH];
TESTING_MULTIPART("link copying");
@@ -7731,8 +7640,9 @@ test_copy_link(void)
!(vol_cap_flags_g & H5VL_CAP_FLAG_HARD_LINKS) || !(vol_cap_flags_g & H5VL_CAP_FLAG_EXTERNAL_LINKS) ||
!(vol_cap_flags_g & H5VL_CAP_FLAG_SOFT_LINKS)) {
SKIPPED();
- HDprintf(" API functions for basic file, group, or link, hard, soft, or external link aren't "
- "supported with this connector\n");
+ HDprintf(
+ " API functions for basic file, group, link, hard link, soft link, or external link aren't "
+ "supported with this connector\n");
return 0;
}
@@ -7960,19 +7870,22 @@ test_copy_link(void)
PART_ERROR(H5Lcopy_hard_check);
}
- if (new_info.corder_valid != orig_info.corder_valid) {
- H5_FAILED();
- HDprintf(" copied link's 'corder_valid' field doesn't match original link's "
- "'corder_valid' field\n");
- PART_ERROR(H5Lcopy_hard_check);
- }
+ if (vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER) {
+ if (new_info.corder_valid != orig_info.corder_valid) {
+ H5_FAILED();
+ HDprintf(" copied link's 'corder_valid' field doesn't match original link's "
+ "'corder_valid' field\n");
+ PART_ERROR(H5Lcopy_hard_check);
+ }
- if (new_info.corder_valid && orig_info.corder_valid && (new_info.corder != orig_info.corder)) {
- H5_FAILED();
- HDprintf(" copied link's creation order value %" PRId64
- " doesn't match original link's creation order value %" PRId64 "\n",
- new_info.corder, orig_info.corder);
- PART_ERROR(H5Lcopy_hard_check);
+ if (new_info.corder_valid && orig_info.corder_valid &&
+ (new_info.corder != orig_info.corder)) {
+ H5_FAILED();
+ HDprintf(" copied link's creation order value %" PRId64
+ " doesn't match original link's creation order value %" PRId64 "\n",
+ new_info.corder, orig_info.corder);
+ PART_ERROR(H5Lcopy_hard_check);
+ }
}
if (new_info.cset != orig_info.cset) {
@@ -8295,19 +8208,22 @@ test_copy_link(void)
PART_ERROR(H5Lcopy_soft_check);
}
- if (new_info.corder_valid != orig_info.corder_valid) {
- H5_FAILED();
- HDprintf(" copied link's 'corder_valid' field doesn't match original link's "
- "'corder_valid' field\n");
- PART_ERROR(H5Lcopy_soft_check);
- }
+ if (vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER) {
+ if (new_info.corder_valid != orig_info.corder_valid) {
+ H5_FAILED();
+ HDprintf(" copied link's 'corder_valid' field doesn't match original link's "
+ "'corder_valid' field\n");
+ PART_ERROR(H5Lcopy_soft_check);
+ }
- if (new_info.corder_valid && orig_info.corder_valid && (new_info.corder != orig_info.corder)) {
- H5_FAILED();
- HDprintf(" copied link's creation order value %" PRId64
- " doesn't match original link's creation order value %" PRId64 "\n",
- new_info.corder, orig_info.corder);
- PART_ERROR(H5Lcopy_soft_check);
+ if (new_info.corder_valid && orig_info.corder_valid &&
+ (new_info.corder != orig_info.corder)) {
+ H5_FAILED();
+ HDprintf(" copied link's creation order value %" PRId64
+ " doesn't match original link's creation order value %" PRId64 "\n",
+ new_info.corder, orig_info.corder);
+ PART_ERROR(H5Lcopy_soft_check);
+ }
}
if (new_info.cset != orig_info.cset) {
@@ -8459,7 +8375,7 @@ test_copy_link(void)
PART_BEGIN(H5Lcopy_external_no_check)
{
TESTING_2("H5Lcopy on external link (copied link's properties not checked)");
-#ifndef NO_EXTERNAL_LINKS
+
HDsnprintf(ext_link_filename, H5_API_TEST_FILENAME_MAX_LENGTH, "%s",
EXTERNAL_LINK_TEST_FILE_NAME);
@@ -8548,10 +8464,6 @@ test_copy_link(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Lcopy_external_no_check);
-#endif
}
PART_END(H5Lcopy_external_no_check);
@@ -8564,17 +8476,15 @@ test_copy_link(void)
PART_BEGIN(H5Lcopy_external_check)
{
-#ifndef NO_EXTERNAL_LINKS
H5L_info2_t orig_info, new_info;
const char *orig_filename, *new_filename;
const char *orig_objname, *new_objname;
unsigned unpack_flags = 0;
char orig_link_val[COPY_LINK_TEST_LINK_VAL_BUF_SIZE];
char new_link_val[COPY_LINK_TEST_LINK_VAL_BUF_SIZE];
-#endif
TESTING_2("H5Lcopy on external link (copied link's properties checked)");
-#ifndef NO_EXTERNAL_LINKS
+
HDsnprintf(ext_link_filename, H5_API_TEST_FILENAME_MAX_LENGTH, "%s",
EXTERNAL_LINK_TEST_FILE_NAME);
@@ -8708,19 +8618,23 @@ test_copy_link(void)
PART_ERROR(H5Lcopy_external_check);
}
- if (new_info.corder_valid != orig_info.corder_valid) {
- H5_FAILED();
- HDprintf(" copied link's 'corder_valid' field doesn't match original link's "
- "'corder_valid' field\n");
- PART_ERROR(H5Lcopy_external_check);
- }
+ if (vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER) {
+ if (new_info.corder_valid != orig_info.corder_valid) {
+ H5_FAILED();
+ HDprintf(" copied link's 'corder_valid' field doesn't match original link's "
+ "'corder_valid' field\n");
+ PART_ERROR(H5Lcopy_external_check);
+ }
- if (new_info.corder_valid && orig_info.corder_valid && (new_info.corder != orig_info.corder)) {
- H5_FAILED();
- HDprintf(" copied link's creation order value %lld doesn't match original link's creation "
- "order value %lld\n",
- new_info.corder, orig_info.corder);
- PART_ERROR(H5Lcopy_external_check);
+ if (new_info.corder_valid && orig_info.corder_valid &&
+ (new_info.corder != orig_info.corder)) {
+ H5_FAILED();
+ HDprintf(" copied link's creation order value %" PRId64
+ " doesn't match original link's creation "
+ "order value %" PRId64 "\n",
+ new_info.corder, orig_info.corder);
+ PART_ERROR(H5Lcopy_external_check);
+ }
}
if (new_info.cset != orig_info.cset) {
@@ -8762,10 +8676,6 @@ test_copy_link(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Lcopy_external_check);
-#endif
}
PART_END(H5Lcopy_external_check);
@@ -8779,7 +8689,7 @@ test_copy_link(void)
PART_BEGIN(H5Lcopy_external_same_loc)
{
TESTING_2("H5Lcopy on external link using H5L_SAME_LOC");
-#ifndef NO_EXTERNAL_LINKS
+
HDsnprintf(ext_link_filename, H5_API_TEST_FILENAME_MAX_LENGTH, "%s",
EXTERNAL_LINK_TEST_FILE_NAME);
@@ -8909,10 +8819,6 @@ test_copy_link(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Lcopy_external_same_loc);
-#endif
}
PART_END(H5Lcopy_external_same_loc);
@@ -9052,7 +8958,7 @@ test_copy_link_invalid_params(void)
!(vol_cap_flags_g & H5VL_CAP_FLAG_LINK_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_LINK_MORE) ||
!(vol_cap_flags_g & H5VL_CAP_FLAG_HARD_LINKS)) {
SKIPPED();
- HDprintf(" API functions for basic file, group, or basic and more link aren't supported with this "
+ HDprintf(" API functions for basic file, group, link, or hard links aren't supported with this "
"connector\n");
return 0;
}
@@ -9257,7 +9163,7 @@ test_copy_link_invalid_params(void)
PART_BEGIN(H5Lcopy_invalid_lapl)
{
TESTING_2("H5Lcopy with an invalid LAPL");
-#ifndef NO_INVALID_PROPERTY_LIST_TESTS
+
H5E_BEGIN_TRY
{
err_ret =
@@ -9273,10 +9179,6 @@ test_copy_link_invalid_params(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Lcopy_invalid_lapl);
-#endif
}
PART_END(H5Lcopy_invalid_lapl);
@@ -9394,8 +9296,9 @@ test_move_link(void)
!(vol_cap_flags_g & H5VL_CAP_FLAG_HARD_LINKS) || !(vol_cap_flags_g & H5VL_CAP_FLAG_EXTERNAL_LINKS) ||
!(vol_cap_flags_g & H5VL_CAP_FLAG_SOFT_LINKS)) {
SKIPPED();
- HDprintf(" API functions for basic file, group, or link, hard, soft, or external link aren't "
- "supported with this connector\n");
+ HDprintf(
+ " API functions for basic file, group, link, hard link, soft link, or external link aren't "
+ "supported with this connector\n");
return 0;
}
@@ -9625,19 +9528,23 @@ test_move_link(void)
PART_ERROR(H5Lmove_hard_check);
}
- if (new_info.corder_valid != orig_info.corder_valid) {
- H5_FAILED();
- HDprintf(" moved link's 'corder_valid' field doesn't match original link's 'corder_valid' "
- "field\n");
- PART_ERROR(H5Lmove_hard_check);
- }
+ if (vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER) {
+ if (new_info.corder_valid != orig_info.corder_valid) {
+ H5_FAILED();
+ HDprintf(
+ " moved link's 'corder_valid' field doesn't match original link's 'corder_valid' "
+ "field\n");
+ PART_ERROR(H5Lmove_hard_check);
+ }
- if (new_info.corder_valid && orig_info.corder_valid && (new_info.corder != orig_info.corder)) {
- H5_FAILED();
- HDprintf(" moved link's creation order value %" PRId64
- " doesn't match original link's creation order value %" PRId64 "\n",
- new_info.corder, orig_info.corder);
- PART_ERROR(H5Lmove_hard_check);
+ if (new_info.corder_valid && orig_info.corder_valid &&
+ (new_info.corder != orig_info.corder)) {
+ H5_FAILED();
+ HDprintf(" moved link's creation order value %" PRId64
+ " doesn't match original link's creation order value %" PRId64 "\n",
+ new_info.corder, orig_info.corder);
+ PART_ERROR(H5Lmove_hard_check);
+ }
}
if (new_info.cset != orig_info.cset) {
@@ -10035,19 +9942,23 @@ test_move_link(void)
PART_ERROR(H5Lmove_soft_check);
}
- if (new_info.corder_valid != orig_info.corder_valid) {
- H5_FAILED();
- HDprintf(" moved link's 'corder_valid' field doesn't match original link's 'corder_valid' "
- "field\n");
- PART_ERROR(H5Lmove_soft_check);
- }
+ if (vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER) {
+ if (new_info.corder_valid != orig_info.corder_valid) {
+ H5_FAILED();
+ HDprintf(
+ " moved link's 'corder_valid' field doesn't match original link's 'corder_valid' "
+ "field\n");
+ PART_ERROR(H5Lmove_soft_check);
+ }
- if (new_info.corder_valid && orig_info.corder_valid && (new_info.corder != orig_info.corder)) {
- H5_FAILED();
- HDprintf(" moved link's creation order value %" PRId64
- " doesn't match original link's creation order value %" PRId64 "\n",
- new_info.corder, orig_info.corder);
- PART_ERROR(H5Lmove_soft_check);
+ if (new_info.corder_valid && orig_info.corder_valid &&
+ (new_info.corder != orig_info.corder)) {
+ H5_FAILED();
+ HDprintf(" moved link's creation order value %" PRId64
+ " doesn't match original link's creation order value %" PRId64 "\n",
+ new_info.corder, orig_info.corder);
+ PART_ERROR(H5Lmove_soft_check);
+ }
}
if (new_info.cset != orig_info.cset) {
@@ -10273,7 +10184,7 @@ test_move_link(void)
PART_BEGIN(H5Lmove_external_no_check)
{
TESTING_2("H5Lmove on external link (moved link's properties not checked)");
-#ifndef NO_EXTERNAL_LINKS
+
HDsnprintf(ext_link_filename, H5_API_TEST_FILENAME_MAX_LENGTH, "%s",
EXTERNAL_LINK_TEST_FILE_NAME);
@@ -10362,10 +10273,6 @@ test_move_link(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Lmove_external_no_check);
-#endif
}
PART_END(H5Lmove_external_no_check);
@@ -10378,17 +10285,15 @@ test_move_link(void)
PART_BEGIN(H5Lmove_external_check)
{
-#ifndef NO_EXTERNAL_LINKS
H5L_info2_t orig_info, new_info;
const char *orig_filename, *new_filename;
const char *orig_objname, *new_objname;
unsigned unpack_flags = 0;
char orig_link_val[MOVE_LINK_TEST_LINK_VAL_BUF_SIZE];
char new_link_val[MOVE_LINK_TEST_LINK_VAL_BUF_SIZE];
-#endif
TESTING_2("H5Lmove on external link (moved link's properties checked)");
-#ifndef NO_EXTERNAL_LINKS
+
HDsnprintf(ext_link_filename, H5_API_TEST_FILENAME_MAX_LENGTH, "%s",
EXTERNAL_LINK_TEST_FILE_NAME);
@@ -10520,19 +10425,24 @@ test_move_link(void)
PART_ERROR(H5Lmove_external_check);
}
- if (new_info.corder_valid != orig_info.corder_valid) {
- H5_FAILED();
- HDprintf(" moved link's 'corder_valid' field doesn't match original link's 'corder_valid' "
- "field\n");
- PART_ERROR(H5Lmove_external_check);
- }
+ if (vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER) {
+ if (new_info.corder_valid != orig_info.corder_valid) {
+ H5_FAILED();
+ HDprintf(
+ " moved link's 'corder_valid' field doesn't match original link's 'corder_valid' "
+ "field\n");
+ PART_ERROR(H5Lmove_external_check);
+ }
- if (new_info.corder_valid && orig_info.corder_valid && (new_info.corder != orig_info.corder)) {
- H5_FAILED();
- HDprintf(" moved link's creation order value %lld doesn't match original link's creation "
- "order value %lld\n",
- new_info.corder, orig_info.corder);
- PART_ERROR(H5Lmove_external_check);
+ if (new_info.corder_valid && orig_info.corder_valid &&
+ (new_info.corder != orig_info.corder)) {
+ H5_FAILED();
+ HDprintf(" moved link's creation order value %" PRId64
+ " doesn't match original link's creation "
+ "order value %" PRId64 "\n",
+ new_info.corder, orig_info.corder);
+ PART_ERROR(H5Lmove_external_check);
+ }
}
if (new_info.cset != orig_info.cset) {
@@ -10574,10 +10484,6 @@ test_move_link(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Lmove_external_check);
-#endif
}
PART_END(H5Lmove_external_check);
@@ -10591,7 +10497,7 @@ test_move_link(void)
PART_BEGIN(H5Lmove_external_same_loc)
{
TESTING_2("H5Lmove on external link using H5L_SAME_LOC");
-#ifndef NO_EXTERNAL_LINKS
+
HDsnprintf(ext_link_filename, H5_API_TEST_FILENAME_MAX_LENGTH, "%s",
EXTERNAL_LINK_TEST_FILE_NAME);
@@ -10717,10 +10623,6 @@ test_move_link(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Lmove_external_same_loc);
-#endif
}
PART_END(H5Lmove_external_same_loc);
@@ -10734,7 +10636,7 @@ test_move_link(void)
PART_BEGIN(H5Lmove_external_rename)
{
TESTING_2("H5Lmove to rename external link without moving it");
-#ifndef NO_EXTERNAL_LINKS
+
HDsnprintf(ext_link_filename, H5_API_TEST_FILENAME_MAX_LENGTH, "%s",
EXTERNAL_LINK_TEST_FILE_NAME);
@@ -10823,10 +10725,6 @@ test_move_link(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Lmove_external_rename);
-#endif
}
PART_END(H5Lmove_external_rename);
@@ -10942,7 +10840,7 @@ test_move_links_into_group_with_links(void)
!(vol_cap_flags_g & H5VL_CAP_FLAG_LINK_MORE) || !(vol_cap_flags_g & H5VL_CAP_FLAG_HARD_LINKS) ||
!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
SKIPPED();
- HDprintf(" API functions for basic file, group, or basic or hard link, or creation order aren't "
+ HDprintf(" API functions for basic file, group, link, hard link, or creation order aren't "
"supported with this connector\n");
return 0;
}
@@ -11130,7 +11028,6 @@ test_move_link_across_files(void)
static int
test_move_link_reset_grp_max_crt_order(void)
{
-#ifndef NO_MAX_LINK_CRT_ORDER_RESET
H5G_info_t grp_info;
size_t i;
hid_t file_id = H5I_INVALID_HID;
@@ -11138,7 +11035,6 @@ test_move_link_reset_grp_max_crt_order(void)
hid_t src_grp_id = H5I_INVALID_HID, dst_grp_id = H5I_INVALID_HID;
hid_t gcpl_id = H5I_INVALID_HID;
char link_name[MOVE_LINK_RESET_MAX_CRT_ORDER_TEST_BUF_SIZE];
-#endif
TESTING("H5Lmove of all links out of group resets group's maximum link creation order value");
@@ -11147,12 +11043,11 @@ test_move_link_reset_grp_max_crt_order(void)
!(vol_cap_flags_g & H5VL_CAP_FLAG_LINK_MORE) || !(vol_cap_flags_g & H5VL_CAP_FLAG_HARD_LINKS) ||
!(vol_cap_flags_g & H5VL_CAP_FLAG_GROUP_MORE) || !(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
SKIPPED();
- HDprintf(" API functions for basic file, group, more or hard link, or creation order aren't "
+ HDprintf(" API functions for basic file, group, link, hard link, or creation order aren't "
"supported with this connector\n");
return 0;
}
-#ifndef NO_MAX_LINK_CRT_ORDER_RESET
if ((file_id = H5Fopen(H5_api_test_filename, H5F_ACC_RDWR, H5P_DEFAULT)) < 0) {
H5_FAILED();
HDprintf(" couldn't open file '%s'\n", H5_api_test_filename);
@@ -11226,7 +11121,7 @@ test_move_link_reset_grp_max_crt_order(void)
if (grp_info.max_corder != MOVE_LINK_RESET_MAX_CRT_ORDER_TEST_NUM_LINKS) {
H5_FAILED();
HDprintf(" source group's maximum creation order value got adjusted to %lld during link "
- "moving; value should have remained at %lld\n",
+ "moving; value should have remained at %d\n",
(long long)grp_info.max_corder, MOVE_LINK_RESET_MAX_CRT_ORDER_TEST_NUM_LINKS);
goto error;
}
@@ -11272,7 +11167,7 @@ test_move_link_reset_grp_max_crt_order(void)
if (grp_info.max_corder != MOVE_LINK_RESET_MAX_CRT_ORDER_TEST_NUM_LINKS) {
H5_FAILED();
HDprintf(" destination group's maximum creation order value of %lld didn't match expected value "
- "of %lld after moving all links into it\n",
+ "of %d after moving all links into it\n",
(long long)grp_info.max_corder, MOVE_LINK_RESET_MAX_CRT_ORDER_TEST_NUM_LINKS);
goto error;
}
@@ -11307,10 +11202,6 @@ error:
H5E_END_TRY;
return 1;
-#else
- SKIPPED();
- return 0;
-#endif
}
/*
@@ -11334,7 +11225,7 @@ test_move_link_invalid_params(void)
if (!(vol_cap_flags_g & H5VL_CAP_FLAG_FILE_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_GROUP_BASIC) ||
!(vol_cap_flags_g & H5VL_CAP_FLAG_LINK_MORE) || !(vol_cap_flags_g & H5VL_CAP_FLAG_HARD_LINKS)) {
SKIPPED();
- HDprintf(" API functions for basic file, group, more or hard link aren't supported with this "
+ HDprintf(" API functions for basic file, group, link, or hard link aren't supported with this "
"connector\n");
return 0;
}
@@ -11549,7 +11440,7 @@ test_move_link_invalid_params(void)
PART_BEGIN(H5Lmove_invalid_lapl)
{
TESTING_2("H5Lmove with an invalid LAPL");
-#ifndef NO_INVALID_PROPERTY_LIST_TESTS
+
H5E_BEGIN_TRY
{
err_ret = H5Lmove(src_grp_id, MOVE_LINK_INVALID_PARAMS_TEST_HARD_LINK_NAME, dst_grp_id,
@@ -11564,10 +11455,6 @@ test_move_link_invalid_params(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Lmove_invalid_lapl);
-#endif
}
PART_END(H5Lmove_invalid_lapl);
@@ -11726,31 +11613,26 @@ static int
test_get_link_val(void)
{
H5L_info2_t link_info;
-#ifndef NO_EXTERNAL_LINKS
const char *ext_link_filepath;
const char *ext_link_val;
unsigned ext_link_flags;
-#endif
- htri_t link_exists;
- size_t link_val_size;
- char link_val_buf[GET_LINK_VAL_TEST_LINK_VAL_BUF_SIZE];
- hid_t file_id = H5I_INVALID_HID, ext_file_id = H5I_INVALID_HID;
- hid_t container_group = H5I_INVALID_HID, group_id = H5I_INVALID_HID;
- hid_t subgroup_id = H5I_INVALID_HID;
- hid_t gcpl_id = H5I_INVALID_HID;
-#ifndef NO_EXTERNAL_LINKS
- char ext_link_filename[H5_API_TEST_FILENAME_MAX_LENGTH];
-#endif
+ htri_t link_exists;
+ size_t link_val_size;
+ char link_val_buf[GET_LINK_VAL_TEST_LINK_VAL_BUF_SIZE];
+ hid_t file_id = H5I_INVALID_HID, ext_file_id = H5I_INVALID_HID;
+ hid_t container_group = H5I_INVALID_HID, group_id = H5I_INVALID_HID;
+ hid_t subgroup_id = H5I_INVALID_HID;
+ hid_t gcpl_id = H5I_INVALID_HID;
+ char ext_link_filename[H5_API_TEST_FILENAME_MAX_LENGTH];
TESTING_MULTIPART("link value retrieval");
/* Make sure the connector supports the API functions being tested */
if (!(vol_cap_flags_g & H5VL_CAP_FLAG_FILE_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_GROUP_BASIC) ||
!(vol_cap_flags_g & H5VL_CAP_FLAG_LINK_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_LINK_MORE) ||
- !(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER) ||
!(vol_cap_flags_g & H5VL_CAP_FLAG_EXTERNAL_LINKS) || !(vol_cap_flags_g & H5VL_CAP_FLAG_SOFT_LINKS)) {
SKIPPED();
- HDprintf(" API functions for basic file, group, basic, more, soft, external link, or creation "
+ HDprintf(" API functions for basic file, group, link, soft link, external link, or creation "
"order aren't supported with this connector\n");
return 0;
}
@@ -11775,10 +11657,12 @@ test_get_link_val(void)
goto error;
}
- if (H5Pset_link_creation_order(gcpl_id, H5P_CRT_ORDER_TRACKED) < 0) {
- H5_FAILED();
- HDprintf(" couldn't set link creation order tracking\n");
- goto error;
+ if (vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER) {
+ if (H5Pset_link_creation_order(gcpl_id, H5P_CRT_ORDER_TRACKED) < 0) {
+ H5_FAILED();
+ HDprintf(" couldn't set link creation order tracking\n");
+ goto error;
+ }
}
if ((group_id = H5Gcreate2(container_group, GET_LINK_VAL_TEST_SUBGROUP_NAME, H5P_DEFAULT, gcpl_id,
@@ -11872,12 +11756,10 @@ test_get_link_val(void)
PART_BEGIN(H5Lget_val_external)
{
-#ifndef NO_EXTERNAL_LINKS
const char *ext_obj_name = "/";
-#endif
TESTING_2("H5Lget_val on external link");
-#ifndef NO_EXTERNAL_LINKS
+
HDmemset(&link_info, 0, sizeof(link_info));
HDsnprintf(ext_link_filename, H5_API_TEST_FILENAME_MAX_LENGTH, "%s",
@@ -11931,8 +11813,8 @@ test_get_link_val(void)
link_val_size = 1 + strlen(ext_link_filename) + 1 + strlen(ext_obj_name) + 1;
if (link_info.u.val_size != link_val_size) {
H5_FAILED();
- HDprintf(" link value size %lld did not match expected size of %lld\n",
- link_info.u.val_size, link_val_size);
+ HDprintf(" link value size %zu did not match expected size of %zu\n", link_info.u.val_size,
+ link_val_size);
PART_ERROR(H5Lget_val_external);
}
@@ -11971,10 +11853,6 @@ test_get_link_val(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Lget_val_external);
-#endif
}
PART_END(H5Lget_val_external);
@@ -12016,6 +11894,12 @@ test_get_link_val(void)
TESTING_2("H5Lget_val_by_idx on soft link by creation order in increasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Lget_val_by_idx_soft_crt_order_increasing);
+ }
+
if ((subgroup_id = H5Gcreate2(group_id, GET_LINK_VAL_TEST_SUBGROUP4_NAME, H5P_DEFAULT, gcpl_id,
H5P_DEFAULT)) < 0) {
H5_FAILED();
@@ -12204,6 +12088,12 @@ test_get_link_val(void)
TESTING_2("H5Lget_val_by_idx on soft link by creation order in decreasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Lget_val_by_idx_soft_crt_order_decreasing);
+ }
+
if ((subgroup_id = H5Gcreate2(group_id, GET_LINK_VAL_TEST_SUBGROUP5_NAME, H5P_DEFAULT, gcpl_id,
H5P_DEFAULT)) < 0) {
H5_FAILED();
@@ -12571,17 +12461,15 @@ test_get_link_val(void)
PART_BEGIN(H5Lget_val_by_idx_soft_name_order_decreasing)
{
-#ifndef NO_DECREASING_ALPHA_ITER_ORDER
const char *link_target_a = "/" LINK_TEST_GROUP_NAME "/" GET_LINK_VAL_TEST_SUBGROUP_NAME
"/" GET_LINK_VAL_TEST_SUBGROUP7_NAME "A";
const char *link_target_b = "/" LINK_TEST_GROUP_NAME "/" GET_LINK_VAL_TEST_SUBGROUP_NAME
"/" GET_LINK_VAL_TEST_SUBGROUP7_NAME "B";
const char *link_target_c = "/" LINK_TEST_GROUP_NAME "/" GET_LINK_VAL_TEST_SUBGROUP_NAME
"/" GET_LINK_VAL_TEST_SUBGROUP7_NAME "C";
-#endif
TESTING_2("H5Lget_val_by_idx on soft link by alphabetical order in decreasing order");
-#ifndef NO_DECREASING_ALPHA_ITER_ORDER
+
if ((subgroup_id = H5Gcreate2(group_id, GET_LINK_VAL_TEST_SUBGROUP7_NAME, H5P_DEFAULT, gcpl_id,
H5P_DEFAULT)) < 0) {
H5_FAILED();
@@ -12653,16 +12541,15 @@ test_get_link_val(void)
if (H5Lget_info_by_idx2(subgroup_id, ".", H5_INDEX_NAME, H5_ITER_DEC, 2, &link_info,
H5P_DEFAULT) < 0) {
H5_FAILED();
- HDprintf(" failed to retrieve soft link's info at index %lld\n", 2);
+ HDprintf(" failed to retrieve soft link's info at index %d\n", 2);
PART_ERROR(H5Lget_val_by_idx_soft_name_order_decreasing);
}
link_val_size = strlen(link_target_a) + 1;
if (link_info.u.val_size != link_val_size) {
H5_FAILED();
- HDprintf(
- " link value size %lld for link at index %lld did not match expected size of %lld\n",
- link_info.u.val_size, 2, link_val_size);
+ HDprintf(" link value size %zu for link at index %d did not match expected size of %zu\n",
+ link_info.u.val_size, 2, link_val_size);
PART_ERROR(H5Lget_val_by_idx_soft_name_order_decreasing);
}
@@ -12670,13 +12557,13 @@ test_get_link_val(void)
if (H5Lget_val_by_idx(subgroup_id, ".", H5_INDEX_NAME, H5_ITER_DEC, 2, link_val_buf,
GET_LINK_VAL_TEST_LINK_VAL_BUF_SIZE, H5P_DEFAULT) < 0) {
H5_FAILED();
- HDprintf(" couldn't get soft link value at index %lld\n", 2);
+ HDprintf(" couldn't get soft link value at index %d\n", 2);
PART_ERROR(H5Lget_val_by_idx_soft_name_order_decreasing);
}
if (HDstrncmp(link_val_buf, link_target_a, strlen(link_target_a) + 1)) {
H5_FAILED();
- HDprintf(" link value '%s' for link at index %lld did not match expected value '%s'\n",
+ HDprintf(" link value '%s' for link at index %d did not match expected value '%s'\n",
link_val_buf, 2, link_target_a);
PART_ERROR(H5Lget_val_by_idx_soft_name_order_decreasing);
}
@@ -12685,16 +12572,15 @@ test_get_link_val(void)
if (H5Lget_info_by_idx2(subgroup_id, ".", H5_INDEX_NAME, H5_ITER_DEC, 1, &link_info,
H5P_DEFAULT) < 0) {
H5_FAILED();
- HDprintf(" failed to retrieve soft link's info at index %lld\n", 1);
+ HDprintf(" failed to retrieve soft link's info at index %d\n", 1);
PART_ERROR(H5Lget_val_by_idx_soft_name_order_decreasing);
}
link_val_size = strlen(link_target_b) + 1;
if (link_info.u.val_size != link_val_size) {
H5_FAILED();
- HDprintf(
- " link value size %lld for link at index %lld did not match expected size of %lld\n",
- link_info.u.val_size, 1, link_val_size);
+ HDprintf(" link value size %zu for link at index %d did not match expected size of %zu\n",
+ link_info.u.val_size, 1, link_val_size);
PART_ERROR(H5Lget_val_by_idx_soft_name_order_decreasing);
}
@@ -12702,13 +12588,13 @@ test_get_link_val(void)
if (H5Lget_val_by_idx(subgroup_id, ".", H5_INDEX_NAME, H5_ITER_DEC, 1, link_val_buf,
GET_LINK_VAL_TEST_LINK_VAL_BUF_SIZE, H5P_DEFAULT) < 0) {
H5_FAILED();
- HDprintf(" couldn't get soft link value at index %lld\n", 1);
+ HDprintf(" couldn't get soft link value at index %d\n", 1);
PART_ERROR(H5Lget_val_by_idx_soft_name_order_decreasing);
}
if (HDstrncmp(link_val_buf, link_target_b, strlen(link_target_b) + 1)) {
H5_FAILED();
- HDprintf(" link value '%s' for link at index %lld did not match expected value '%s'\n",
+ HDprintf(" link value '%s' for link at index %d did not match expected value '%s'\n",
link_val_buf, 1, link_target_b);
PART_ERROR(H5Lget_val_by_idx_soft_name_order_decreasing);
}
@@ -12717,16 +12603,15 @@ test_get_link_val(void)
if (H5Lget_info_by_idx2(subgroup_id, ".", H5_INDEX_NAME, H5_ITER_DEC, 0, &link_info,
H5P_DEFAULT) < 0) {
H5_FAILED();
- HDprintf(" failed to retrieve soft link's info at index %lld\n", 0);
+ HDprintf(" failed to retrieve soft link's info at index %d\n", 0);
PART_ERROR(H5Lget_val_by_idx_soft_name_order_decreasing);
}
link_val_size = strlen(link_target_c) + 1;
if (link_info.u.val_size != link_val_size) {
H5_FAILED();
- HDprintf(
- " link value size %lld for link at index %lld did not match expected size of %lld\n",
- link_info.u.val_size, 0, link_val_size);
+ HDprintf(" link value size %zu for link at index %d did not match expected size of %zu\n",
+ link_info.u.val_size, 0, link_val_size);
PART_ERROR(H5Lget_val_by_idx_soft_name_order_decreasing);
}
@@ -12734,13 +12619,13 @@ test_get_link_val(void)
if (H5Lget_val_by_idx(subgroup_id, ".", H5_INDEX_NAME, H5_ITER_DEC, 0, link_val_buf,
GET_LINK_VAL_TEST_LINK_VAL_BUF_SIZE, H5P_DEFAULT) < 0) {
H5_FAILED();
- HDprintf(" couldn't get soft link value at index %lld\n", 0);
+ HDprintf(" couldn't get soft link value at index %d\n", 0);
PART_ERROR(H5Lget_val_by_idx_soft_name_order_decreasing);
}
if (HDstrncmp(link_val_buf, link_target_c, strlen(link_target_c) + 1)) {
H5_FAILED();
- HDprintf(" link value '%s' for link at index %lld did not match expected value '%s'\n",
+ HDprintf(" link value '%s' for link at index %d did not match expected value '%s'\n",
link_val_buf, 0, link_target_c);
PART_ERROR(H5Lget_val_by_idx_soft_name_order_decreasing);
}
@@ -12752,10 +12637,6 @@ test_get_link_val(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Lget_val_by_idx_soft_name_order_decreasing);
-#endif
}
PART_END(H5Lget_val_by_idx_soft_name_order_decreasing);
@@ -12768,14 +12649,18 @@ test_get_link_val(void)
PART_BEGIN(H5Lget_val_by_idx_external_crt_order_increasing)
{
-#ifndef NO_EXTERNAL_LINKS
const char *ext_obj_name_a = "/A";
const char *ext_obj_name_b = "/B";
const char *ext_obj_name_c = "/C";
-#endif
TESTING_2("H5Lget_val_by_idx on external link by creation order in increasing order");
-#ifndef NO_EXTERNAL_LINKS
+
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Lget_val_by_idx_external_crt_order_increasing);
+ }
+
HDsnprintf(ext_link_filename, H5_API_TEST_FILENAME_MAX_LENGTH, "%s",
EXTERNAL_LINK_TEST_FILE_NAME);
@@ -12862,16 +12747,15 @@ test_get_link_val(void)
if (H5Lget_info_by_idx2(subgroup_id, ".", H5_INDEX_CRT_ORDER, H5_ITER_INC, 0, &link_info,
H5P_DEFAULT) < 0) {
H5_FAILED();
- HDprintf(" failed to retrieve external link's info at index %lld\n", 0);
+ HDprintf(" failed to retrieve external link's info at index %d\n", 0);
PART_ERROR(H5Lget_val_by_idx_external_crt_order_increasing);
}
link_val_size = 1 + strlen(ext_link_filename) + 1 + strlen(ext_obj_name_a) + 1;
if (link_info.u.val_size != link_val_size) {
H5_FAILED();
- HDprintf(
- " link value size %lld for link at index %lld did not match expected size of %lld\n",
- link_info.u.val_size, 0, link_val_size);
+ HDprintf(" link value size %zu for link at index %d did not match expected size of %zu\n",
+ link_info.u.val_size, 0, link_val_size);
PART_ERROR(H5Lget_val_by_idx_external_crt_order_increasing);
}
@@ -12879,7 +12763,7 @@ test_get_link_val(void)
if (H5Lget_val_by_idx(subgroup_id, ".", H5_INDEX_CRT_ORDER, H5_ITER_INC, 0, link_val_buf,
GET_LINK_VAL_TEST_LINK_VAL_BUF_SIZE, H5P_DEFAULT) < 0) {
H5_FAILED();
- HDprintf(" couldn't get external link value at index %lld\n", 0);
+ HDprintf(" couldn't get external link value at index %d\n", 0);
PART_ERROR(H5Lget_val_by_idx_external_crt_order_increasing);
}
@@ -12908,16 +12792,15 @@ test_get_link_val(void)
if (H5Lget_info_by_idx2(subgroup_id, ".", H5_INDEX_CRT_ORDER, H5_ITER_INC, 1, &link_info,
H5P_DEFAULT) < 0) {
H5_FAILED();
- HDprintf(" failed to retrieve external link's info at index %lld\n", 1);
+ HDprintf(" failed to retrieve external link's info at index %d\n", 1);
PART_ERROR(H5Lget_val_by_idx_external_crt_order_increasing);
}
link_val_size = 1 + strlen(ext_link_filename) + 1 + strlen(ext_obj_name_b) + 1;
if (link_info.u.val_size != link_val_size) {
H5_FAILED();
- HDprintf(
- " link value size %lld for link at index %lld did not match expected size of %lld\n",
- link_info.u.val_size, 1, link_val_size);
+ HDprintf(" link value size %zu for link at index %d did not match expected size of %zu\n",
+ link_info.u.val_size, 1, link_val_size);
PART_ERROR(H5Lget_val_by_idx_external_crt_order_increasing);
}
@@ -12925,7 +12808,7 @@ test_get_link_val(void)
if (H5Lget_val_by_idx(subgroup_id, ".", H5_INDEX_CRT_ORDER, H5_ITER_INC, 1, link_val_buf,
GET_LINK_VAL_TEST_LINK_VAL_BUF_SIZE, H5P_DEFAULT) < 0) {
H5_FAILED();
- HDprintf(" couldn't get external link value at index %lld\n", 1);
+ HDprintf(" couldn't get external link value at index %d\n", 1);
PART_ERROR(H5Lget_val_by_idx_external_crt_order_increasing);
}
@@ -12954,16 +12837,15 @@ test_get_link_val(void)
if (H5Lget_info_by_idx2(subgroup_id, ".", H5_INDEX_CRT_ORDER, H5_ITER_INC, 2, &link_info,
H5P_DEFAULT) < 0) {
H5_FAILED();
- HDprintf(" failed to retrieve external link's info at index %lld\n", 2);
+ HDprintf(" failed to retrieve external link's info at index %d\n", 2);
PART_ERROR(H5Lget_val_by_idx_external_crt_order_increasing);
}
link_val_size = 1 + strlen(ext_link_filename) + 1 + strlen(ext_obj_name_c) + 1;
if (link_info.u.val_size != link_val_size) {
H5_FAILED();
- HDprintf(
- " link value size %lld for link at index %lld did not match expected size of %lld\n",
- link_info.u.val_size, 2, link_val_size);
+ HDprintf(" link value size %zu for link at index %d did not match expected size of %zu\n",
+ link_info.u.val_size, 2, link_val_size);
PART_ERROR(H5Lget_val_by_idx_external_crt_order_increasing);
}
@@ -12971,7 +12853,7 @@ test_get_link_val(void)
if (H5Lget_val_by_idx(subgroup_id, ".", H5_INDEX_CRT_ORDER, H5_ITER_INC, 2, link_val_buf,
GET_LINK_VAL_TEST_LINK_VAL_BUF_SIZE, H5P_DEFAULT) < 0) {
H5_FAILED();
- HDprintf(" couldn't get external link value at index %lld\n", 2);
+ HDprintf(" couldn't get external link value at index %d\n", 2);
PART_ERROR(H5Lget_val_by_idx_external_crt_order_increasing);
}
@@ -13003,10 +12885,6 @@ test_get_link_val(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Lget_val_by_idx_external_crt_order_increasing);
-#endif
}
PART_END(H5Lget_val_by_idx_external_crt_order_increasing);
@@ -13021,14 +12899,18 @@ test_get_link_val(void)
PART_BEGIN(H5Lget_val_by_idx_external_crt_order_decreasing)
{
-#ifndef NO_EXTERNAL_LINKS
const char *ext_obj_name_a = "/A";
const char *ext_obj_name_b = "/B";
const char *ext_obj_name_c = "/C";
-#endif
TESTING_2("H5Lget_val_by_idx on external link by creation order in decreasing order");
-#ifndef NO_EXTERNAL_LINKS
+
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Lget_val_by_idx_external_crt_order_decreasing);
+ }
+
HDsnprintf(ext_link_filename, H5_API_TEST_FILENAME_MAX_LENGTH, "%s",
EXTERNAL_LINK_TEST_FILE_NAME);
@@ -13115,16 +12997,15 @@ test_get_link_val(void)
if (H5Lget_info_by_idx2(subgroup_id, ".", H5_INDEX_CRT_ORDER, H5_ITER_DEC, 2, &link_info,
H5P_DEFAULT) < 0) {
H5_FAILED();
- HDprintf(" failed to retrieve external link's info at index %lld\n", 2);
+ HDprintf(" failed to retrieve external link's info at index %d\n", 2);
PART_ERROR(H5Lget_val_by_idx_external_crt_order_decreasing);
}
link_val_size = 1 + strlen(ext_link_filename) + 1 + strlen(ext_obj_name_a) + 1;
if (link_info.u.val_size != link_val_size) {
H5_FAILED();
- HDprintf(
- " link value size %lld for link at index %lld did not match expected size of %lld\n",
- link_info.u.val_size, 2, link_val_size);
+ HDprintf(" link value size %zu for link at index %d not match expected size of %zu\n",
+ link_info.u.val_size, 2, link_val_size);
PART_ERROR(H5Lget_val_by_idx_external_crt_order_decreasing);
}
@@ -13132,7 +13013,7 @@ test_get_link_val(void)
if (H5Lget_val_by_idx(subgroup_id, ".", H5_INDEX_CRT_ORDER, H5_ITER_DEC, 2, link_val_buf,
GET_LINK_VAL_TEST_LINK_VAL_BUF_SIZE, H5P_DEFAULT) < 0) {
H5_FAILED();
- HDprintf(" couldn't get external link value at index %lld\n", 2);
+ HDprintf(" couldn't get external link value at index %d\n", 2);
PART_ERROR(H5Lget_val_by_idx_external_crt_order_decreasing);
}
@@ -13161,16 +13042,15 @@ test_get_link_val(void)
if (H5Lget_info_by_idx2(subgroup_id, ".", H5_INDEX_CRT_ORDER, H5_ITER_DEC, 1, &link_info,
H5P_DEFAULT) < 0) {
H5_FAILED();
- HDprintf(" failed to retrieve external link's info at index %lld\n", 1);
+ HDprintf(" failed to retrieve external link's info at index %d\n", 1);
PART_ERROR(H5Lget_val_by_idx_external_crt_order_decreasing);
}
link_val_size = 1 + strlen(ext_link_filename) + 1 + strlen(ext_obj_name_b) + 1;
if (link_info.u.val_size != link_val_size) {
H5_FAILED();
- HDprintf(
- " link value size %lld for link at index %lld did not match expected size of %lld\n",
- link_info.u.val_size, 1, link_val_size);
+ HDprintf(" link value size %zu for link at index %d did not match expected size of %zu\n",
+ link_info.u.val_size, 1, link_val_size);
PART_ERROR(H5Lget_val_by_idx_external_crt_order_decreasing);
}
@@ -13178,7 +13058,7 @@ test_get_link_val(void)
if (H5Lget_val_by_idx(subgroup_id, ".", H5_INDEX_CRT_ORDER, H5_ITER_DEC, 1, link_val_buf,
GET_LINK_VAL_TEST_LINK_VAL_BUF_SIZE, H5P_DEFAULT) < 0) {
H5_FAILED();
- HDprintf(" couldn't get external link value at index %lld\n", 1);
+ HDprintf(" couldn't get external link value at index %d\n", 1);
PART_ERROR(H5Lget_val_by_idx_external_crt_order_decreasing);
}
@@ -13207,16 +13087,15 @@ test_get_link_val(void)
if (H5Lget_info_by_idx2(subgroup_id, ".", H5_INDEX_CRT_ORDER, H5_ITER_DEC, 0, &link_info,
H5P_DEFAULT) < 0) {
H5_FAILED();
- HDprintf(" failed to retrieve external link's info at index %lld\n", 0);
+ HDprintf(" failed to retrieve external link's info at index %d\n", 0);
PART_ERROR(H5Lget_val_by_idx_external_crt_order_decreasing);
}
link_val_size = 1 + strlen(ext_link_filename) + 1 + strlen(ext_obj_name_c) + 1;
if (link_info.u.val_size != link_val_size) {
H5_FAILED();
- HDprintf(
- " link value size %lld for link at index %lld did not match expected size of %lld\n",
- link_info.u.val_size, 0, link_val_size);
+ HDprintf(" link value size %zu for link at index %d did not match expected size of %zu\n",
+ link_info.u.val_size, 0, link_val_size);
PART_ERROR(H5Lget_val_by_idx_external_crt_order_decreasing);
}
@@ -13224,7 +13103,7 @@ test_get_link_val(void)
if (H5Lget_val_by_idx(subgroup_id, ".", H5_INDEX_CRT_ORDER, H5_ITER_DEC, 0, link_val_buf,
GET_LINK_VAL_TEST_LINK_VAL_BUF_SIZE, H5P_DEFAULT) < 0) {
H5_FAILED();
- HDprintf(" couldn't get external link value at index %lld\n", 0);
+ HDprintf(" couldn't get external link value at index %d\n", 0);
PART_ERROR(H5Lget_val_by_idx_external_crt_order_decreasing);
}
@@ -13256,10 +13135,6 @@ test_get_link_val(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Lget_val_by_idx_external_crt_order_decreasing);
-#endif
}
PART_END(H5Lget_val_by_idx_external_crt_order_decreasing);
@@ -13274,14 +13149,12 @@ test_get_link_val(void)
PART_BEGIN(H5Lget_val_by_idx_external_name_order_increasing)
{
-#ifndef NO_EXTERNAL_LINKS
const char *ext_obj_name_a = "/A";
const char *ext_obj_name_b = "/B";
const char *ext_obj_name_c = "/C";
-#endif
TESTING_2("H5Lget_val_by_idx on external link by alphabetical order in increasing order");
-#ifndef NO_EXTERNAL_LINKS
+
HDsnprintf(ext_link_filename, H5_API_TEST_FILENAME_MAX_LENGTH, "%s",
EXTERNAL_LINK_TEST_FILE_NAME);
@@ -13368,16 +13241,15 @@ test_get_link_val(void)
if (H5Lget_info_by_idx2(subgroup_id, ".", H5_INDEX_NAME, H5_ITER_INC, 0, &link_info,
H5P_DEFAULT) < 0) {
H5_FAILED();
- HDprintf(" failed to retrieve external link's info at index %lld\n", 0);
+ HDprintf(" failed to retrieve external link's info at index %d\n", 0);
PART_ERROR(H5Lget_val_by_idx_external_name_order_increasing);
}
link_val_size = 1 + strlen(ext_link_filename) + 1 + strlen(ext_obj_name_a) + 1;
if (link_info.u.val_size != link_val_size) {
H5_FAILED();
- HDprintf(
- " link value size %lld for link at index %lld did not match expected size of %lld\n",
- link_info.u.val_size, 0, link_val_size);
+ HDprintf(" link value size %zu for link at index %d did not match expected size of %zu\n",
+ link_info.u.val_size, 0, link_val_size);
PART_ERROR(H5Lget_val_by_idx_external_name_order_increasing);
}
@@ -13385,7 +13257,7 @@ test_get_link_val(void)
if (H5Lget_val_by_idx(subgroup_id, ".", H5_INDEX_NAME, H5_ITER_INC, 0, link_val_buf,
GET_LINK_VAL_TEST_LINK_VAL_BUF_SIZE, H5P_DEFAULT) < 0) {
H5_FAILED();
- HDprintf(" couldn't get external link value at index %lld\n", 0);
+ HDprintf(" couldn't get external link value at index %d\n", 0);
PART_ERROR(H5Lget_val_by_idx_external_name_order_increasing);
}
@@ -13414,16 +13286,15 @@ test_get_link_val(void)
if (H5Lget_info_by_idx2(subgroup_id, ".", H5_INDEX_NAME, H5_ITER_INC, 1, &link_info,
H5P_DEFAULT) < 0) {
H5_FAILED();
- HDprintf(" failed to retrieve external link's info at index %lld\n", 1);
+ HDprintf(" failed to retrieve external link's info at index %d\n", 1);
PART_ERROR(H5Lget_val_by_idx_external_name_order_increasing);
}
link_val_size = 1 + strlen(ext_link_filename) + 1 + strlen(ext_obj_name_b) + 1;
if (link_info.u.val_size != link_val_size) {
H5_FAILED();
- HDprintf(
- " link value size %lld for link at index %lld did not match expected size of %lld\n",
- link_info.u.val_size, 1, link_val_size);
+ HDprintf(" link value size %zu for link at index %d did not match expected size of %zu\n",
+ link_info.u.val_size, 1, link_val_size);
PART_ERROR(H5Lget_val_by_idx_external_name_order_increasing);
}
@@ -13431,7 +13302,7 @@ test_get_link_val(void)
if (H5Lget_val_by_idx(subgroup_id, ".", H5_INDEX_NAME, H5_ITER_INC, 1, link_val_buf,
GET_LINK_VAL_TEST_LINK_VAL_BUF_SIZE, H5P_DEFAULT) < 0) {
H5_FAILED();
- HDprintf(" couldn't get external link value at index %lld\n", 1);
+ HDprintf(" couldn't get external link value at index %d\n", 1);
PART_ERROR(H5Lget_val_by_idx_external_name_order_increasing);
}
@@ -13460,16 +13331,15 @@ test_get_link_val(void)
if (H5Lget_info_by_idx2(subgroup_id, ".", H5_INDEX_NAME, H5_ITER_INC, 2, &link_info,
H5P_DEFAULT) < 0) {
H5_FAILED();
- HDprintf(" failed to retrieve external link's info at index %lld\n", 2);
+ HDprintf(" failed to retrieve external link's info at index %d\n", 2);
PART_ERROR(H5Lget_val_by_idx_external_name_order_increasing);
}
link_val_size = 1 + strlen(ext_link_filename) + 1 + strlen(ext_obj_name_c) + 1;
if (link_info.u.val_size != link_val_size) {
H5_FAILED();
- HDprintf(
- " link value size %lld for link at index %lld did not match expected size of %lld\n",
- link_info.u.val_size, 2, link_val_size);
+ HDprintf(" link value size %zu for link at index %d did not match expected size of %zu\n",
+ link_info.u.val_size, 2, link_val_size);
PART_ERROR(H5Lget_val_by_idx_external_name_order_increasing);
}
@@ -13477,7 +13347,7 @@ test_get_link_val(void)
if (H5Lget_val_by_idx(subgroup_id, ".", H5_INDEX_NAME, H5_ITER_INC, 2, link_val_buf,
GET_LINK_VAL_TEST_LINK_VAL_BUF_SIZE, H5P_DEFAULT) < 0) {
H5_FAILED();
- HDprintf(" couldn't get external link value at index %lld\n", 2);
+ HDprintf(" couldn't get external link value at index %d\n", 2);
PART_ERROR(H5Lget_val_by_idx_external_name_order_increasing);
}
@@ -13509,10 +13379,6 @@ test_get_link_val(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Lget_val_by_idx_external_name_order_increasing);
-#endif
}
PART_END(H5Lget_val_by_idx_external_name_order_increasing);
@@ -13527,14 +13393,12 @@ test_get_link_val(void)
PART_BEGIN(H5Lget_val_by_idx_external_name_order_decreasing)
{
-#ifndef NO_DECREASING_ALPHA_ITER_ORDER
const char *ext_obj_name_a = "/A";
const char *ext_obj_name_b = "/B";
const char *ext_obj_name_c = "/C";
-#endif
TESTING_2("H5Lget_val_by_idx on external link by alphabetical order in decreasing order");
-#ifndef NO_DECREASING_ALPHA_ITER_ORDER
+
HDsnprintf(ext_link_filename, H5_API_TEST_FILENAME_MAX_LENGTH, "%s",
EXTERNAL_LINK_TEST_FILE_NAME);
@@ -13621,16 +13485,15 @@ test_get_link_val(void)
if (H5Lget_info_by_idx2(subgroup_id, ".", H5_INDEX_NAME, H5_ITER_DEC, 2, &link_info,
H5P_DEFAULT) < 0) {
H5_FAILED();
- HDprintf(" failed to retrieve external link's info at index %lld\n", 2);
+ HDprintf(" failed to retrieve external link's info at index %d\n", 2);
PART_ERROR(H5Lget_val_by_idx_external_name_order_decreasing);
}
link_val_size = 1 + strlen(ext_link_filename) + 1 + strlen(ext_obj_name_a) + 1;
if (link_info.u.val_size != link_val_size) {
H5_FAILED();
- HDprintf(
- " link value size %lld for link at index %lld did not match expected size of %lld\n",
- link_info.u.val_size, 2, link_val_size);
+ HDprintf(" link value size %zu for link at index %d did not match expected size of %zu\n",
+ link_info.u.val_size, 2, link_val_size);
PART_ERROR(H5Lget_val_by_idx_external_name_order_decreasing);
}
@@ -13638,7 +13501,7 @@ test_get_link_val(void)
if (H5Lget_val_by_idx(subgroup_id, ".", H5_INDEX_NAME, H5_ITER_DEC, 2, link_val_buf,
GET_LINK_VAL_TEST_LINK_VAL_BUF_SIZE, H5P_DEFAULT) < 0) {
H5_FAILED();
- HDprintf(" couldn't get external link value at index %lld\n", 2);
+ HDprintf(" couldn't get external link value at index %d\n", 2);
PART_ERROR(H5Lget_val_by_idx_external_name_order_decreasing);
}
@@ -13667,16 +13530,15 @@ test_get_link_val(void)
if (H5Lget_info_by_idx2(subgroup_id, ".", H5_INDEX_NAME, H5_ITER_DEC, 1, &link_info,
H5P_DEFAULT) < 0) {
H5_FAILED();
- HDprintf(" failed to retrieve external link's info at index %lld\n", 1);
+ HDprintf(" failed to retrieve external link's info at index %d\n", 1);
PART_ERROR(H5Lget_val_by_idx_external_name_order_decreasing);
}
link_val_size = 1 + strlen(ext_link_filename) + 1 + strlen(ext_obj_name_b) + 1;
if (link_info.u.val_size != link_val_size) {
H5_FAILED();
- HDprintf(
- " link value size %lld for link at index %lld did not match expected size of %lld\n",
- link_info.u.val_size, 1, link_val_size);
+ HDprintf(" link value size %zu for link at index %d did not match expected size of %zu\n",
+ link_info.u.val_size, 1, link_val_size);
PART_ERROR(H5Lget_val_by_idx_external_name_order_decreasing);
}
@@ -13684,7 +13546,7 @@ test_get_link_val(void)
if (H5Lget_val_by_idx(subgroup_id, ".", H5_INDEX_NAME, H5_ITER_DEC, 1, link_val_buf,
GET_LINK_VAL_TEST_LINK_VAL_BUF_SIZE, H5P_DEFAULT) < 0) {
H5_FAILED();
- HDprintf(" couldn't get external link value at index %lld\n", 1);
+ HDprintf(" couldn't get external link value at index %d\n", 1);
PART_ERROR(H5Lget_val_by_idx_external_name_order_decreasing);
}
@@ -13713,16 +13575,15 @@ test_get_link_val(void)
if (H5Lget_info_by_idx2(subgroup_id, ".", H5_INDEX_NAME, H5_ITER_DEC, 0, &link_info,
H5P_DEFAULT) < 0) {
H5_FAILED();
- HDprintf(" failed to retrieve external link's info at index %lld\n", 0);
+ HDprintf(" failed to retrieve external link's info at index %d\n", 0);
PART_ERROR(H5Lget_val_by_idx_external_name_order_decreasing);
}
link_val_size = 1 + strlen(ext_link_filename) + 1 + strlen(ext_obj_name_c) + 1;
if (link_info.u.val_size != link_val_size) {
H5_FAILED();
- HDprintf(
- " link value size %lld for link at index %lld did not match expected size of %lld\n",
- link_info.u.val_size, 0, link_val_size);
+ HDprintf(" link value size %zu for link at index %d did not match expected size of %zu\n",
+ link_info.u.val_size, 0, link_val_size);
PART_ERROR(H5Lget_val_by_idx_external_name_order_decreasing);
}
@@ -13730,7 +13591,7 @@ test_get_link_val(void)
if (H5Lget_val_by_idx(subgroup_id, ".", H5_INDEX_NAME, H5_ITER_DEC, 0, link_val_buf,
GET_LINK_VAL_TEST_LINK_VAL_BUF_SIZE, H5P_DEFAULT) < 0) {
H5_FAILED();
- HDprintf(" couldn't get external link value at index %lld\n", 0);
+ HDprintf(" couldn't get external link value at index %d\n", 0);
PART_ERROR(H5Lget_val_by_idx_external_name_order_decreasing);
}
@@ -13762,10 +13623,6 @@ test_get_link_val(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Lget_val_by_idx_external_name_order_decreasing);
-#endif
}
PART_END(H5Lget_val_by_idx_external_name_order_decreasing);
@@ -13895,9 +13752,9 @@ test_get_link_val_invalid_params(void)
/* Make sure the connector supports the API functions being tested */
if (!(vol_cap_flags_g & H5VL_CAP_FLAG_FILE_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_GROUP_BASIC) ||
!(vol_cap_flags_g & H5VL_CAP_FLAG_LINK_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_LINK_MORE) ||
- !(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER) || !(vol_cap_flags_g & H5VL_CAP_FLAG_SOFT_LINKS)) {
+ !(vol_cap_flags_g & H5VL_CAP_FLAG_SOFT_LINKS)) {
SKIPPED();
- HDprintf(" API functions for basic file, group, basic, more, soft, external link, or creation "
+ HDprintf(" API functions for basic file, group, link, soft link, external link, or creation "
"order aren't supported with this connector\n");
return 0;
}
@@ -13922,12 +13779,6 @@ test_get_link_val_invalid_params(void)
goto error;
}
- if (H5Pset_link_creation_order(gcpl_id, H5P_CRT_ORDER_TRACKED | H5P_CRT_ORDER_INDEXED) < 0) {
- H5_FAILED();
- HDprintf(" couldn't enable link creation order tracking and indexing on GCPL\n");
- goto error;
- }
-
if ((group_id = H5Gcreate2(container_group, GET_LINK_VAL_INVALID_PARAMS_TEST_GROUP_NAME, H5P_DEFAULT,
gcpl_id, H5P_DEFAULT)) < 0) {
H5_FAILED();
@@ -14053,8 +13904,8 @@ test_get_link_val_invalid_params(void)
H5E_BEGIN_TRY
{
- err_ret = H5Lget_val_by_idx(H5I_INVALID_HID, ".", H5_INDEX_CRT_ORDER, H5_ITER_INC, 0,
- link_val_buf, link_val_buf_size, H5P_DEFAULT);
+ err_ret = H5Lget_val_by_idx(H5I_INVALID_HID, ".", H5_INDEX_NAME, H5_ITER_INC, 0, link_val_buf,
+ link_val_buf_size, H5P_DEFAULT);
}
H5E_END_TRY;
@@ -14074,7 +13925,7 @@ test_get_link_val_invalid_params(void)
H5E_BEGIN_TRY
{
- err_ret = H5Lget_val_by_idx(group_id, NULL, H5_INDEX_CRT_ORDER, H5_ITER_INC, 0, link_val_buf,
+ err_ret = H5Lget_val_by_idx(group_id, NULL, H5_INDEX_NAME, H5_ITER_INC, 0, link_val_buf,
link_val_buf_size, H5P_DEFAULT);
}
H5E_END_TRY;
@@ -14087,7 +13938,7 @@ test_get_link_val_invalid_params(void)
H5E_BEGIN_TRY
{
- err_ret = H5Lget_val_by_idx(group_id, "", H5_INDEX_CRT_ORDER, H5_ITER_INC, 0, link_val_buf,
+ err_ret = H5Lget_val_by_idx(group_id, "", H5_INDEX_NAME, H5_ITER_INC, 0, link_val_buf,
link_val_buf_size, H5P_DEFAULT);
}
H5E_END_TRY;
@@ -14142,8 +13993,8 @@ test_get_link_val_invalid_params(void)
H5E_BEGIN_TRY
{
- err_ret = H5Lget_val_by_idx(group_id, ".", H5_INDEX_CRT_ORDER, H5_ITER_UNKNOWN, 0,
- link_val_buf, link_val_buf_size, H5P_DEFAULT);
+ err_ret = H5Lget_val_by_idx(group_id, ".", H5_INDEX_NAME, H5_ITER_UNKNOWN, 0, link_val_buf,
+ link_val_buf_size, H5P_DEFAULT);
}
H5E_END_TRY;
@@ -14156,7 +14007,7 @@ test_get_link_val_invalid_params(void)
H5E_BEGIN_TRY
{
- err_ret = H5Lget_val_by_idx(group_id, ".", H5_INDEX_CRT_ORDER, H5_ITER_N, 0, link_val_buf,
+ err_ret = H5Lget_val_by_idx(group_id, ".", H5_INDEX_NAME, H5_ITER_N, 0, link_val_buf,
link_val_buf_size, H5P_DEFAULT);
}
H5E_END_TRY;
@@ -14177,7 +14028,7 @@ test_get_link_val_invalid_params(void)
H5E_BEGIN_TRY
{
- err_ret = H5Lget_val_by_idx(group_id, ".", H5_INDEX_CRT_ORDER, H5_ITER_INC, 0, link_val_buf,
+ err_ret = H5Lget_val_by_idx(group_id, ".", H5_INDEX_NAME, H5_ITER_INC, 0, link_val_buf,
link_val_buf_size, H5I_INVALID_HID);
}
H5E_END_TRY;
@@ -14237,16 +14088,14 @@ static int
test_get_link_info(void)
{
H5L_info2_t link_info;
+ const char *ext_objname = "/";
htri_t link_exists;
size_t link_val_size;
hid_t file_id = H5I_INVALID_HID, ext_file_id = H5I_INVALID_HID;
hid_t container_group = H5I_INVALID_HID, group_id = H5I_INVALID_HID;
hid_t subgroup_id = H5I_INVALID_HID;
hid_t gcpl_id = H5I_INVALID_HID;
-#ifndef NO_EXTERNAL_LINKS
- char *ext_objname;
- char ext_link_filename[H5_API_TEST_FILENAME_MAX_LENGTH];
-#endif
+ char ext_link_filename[H5_API_TEST_FILENAME_MAX_LENGTH];
TESTING_MULTIPART("link info retrieval");
@@ -14254,10 +14103,10 @@ test_get_link_info(void)
if (!(vol_cap_flags_g & H5VL_CAP_FLAG_FILE_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_GROUP_BASIC) ||
!(vol_cap_flags_g & H5VL_CAP_FLAG_LINK_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_LINK_MORE) ||
!(vol_cap_flags_g & H5VL_CAP_FLAG_HARD_LINKS) || !(vol_cap_flags_g & H5VL_CAP_FLAG_EXTERNAL_LINKS) ||
- !(vol_cap_flags_g & H5VL_CAP_FLAG_SOFT_LINKS) || !(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ !(vol_cap_flags_g & H5VL_CAP_FLAG_SOFT_LINKS)) {
SKIPPED();
- HDprintf(" API functions for basic file, group, basic, more, soft, hard, external link, or "
- "creation order aren't supported with this connector\n");
+ HDprintf(" API functions for basic file, group, link, soft link, hard link, or external link "
+ "aren't supported with this connector\n");
return 0;
}
@@ -14281,10 +14130,12 @@ test_get_link_info(void)
goto error;
}
- if (H5Pset_link_creation_order(gcpl_id, H5P_CRT_ORDER_TRACKED) < 0) {
- H5_FAILED();
- HDprintf(" couldn't set link creation order tracking\n");
- goto error;
+ if (vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER) {
+ if (H5Pset_link_creation_order(gcpl_id, H5P_CRT_ORDER_TRACKED) < 0) {
+ H5_FAILED();
+ HDprintf(" couldn't set link creation order tracking\n");
+ goto error;
+ }
}
if ((group_id = H5Gcreate2(container_group, GET_LINK_INFO_TEST_GROUP_NAME, H5P_DEFAULT, gcpl_id,
@@ -14343,11 +14194,13 @@ test_get_link_info(void)
PART_ERROR(H5Lget_info_hard);
}
- if (link_info.corder_valid && (link_info.corder != 0)) {
- H5_FAILED();
- HDprintf(" link's creation order value '%lld' did not match expected value '%lld'\n",
- (long long)link_info.corder, (long long)0);
- PART_ERROR(H5Lget_info_hard);
+ if (vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER) {
+ if (link_info.corder_valid && (link_info.corder != 0)) {
+ H5_FAILED();
+ HDprintf(" link's creation order value '%lld' did not match expected value '%lld'\n",
+ (long long)link_info.corder, (long long)0);
+ PART_ERROR(H5Lget_info_hard);
+ }
}
if (H5Gclose(subgroup_id) < 0) {
@@ -14424,11 +14277,13 @@ test_get_link_info(void)
PART_ERROR(H5Lget_info_soft);
}
- if (link_info.corder_valid && (link_info.corder != 0)) {
- H5_FAILED();
- HDprintf(" link's creation order value '%lld' did not match expected value '%lld'\n",
- (long long)link_info.corder, (long long)0);
- PART_ERROR(H5Lget_info_soft);
+ if (vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER) {
+ if (link_info.corder_valid && (link_info.corder != 0)) {
+ H5_FAILED();
+ HDprintf(" link's creation order value '%lld' did not match expected value '%lld'\n",
+ (long long)link_info.corder, (long long)0);
+ PART_ERROR(H5Lget_info_soft);
+ }
}
if (H5Gclose(subgroup_id) < 0) {
@@ -14451,7 +14306,7 @@ test_get_link_info(void)
PART_BEGIN(H5Lget_info_external)
{
TESTING_2("H5Lget_info2 on external link");
-#ifndef NO_EXTERNAL_LINKS
+
HDmemset(&link_info, 0, sizeof(link_info));
HDsnprintf(ext_link_filename, H5_API_TEST_FILENAME_MAX_LENGTH, "%s",
@@ -14476,7 +14331,6 @@ test_get_link_info(void)
PART_ERROR(H5Lget_info_external);
}
- ext_objname = "/";
if (H5Lcreate_external(ext_link_filename, ext_objname, subgroup_id,
GET_LINK_INFO_TEST_EXT_LINK_NAME, H5P_DEFAULT, H5P_DEFAULT) < 0) {
H5_FAILED();
@@ -14512,16 +14366,18 @@ test_get_link_info(void)
link_val_size = 1 + strlen(ext_link_filename) + 1 + strlen(ext_objname) + 1;
if (link_info.u.val_size != link_val_size) {
H5_FAILED();
- HDprintf(" link's value size '%lld' did not match expected value '%lld'\n",
+ HDprintf(" link's value size '%lld' did not match expected value '%zu'\n",
(long long)link_info.u.val_size, link_val_size);
PART_ERROR(H5Lget_info_external);
}
- if (link_info.corder_valid && (link_info.corder != 0)) {
- H5_FAILED();
- HDprintf(" link's creation order value '%lld' did not match expected value '%lld'\n",
- (long long)link_info.corder, (long long)0);
- PART_ERROR(H5Lget_info_external);
+ if (vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER) {
+ if (link_info.corder_valid && (link_info.corder != 0)) {
+ H5_FAILED();
+ HDprintf(" link's creation order value '%lld' did not match expected value '%lld'\n",
+ (long long)link_info.corder, (long long)0);
+ PART_ERROR(H5Lget_info_external);
+ }
}
if (H5Gclose(subgroup_id) < 0) {
@@ -14531,10 +14387,6 @@ test_get_link_info(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Lget_info_external);
-#endif
}
PART_END(H5Lget_info_external);
@@ -14569,6 +14421,12 @@ test_get_link_info(void)
{
TESTING_2("H5Lget_info_by_idx2 on hard link by creation order in increasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Lget_info_by_idx_hard_crt_order_increasing);
+ }
+
if ((subgroup_id = H5Gcreate2(group_id, GET_LINK_INFO_TEST_SUBGROUP5_NAME, H5P_DEFAULT, gcpl_id,
H5P_DEFAULT)) < 0) {
H5_FAILED();
@@ -14726,6 +14584,12 @@ test_get_link_info(void)
{
TESTING_2("H5Lget_info_by_idx2 on hard link by creation order in decreasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Lget_info_by_idx_hard_crt_order_decreasing);
+ }
+
if ((subgroup_id = H5Gcreate2(group_id, GET_LINK_INFO_TEST_SUBGROUP6_NAME, H5P_DEFAULT, gcpl_id,
H5P_DEFAULT)) < 0) {
H5_FAILED();
@@ -14970,11 +14834,13 @@ test_get_link_info(void)
PART_ERROR(H5Lget_info_by_idx_hard_name_order_increasing);
}
- if (link_info.corder_valid && (link_info.corder != 0)) {
- H5_FAILED();
- HDprintf(" link's creation order value '%lld' did not match expected value '%lld'\n",
- (long long)link_info.corder, (long long)0);
- PART_ERROR(H5Lget_info_by_idx_hard_name_order_increasing);
+ if (vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER) {
+ if (link_info.corder_valid && (link_info.corder != 0)) {
+ H5_FAILED();
+ HDprintf(" link's creation order value '%lld' did not match expected value '%lld'\n",
+ (long long)link_info.corder, (long long)0);
+ PART_ERROR(H5Lget_info_by_idx_hard_name_order_increasing);
+ }
}
HDmemset(&link_info, 0, sizeof(link_info));
@@ -14991,11 +14857,13 @@ test_get_link_info(void)
PART_ERROR(H5Lget_info_by_idx_hard_name_order_increasing);
}
- if (link_info.corder_valid && (link_info.corder != 1)) {
- H5_FAILED();
- HDprintf(" link's creation order value '%lld' did not match expected value '%lld'\n",
- (long long)link_info.corder, (long long)1);
- PART_ERROR(H5Lget_info_by_idx_hard_name_order_increasing);
+ if (vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER) {
+ if (link_info.corder_valid && (link_info.corder != 1)) {
+ H5_FAILED();
+ HDprintf(" link's creation order value '%lld' did not match expected value '%lld'\n",
+ (long long)link_info.corder, (long long)1);
+ PART_ERROR(H5Lget_info_by_idx_hard_name_order_increasing);
+ }
}
HDmemset(&link_info, 0, sizeof(link_info));
@@ -15012,11 +14880,13 @@ test_get_link_info(void)
PART_ERROR(H5Lget_info_by_idx_hard_name_order_increasing);
}
- if (link_info.corder_valid && (link_info.corder != 2)) {
- H5_FAILED();
- HDprintf(" link's creation order value '%lld' did not match expected value '%lld'\n",
- (long long)link_info.corder, (long long)2);
- PART_ERROR(H5Lget_info_by_idx_hard_name_order_increasing);
+ if (vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER) {
+ if (link_info.corder_valid && (link_info.corder != 2)) {
+ H5_FAILED();
+ HDprintf(" link's creation order value '%lld' did not match expected value '%lld'\n",
+ (long long)link_info.corder, (long long)2);
+ PART_ERROR(H5Lget_info_by_idx_hard_name_order_increasing);
+ }
}
if (H5Gclose(subgroup_id) < 0) {
@@ -15039,7 +14909,7 @@ test_get_link_info(void)
PART_BEGIN(H5Lget_info_by_idx_hard_name_order_decreasing)
{
TESTING_2("H5Lget_info_by_idx2 on hard link by alphabetical order in decreasing order");
-#ifndef NO_DECREASING_ALPHA_ITER_ORDER
+
if ((subgroup_id = H5Gcreate2(group_id, GET_LINK_INFO_TEST_SUBGROUP8_NAME, H5P_DEFAULT, gcpl_id,
H5P_DEFAULT)) < 0) {
H5_FAILED();
@@ -15117,7 +14987,7 @@ test_get_link_info(void)
if (H5Lget_info_by_idx2(subgroup_id, ".", H5_INDEX_NAME, H5_ITER_DEC, 2, &link_info,
H5P_DEFAULT) < 0) {
H5_FAILED();
- HDprintf(" couldn't get hard link info for index %lld\n", 2);
+ HDprintf(" couldn't get hard link info for index %d\n", 2);
PART_ERROR(H5Lget_info_by_idx_hard_name_order_decreasing);
}
@@ -15127,18 +14997,20 @@ test_get_link_info(void)
PART_ERROR(H5Lget_info_by_idx_hard_name_order_decreasing);
}
- if (link_info.corder_valid && (link_info.corder != 0)) {
- H5_FAILED();
- HDprintf(" link's creation order value '%lld' did not match expected value '%lld'\n",
- (long long)link_info.corder, (long long)0);
- PART_ERROR(H5Lget_info_by_idx_hard_name_order_decreasing);
+ if (vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER) {
+ if (link_info.corder_valid && (link_info.corder != 0)) {
+ H5_FAILED();
+ HDprintf(" link's creation order value '%lld' did not match expected value '%lld'\n",
+ (long long)link_info.corder, (long long)0);
+ PART_ERROR(H5Lget_info_by_idx_hard_name_order_decreasing);
+ }
}
HDmemset(&link_info, 0, sizeof(link_info));
if (H5Lget_info_by_idx2(subgroup_id, ".", H5_INDEX_NAME, H5_ITER_DEC, 1, &link_info,
H5P_DEFAULT) < 0) {
H5_FAILED();
- HDprintf(" couldn't get hard link info for index %lld\n", 1);
+ HDprintf(" couldn't get hard link info for index %d\n", 1);
PART_ERROR(H5Lget_info_by_idx_hard_name_order_decreasing);
}
@@ -15148,18 +15020,20 @@ test_get_link_info(void)
PART_ERROR(H5Lget_info_by_idx_hard_name_order_decreasing);
}
- if (link_info.corder_valid && (link_info.corder != 1)) {
- H5_FAILED();
- HDprintf(" link's creation order value '%lld' did not match expected value '%lld'\n",
- (long long)link_info.corder, (long long)1);
- PART_ERROR(H5Lget_info_by_idx_hard_name_order_decreasing);
+ if (vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER) {
+ if (link_info.corder_valid && (link_info.corder != 1)) {
+ H5_FAILED();
+ HDprintf(" link's creation order value '%lld' did not match expected value '%lld'\n",
+ (long long)link_info.corder, (long long)1);
+ PART_ERROR(H5Lget_info_by_idx_hard_name_order_decreasing);
+ }
}
HDmemset(&link_info, 0, sizeof(link_info));
if (H5Lget_info_by_idx2(subgroup_id, ".", H5_INDEX_NAME, H5_ITER_DEC, 0, &link_info,
H5P_DEFAULT) < 0) {
H5_FAILED();
- HDprintf(" couldn't get hard link info for index %lld\n", 0);
+ HDprintf(" couldn't get hard link info for index %d\n", 0);
PART_ERROR(H5Lget_info_by_idx_hard_name_order_decreasing);
}
@@ -15169,11 +15043,13 @@ test_get_link_info(void)
PART_ERROR(H5Lget_info_by_idx_hard_name_order_decreasing);
}
- if (link_info.corder_valid && (link_info.corder != 2)) {
- H5_FAILED();
- HDprintf(" link's creation order value '%lld' did not match expected value '%lld'\n",
- (long long)link_info.corder, (long long)2);
- PART_ERROR(H5Lget_info_by_idx_hard_name_order_decreasing);
+ if (vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER) {
+ if (link_info.corder_valid && (link_info.corder != 2)) {
+ H5_FAILED();
+ HDprintf(" link's creation order value '%lld' did not match expected value '%lld'\n",
+ (long long)link_info.corder, (long long)2);
+ PART_ERROR(H5Lget_info_by_idx_hard_name_order_decreasing);
+ }
}
if (H5Gclose(subgroup_id) < 0) {
@@ -15183,10 +15059,6 @@ test_get_link_info(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Lget_info_by_idx_hard_name_order_decreasing);
-#endif
}
PART_END(H5Lget_info_by_idx_hard_name_order_decreasing);
@@ -15201,6 +15073,12 @@ test_get_link_info(void)
{
TESTING_2("H5Lget_info_by_idx2 on soft link by creation order in increasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Lget_info_by_idx_soft_crt_order_increasing);
+ }
+
if ((subgroup_id = H5Gcreate2(group_id, GET_LINK_INFO_TEST_SUBGROUP9_NAME, H5P_DEFAULT, gcpl_id,
H5P_DEFAULT)) < 0) {
H5_FAILED();
@@ -15394,6 +15272,12 @@ test_get_link_info(void)
{
TESTING_2("H5Lget_info_by_idx2 on soft link by creation order in decreasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Lget_info_by_idx_soft_crt_order_decreasing);
+ }
+
if ((subgroup_id = H5Gcreate2(group_id, GET_LINK_INFO_TEST_SUBGROUP10_NAME, H5P_DEFAULT, gcpl_id,
H5P_DEFAULT)) < 0) {
H5_FAILED();
@@ -15690,11 +15574,13 @@ test_get_link_info(void)
PART_ERROR(H5Lget_info_by_idx_soft_name_order_increasing);
}
- if (link_info.corder_valid && (link_info.corder != 0)) {
- H5_FAILED();
- HDprintf(" link's creation order value '%lld' did not match expected value '%lld'\n",
- (long long)link_info.corder, (long long)0);
- PART_ERROR(H5Lget_info_by_idx_soft_name_order_increasing);
+ if (vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER) {
+ if (link_info.corder_valid && (link_info.corder != 0)) {
+ H5_FAILED();
+ HDprintf(" link's creation order value '%lld' did not match expected value '%lld'\n",
+ (long long)link_info.corder, (long long)0);
+ PART_ERROR(H5Lget_info_by_idx_soft_name_order_increasing);
+ }
}
HDmemset(&link_info, 0, sizeof(link_info));
@@ -15721,11 +15607,13 @@ test_get_link_info(void)
PART_ERROR(H5Lget_info_by_idx_soft_name_order_increasing);
}
- if (link_info.corder_valid && (link_info.corder != 1)) {
- H5_FAILED();
- HDprintf(" link's creation order value '%lld' did not match expected value '%lld'\n",
- (long long)link_info.corder, (long long)1);
- PART_ERROR(H5Lget_info_by_idx_soft_name_order_increasing);
+ if (vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER) {
+ if (link_info.corder_valid && (link_info.corder != 1)) {
+ H5_FAILED();
+ HDprintf(" link's creation order value '%lld' did not match expected value '%lld'\n",
+ (long long)link_info.corder, (long long)1);
+ PART_ERROR(H5Lget_info_by_idx_soft_name_order_increasing);
+ }
}
HDmemset(&link_info, 0, sizeof(link_info));
@@ -15752,11 +15640,13 @@ test_get_link_info(void)
PART_ERROR(H5Lget_info_by_idx_soft_name_order_increasing);
}
- if (link_info.corder_valid && (link_info.corder != 2)) {
- H5_FAILED();
- HDprintf(" link's creation order value '%lld' did not match expected value '%lld'\n",
- (long long)link_info.corder, (long long)2);
- PART_ERROR(H5Lget_info_by_idx_soft_name_order_increasing);
+ if (vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER) {
+ if (link_info.corder_valid && (link_info.corder != 2)) {
+ H5_FAILED();
+ HDprintf(" link's creation order value '%lld' did not match expected value '%lld'\n",
+ (long long)link_info.corder, (long long)2);
+ PART_ERROR(H5Lget_info_by_idx_soft_name_order_increasing);
+ }
}
if (H5Gclose(subgroup_id) < 0) {
@@ -15779,7 +15669,7 @@ test_get_link_info(void)
PART_BEGIN(H5Lget_info_by_idx_soft_name_order_decreasing)
{
TESTING_2("H5Lget_info_by_idx2 on soft link by alphabetical order in decreasing order");
-#ifndef NO_DECREASING_ALPHA_ITER_ORDER
+
if ((subgroup_id = H5Gcreate2(group_id, GET_LINK_INFO_TEST_SUBGROUP12_NAME, H5P_DEFAULT, gcpl_id,
H5P_DEFAULT)) < 0) {
H5_FAILED();
@@ -15863,7 +15753,7 @@ test_get_link_info(void)
if (H5Lget_info_by_idx2(subgroup_id, ".", H5_INDEX_NAME, H5_ITER_DEC, 2, &link_info,
H5P_DEFAULT) < 0) {
H5_FAILED();
- HDprintf(" couldn't get soft link info for index %lld\n", 2);
+ HDprintf(" couldn't get soft link info for index %d\n", 2);
PART_ERROR(H5Lget_info_by_idx_soft_name_order_decreasing);
}
@@ -15878,23 +15768,25 @@ test_get_link_info(void)
1;
if (link_info.u.val_size != link_val_size) {
H5_FAILED();
- HDprintf(" link's value size '%lld' did not match expected value '%lld'\n",
+ HDprintf(" link's value size '%lld' did not match expected value '%zu'\n",
(long long)link_info.u.val_size, link_val_size);
PART_ERROR(H5Lget_info_by_idx_soft_name_order_decreasing);
}
- if (link_info.corder_valid && (link_info.corder != 0)) {
- H5_FAILED();
- HDprintf(" link's creation order value '%lld' did not match expected value '%lld'\n",
- (long long)link_info.corder, (long long)0);
- PART_ERROR(H5Lget_info_by_idx_soft_name_order_decreasing);
+ if (vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER) {
+ if (link_info.corder_valid && (link_info.corder != 0)) {
+ H5_FAILED();
+ HDprintf(" link's creation order value '%lld' did not match expected value '%lld'\n",
+ (long long)link_info.corder, (long long)0);
+ PART_ERROR(H5Lget_info_by_idx_soft_name_order_decreasing);
+ }
}
HDmemset(&link_info, 0, sizeof(link_info));
if (H5Lget_info_by_idx2(subgroup_id, ".", H5_INDEX_NAME, H5_ITER_DEC, 1, &link_info,
H5P_DEFAULT) < 0) {
H5_FAILED();
- HDprintf(" couldn't get soft link info for index %lld\n", 1);
+ HDprintf(" couldn't get soft link info for index %d\n", 1);
PART_ERROR(H5Lget_info_by_idx_soft_name_order_decreasing);
}
@@ -15909,23 +15801,25 @@ test_get_link_info(void)
1;
if (link_info.u.val_size != link_val_size) {
H5_FAILED();
- HDprintf(" link's value size '%lld' did not match expected value '%lld'\n",
+ HDprintf(" link's value size '%lld' did not match expected value '%zu'\n",
(long long)link_info.u.val_size, link_val_size);
PART_ERROR(H5Lget_info_by_idx_soft_name_order_decreasing);
}
- if (link_info.corder_valid && (link_info.corder != 1)) {
- H5_FAILED();
- HDprintf(" link's creation order value '%lld' did not match expected value '%lld'\n",
- (long long)link_info.corder, (long long)1);
- PART_ERROR(H5Lget_info_by_idx_soft_name_order_decreasing);
+ if (vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER) {
+ if (link_info.corder_valid && (link_info.corder != 1)) {
+ H5_FAILED();
+ HDprintf(" link's creation order value '%lld' did not match expected value '%lld'\n",
+ (long long)link_info.corder, (long long)1);
+ PART_ERROR(H5Lget_info_by_idx_soft_name_order_decreasing);
+ }
}
HDmemset(&link_info, 0, sizeof(link_info));
if (H5Lget_info_by_idx2(subgroup_id, ".", H5_INDEX_NAME, H5_ITER_DEC, 0, &link_info,
H5P_DEFAULT) < 0) {
H5_FAILED();
- HDprintf(" couldn't get soft link info for index %lld\n", 0);
+ HDprintf(" couldn't get soft link info for index %d\n", 0);
PART_ERROR(H5Lget_info_by_idx_soft_name_order_decreasing);
}
@@ -15940,16 +15834,18 @@ test_get_link_info(void)
1;
if (link_info.u.val_size != link_val_size) {
H5_FAILED();
- HDprintf(" link's value size '%lld' did not match expected value '%lld'\n",
+ HDprintf(" link's value size '%lld' did not match expected value '%zu'\n",
(long long)link_info.u.val_size, link_val_size);
PART_ERROR(H5Lget_info_by_idx_soft_name_order_decreasing);
}
- if (link_info.corder_valid && (link_info.corder != 2)) {
- H5_FAILED();
- HDprintf(" link's creation order value '%lld' did not match expected value '%lld'\n",
- (long long)link_info.corder, (long long)2);
- PART_ERROR(H5Lget_info_by_idx_soft_name_order_decreasing);
+ if (vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER) {
+ if (link_info.corder_valid && (link_info.corder != 2)) {
+ H5_FAILED();
+ HDprintf(" link's creation order value '%lld' did not match expected value '%lld'\n",
+ (long long)link_info.corder, (long long)2);
+ PART_ERROR(H5Lget_info_by_idx_soft_name_order_decreasing);
+ }
}
if (H5Gclose(subgroup_id) < 0) {
@@ -15959,10 +15855,6 @@ test_get_link_info(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Lget_info_by_idx_soft_name_order_decreasing);
-#endif
}
PART_END(H5Lget_info_by_idx_soft_name_order_decreasing);
@@ -15976,7 +15868,13 @@ test_get_link_info(void)
PART_BEGIN(H5Lget_info_by_idx_external_crt_order_increasing)
{
TESTING_2("H5Lget_info_by_idx2 on external link by creation order in increasing order");
-#ifndef NO_EXTERNAL_LINKS
+
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Lget_info_by_idx_external_crt_order_increasing);
+ }
+
HDsnprintf(ext_link_filename, H5_API_TEST_FILENAME_MAX_LENGTH, "%s",
EXTERNAL_LINK_TEST_FILE_NAME);
@@ -16000,7 +15898,6 @@ test_get_link_info(void)
}
/* Create several external links */
- ext_objname = "/";
if (H5Lcreate_external(ext_link_filename, ext_objname, subgroup_id,
GET_LINK_INFO_TEST_EXT_LINK_NAME, H5P_DEFAULT, H5P_DEFAULT) < 0) {
H5_FAILED();
@@ -16070,7 +15967,7 @@ test_get_link_info(void)
if (H5Lget_info_by_idx2(subgroup_id, ".", H5_INDEX_CRT_ORDER, H5_ITER_INC, 0, &link_info,
H5P_DEFAULT) < 0) {
H5_FAILED();
- HDprintf(" couldn't get external link info for index %lld\n", 0);
+ HDprintf(" couldn't get external link info for index %d\n", 0);
PART_ERROR(H5Lget_info_by_idx_external_crt_order_increasing);
}
@@ -16083,7 +15980,7 @@ test_get_link_info(void)
link_val_size = 1 + strlen(ext_link_filename) + 1 + strlen(ext_objname) + 1;
if (link_info.u.val_size != link_val_size) {
H5_FAILED();
- HDprintf(" link's value size '%lld' did not match expected value '%lld'\n",
+ HDprintf(" link's value size '%lld' did not match expected value '%zu'\n",
(long long)link_info.u.val_size, link_val_size);
PART_ERROR(H5Lget_info_by_idx_external_crt_order_increasing);
}
@@ -16099,7 +15996,7 @@ test_get_link_info(void)
if (H5Lget_info_by_idx2(subgroup_id, ".", H5_INDEX_CRT_ORDER, H5_ITER_INC, 1, &link_info,
H5P_DEFAULT) < 0) {
H5_FAILED();
- HDprintf(" couldn't get external link info for index %lld\n", 1);
+ HDprintf(" couldn't get external link info for index %d\n", 1);
PART_ERROR(H5Lget_info_by_idx_external_crt_order_increasing);
}
@@ -16112,7 +16009,7 @@ test_get_link_info(void)
link_val_size = 1 + strlen(ext_link_filename) + 1 + strlen(ext_objname) + 1;
if (link_info.u.val_size != link_val_size) {
H5_FAILED();
- HDprintf(" link's value size '%lld' did not match expected value '%lld'\n",
+ HDprintf(" link's value size '%lld' did not match expected value '%zu'\n",
(long long)link_info.u.val_size, link_val_size);
PART_ERROR(H5Lget_info_by_idx_external_crt_order_increasing);
}
@@ -16128,7 +16025,7 @@ test_get_link_info(void)
if (H5Lget_info_by_idx2(subgroup_id, ".", H5_INDEX_CRT_ORDER, H5_ITER_INC, 2, &link_info,
H5P_DEFAULT) < 0) {
H5_FAILED();
- HDprintf(" couldn't get external link info for index %lld\n", 2);
+ HDprintf(" couldn't get external link info for index %d\n", 2);
PART_ERROR(H5Lget_info_by_idx_external_crt_order_increasing);
}
@@ -16141,7 +16038,7 @@ test_get_link_info(void)
link_val_size = 1 + strlen(ext_link_filename) + 1 + strlen(ext_objname) + 1;
if (link_info.u.val_size != link_val_size) {
H5_FAILED();
- HDprintf(" link's value size '%lld' did not match expected value '%lld'\n",
+ HDprintf(" link's value size '%lld' did not match expected value '%zu'\n",
(long long)link_info.u.val_size, link_val_size);
PART_ERROR(H5Lget_info_by_idx_external_crt_order_increasing);
}
@@ -16160,10 +16057,6 @@ test_get_link_info(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Lget_info_by_idx_external_crt_order_increasing);
-#endif
}
PART_END(H5Lget_info_by_idx_external_crt_order_increasing);
@@ -16179,7 +16072,13 @@ test_get_link_info(void)
PART_BEGIN(H5Lget_info_by_idx_external_crt_order_decreasing)
{
TESTING_2("H5Lget_info_by_idx2 on external link by creation order in decreasing order");
-#ifndef NO_EXTERNAL_LINKS
+
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Lget_info_by_idx_external_crt_order_decreasing);
+ }
+
HDsnprintf(ext_link_filename, H5_API_TEST_FILENAME_MAX_LENGTH, "%s",
EXTERNAL_LINK_TEST_FILE_NAME);
@@ -16203,7 +16102,6 @@ test_get_link_info(void)
}
/* Create several external links */
- ext_objname = "/";
if (H5Lcreate_external(ext_link_filename, ext_objname, subgroup_id,
GET_LINK_INFO_TEST_EXT_LINK_NAME, H5P_DEFAULT, H5P_DEFAULT) < 0) {
H5_FAILED();
@@ -16273,7 +16171,7 @@ test_get_link_info(void)
if (H5Lget_info_by_idx2(subgroup_id, ".", H5_INDEX_CRT_ORDER, H5_ITER_DEC, 2, &link_info,
H5P_DEFAULT) < 0) {
H5_FAILED();
- HDprintf(" couldn't get external link info for index %lld\n", 2);
+ HDprintf(" couldn't get external link info for index %d\n", 2);
PART_ERROR(H5Lget_info_by_idx_external_crt_order_decreasing);
}
@@ -16286,7 +16184,7 @@ test_get_link_info(void)
link_val_size = 1 + strlen(ext_link_filename) + 1 + strlen(ext_objname) + 1;
if (link_info.u.val_size != link_val_size) {
H5_FAILED();
- HDprintf(" link's value size '%lld' did not match expected value '%lld'\n",
+ HDprintf(" link's value size '%lld' did not match expected value '%zu'\n",
(long long)link_info.u.val_size, link_val_size);
PART_ERROR(H5Lget_info_by_idx_external_crt_order_decreasing);
}
@@ -16302,7 +16200,7 @@ test_get_link_info(void)
if (H5Lget_info_by_idx2(subgroup_id, ".", H5_INDEX_CRT_ORDER, H5_ITER_DEC, 1, &link_info,
H5P_DEFAULT) < 0) {
H5_FAILED();
- HDprintf(" couldn't get external link info for index %lld\n", 1);
+ HDprintf(" couldn't get external link info for index %d\n", 1);
PART_ERROR(H5Lget_info_by_idx_external_crt_order_decreasing);
}
@@ -16315,7 +16213,7 @@ test_get_link_info(void)
link_val_size = 1 + strlen(ext_link_filename) + 1 + strlen(ext_objname) + 1;
if (link_info.u.val_size != link_val_size) {
H5_FAILED();
- HDprintf(" link's value size '%lld' did not match expected value '%lld'\n",
+ HDprintf(" link's value size '%lld' did not match expected value '%zu'\n",
(long long)link_info.u.val_size, link_val_size);
PART_ERROR(H5Lget_info_by_idx_external_crt_order_decreasing);
}
@@ -16331,7 +16229,7 @@ test_get_link_info(void)
if (H5Lget_info_by_idx2(subgroup_id, ".", H5_INDEX_CRT_ORDER, H5_ITER_DEC, 0, &link_info,
H5P_DEFAULT) < 0) {
H5_FAILED();
- HDprintf(" couldn't get external link info for index %lld\n", 0);
+ HDprintf(" couldn't get external link info for index %d\n", 0);
PART_ERROR(H5Lget_info_by_idx_external_crt_order_decreasing);
}
@@ -16344,7 +16242,7 @@ test_get_link_info(void)
link_val_size = 1 + strlen(ext_link_filename) + 1 + strlen(ext_objname) + 1;
if (link_info.u.val_size != link_val_size) {
H5_FAILED();
- HDprintf(" link's value size '%lld' did not match expected value '%lld'\n",
+ HDprintf(" link's value size '%lld' did not match expected value '%zu'\n",
(long long)link_info.u.val_size, link_val_size);
PART_ERROR(H5Lget_info_by_idx_external_crt_order_decreasing);
}
@@ -16363,10 +16261,6 @@ test_get_link_info(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Lget_info_by_idx_external_crt_order_decreasing);
-#endif
}
PART_END(H5Lget_info_by_idx_external_crt_order_decreasing);
@@ -16382,7 +16276,7 @@ test_get_link_info(void)
PART_BEGIN(H5Lget_info_by_idx_external_name_order_increasing)
{
TESTING_2("H5Lget_info_by_idx2 on external link by alphabetical order in increasing order");
-#ifndef NO_EXTERNAL_LINKS
+
HDsnprintf(ext_link_filename, H5_API_TEST_FILENAME_MAX_LENGTH, "%s",
EXTERNAL_LINK_TEST_FILE_NAME);
@@ -16406,7 +16300,6 @@ test_get_link_info(void)
}
/* Create several external links */
- ext_objname = "/";
if (H5Lcreate_external(ext_link_filename, ext_objname, subgroup_id,
GET_LINK_INFO_TEST_EXT_LINK_NAME, H5P_DEFAULT, H5P_DEFAULT) < 0) {
H5_FAILED();
@@ -16476,7 +16369,7 @@ test_get_link_info(void)
if (H5Lget_info_by_idx2(subgroup_id, ".", H5_INDEX_NAME, H5_ITER_INC, 0, &link_info,
H5P_DEFAULT) < 0) {
H5_FAILED();
- HDprintf(" couldn't get external link info for index %lld\n", 0);
+ HDprintf(" couldn't get external link info for index %d\n", 0);
PART_ERROR(H5Lget_info_by_idx_external_name_order_increasing);
}
@@ -16489,23 +16382,25 @@ test_get_link_info(void)
link_val_size = 1 + strlen(ext_link_filename) + 1 + strlen(ext_objname) + 1;
if (link_info.u.val_size != link_val_size) {
H5_FAILED();
- HDprintf(" link's value size '%lld' did not match expected value '%lld'\n",
+ HDprintf(" link's value size '%lld' did not match expected value '%zu'\n",
(long long)link_info.u.val_size, link_val_size);
PART_ERROR(H5Lget_info_by_idx_external_name_order_increasing);
}
- if (link_info.corder_valid && (link_info.corder != 0)) {
- H5_FAILED();
- HDprintf(" link's creation order value '%lld' did not match expected value '%lld'\n",
- (long long)link_info.corder, (long long)0);
- PART_ERROR(H5Lget_info_by_idx_external_name_order_increasing);
+ if (vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER) {
+ if (link_info.corder_valid && (link_info.corder != 0)) {
+ H5_FAILED();
+ HDprintf(" link's creation order value '%lld' did not match expected value '%lld'\n",
+ (long long)link_info.corder, (long long)0);
+ PART_ERROR(H5Lget_info_by_idx_external_name_order_increasing);
+ }
}
HDmemset(&link_info, 0, sizeof(link_info));
if (H5Lget_info_by_idx2(subgroup_id, ".", H5_INDEX_NAME, H5_ITER_INC, 1, &link_info,
H5P_DEFAULT) < 0) {
H5_FAILED();
- HDprintf(" couldn't get external link info for index %lld\n", 1);
+ HDprintf(" couldn't get external link info for index %d\n", 1);
PART_ERROR(H5Lget_info_by_idx_external_name_order_increasing);
}
@@ -16518,23 +16413,25 @@ test_get_link_info(void)
link_val_size = 1 + strlen(ext_link_filename) + 1 + strlen(ext_objname) + 1;
if (link_info.u.val_size != link_val_size) {
H5_FAILED();
- HDprintf(" link's value size '%lld' did not match expected value '%lld'\n",
+ HDprintf(" link's value size '%lld' did not match expected value '%zu'\n",
(long long)link_info.u.val_size, link_val_size);
PART_ERROR(H5Lget_info_by_idx_external_name_order_increasing);
}
- if (link_info.corder_valid && (link_info.corder != 1)) {
- H5_FAILED();
- HDprintf(" link's creation order value '%lld' did not match expected value '%lld'\n",
- (long long)link_info.corder, (long long)1);
- PART_ERROR(H5Lget_info_by_idx_external_name_order_increasing);
+ if (vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER) {
+ if (link_info.corder_valid && (link_info.corder != 1)) {
+ H5_FAILED();
+ HDprintf(" link's creation order value '%lld' did not match expected value '%lld'\n",
+ (long long)link_info.corder, (long long)1);
+ PART_ERROR(H5Lget_info_by_idx_external_name_order_increasing);
+ }
}
HDmemset(&link_info, 0, sizeof(link_info));
if (H5Lget_info_by_idx2(subgroup_id, ".", H5_INDEX_NAME, H5_ITER_INC, 2, &link_info,
H5P_DEFAULT) < 0) {
H5_FAILED();
- HDprintf(" couldn't get external link info for index %lld\n", 2);
+ HDprintf(" couldn't get external link info for index %d\n", 2);
PART_ERROR(H5Lget_info_by_idx_external_name_order_increasing);
}
@@ -16547,16 +16444,18 @@ test_get_link_info(void)
link_val_size = 1 + strlen(ext_link_filename) + 1 + strlen(ext_objname) + 1;
if (link_info.u.val_size != link_val_size) {
H5_FAILED();
- HDprintf(" link's value size '%lld' did not match expected value '%lld'\n",
+ HDprintf(" link's value size '%lld' did not match expected value '%zu'\n",
(long long)link_info.u.val_size, link_val_size);
PART_ERROR(H5Lget_info_by_idx_external_name_order_increasing);
}
- if (link_info.corder_valid && (link_info.corder != 2)) {
- H5_FAILED();
- HDprintf(" link's creation order value '%lld' did not match expected value '%lld'\n",
- (long long)link_info.corder, (long long)2);
- PART_ERROR(H5Lget_info_by_idx_external_name_order_increasing);
+ if (vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER) {
+ if (link_info.corder_valid && (link_info.corder != 2)) {
+ H5_FAILED();
+ HDprintf(" link's creation order value '%lld' did not match expected value '%lld'\n",
+ (long long)link_info.corder, (long long)2);
+ PART_ERROR(H5Lget_info_by_idx_external_name_order_increasing);
+ }
}
if (H5Gclose(subgroup_id) < 0) {
@@ -16566,10 +16465,6 @@ test_get_link_info(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Lget_info_by_idx_external_name_order_increasing);
-#endif
}
PART_END(H5Lget_info_by_idx_external_name_order_increasing);
@@ -16585,7 +16480,7 @@ test_get_link_info(void)
PART_BEGIN(H5Lget_info_by_idx_external_name_order_decreasing)
{
TESTING_2("H5Lget_info_by_idx2 on external link by alphabetical order in decreasing order");
-#ifndef NO_DECREASING_ALPHA_ITER_ORDER
+
HDsnprintf(ext_link_filename, H5_API_TEST_FILENAME_MAX_LENGTH, "%s",
EXTERNAL_LINK_TEST_FILE_NAME);
@@ -16609,7 +16504,6 @@ test_get_link_info(void)
}
/* Create several external links */
- ext_objname = "/";
if (H5Lcreate_external(ext_link_filename, ext_objname, subgroup_id,
GET_LINK_INFO_TEST_EXT_LINK_NAME, H5P_DEFAULT, H5P_DEFAULT) < 0) {
H5_FAILED();
@@ -16679,7 +16573,7 @@ test_get_link_info(void)
if (H5Lget_info_by_idx2(subgroup_id, ".", H5_INDEX_NAME, H5_ITER_DEC, 2, &link_info,
H5P_DEFAULT) < 0) {
H5_FAILED();
- HDprintf(" couldn't get external link info for index %lld\n", 2);
+ HDprintf(" couldn't get external link info for index %d\n", 2);
PART_ERROR(H5Lget_info_by_idx_external_name_order_decreasing);
}
@@ -16692,23 +16586,25 @@ test_get_link_info(void)
link_val_size = 1 + strlen(ext_link_filename) + 1 + strlen(ext_objname) + 1;
if (link_info.u.val_size != link_val_size) {
H5_FAILED();
- HDprintf(" link's value size '%lld' did not match expected value '%lld'\n",
+ HDprintf(" link's value size '%lld' did not match expected value '%zu'\n",
(long long)link_info.u.val_size, link_val_size);
PART_ERROR(H5Lget_info_by_idx_external_name_order_decreasing);
}
- if (link_info.corder_valid && (link_info.corder != 0)) {
- H5_FAILED();
- HDprintf(" link's creation order value '%lld' did not match expected value '%lld'\n",
- (long long)link_info.corder, (long long)0);
- PART_ERROR(H5Lget_info_by_idx_external_name_order_decreasing);
+ if (vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER) {
+ if (link_info.corder_valid && (link_info.corder != 0)) {
+ H5_FAILED();
+ HDprintf(" link's creation order value '%lld' did not match expected value '%lld'\n",
+ (long long)link_info.corder, (long long)0);
+ PART_ERROR(H5Lget_info_by_idx_external_name_order_decreasing);
+ }
}
HDmemset(&link_info, 0, sizeof(link_info));
if (H5Lget_info_by_idx2(subgroup_id, ".", H5_INDEX_NAME, H5_ITER_DEC, 1, &link_info,
H5P_DEFAULT) < 0) {
H5_FAILED();
- HDprintf(" couldn't get external link info for index %lld\n", 1);
+ HDprintf(" couldn't get external link info for index %d\n", 1);
PART_ERROR(H5Lget_info_by_idx_external_name_order_decreasing);
}
@@ -16721,23 +16617,25 @@ test_get_link_info(void)
link_val_size = 1 + strlen(ext_link_filename) + 1 + strlen(ext_objname) + 1;
if (link_info.u.val_size != link_val_size) {
H5_FAILED();
- HDprintf(" link's value size '%lld' did not match expected value '%lld'\n",
+ HDprintf(" link's value size '%lld' did not match expected value '%zu'\n",
(long long)link_info.u.val_size, link_val_size);
PART_ERROR(H5Lget_info_by_idx_external_name_order_decreasing);
}
- if (link_info.corder_valid && (link_info.corder != 1)) {
- H5_FAILED();
- HDprintf(" link's creation order value '%lld' did not match expected value '%lld'\n",
- (long long)link_info.corder, (long long)1);
- PART_ERROR(H5Lget_info_by_idx_external_name_order_decreasing);
+ if (vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER) {
+ if (link_info.corder_valid && (link_info.corder != 1)) {
+ H5_FAILED();
+ HDprintf(" link's creation order value '%lld' did not match expected value '%lld'\n",
+ (long long)link_info.corder, (long long)1);
+ PART_ERROR(H5Lget_info_by_idx_external_name_order_decreasing);
+ }
}
HDmemset(&link_info, 0, sizeof(link_info));
if (H5Lget_info_by_idx2(subgroup_id, ".", H5_INDEX_NAME, H5_ITER_DEC, 0, &link_info,
H5P_DEFAULT) < 0) {
H5_FAILED();
- HDprintf(" couldn't get external link info for index %lld\n", 0);
+ HDprintf(" couldn't get external link info for index %d\n", 0);
PART_ERROR(H5Lget_info_by_idx_external_name_order_decreasing);
}
@@ -16750,16 +16648,18 @@ test_get_link_info(void)
link_val_size = 1 + strlen(ext_link_filename) + 1 + strlen(ext_objname) + 1;
if (link_info.u.val_size != link_val_size) {
H5_FAILED();
- HDprintf(" link's value size '%lld' did not match expected value '%lld'\n",
+ HDprintf(" link's value size '%lld' did not match expected value '%zu'\n",
(long long)link_info.u.val_size, link_val_size);
PART_ERROR(H5Lget_info_by_idx_external_name_order_decreasing);
}
- if (link_info.corder_valid && (link_info.corder != 2)) {
- H5_FAILED();
- HDprintf(" link's creation order value '%lld' did not match expected value '%lld'\n",
- (long long)link_info.corder, (long long)2);
- PART_ERROR(H5Lget_info_by_idx_external_name_order_decreasing);
+ if (vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER) {
+ if (link_info.corder_valid && (link_info.corder != 2)) {
+ H5_FAILED();
+ HDprintf(" link's creation order value '%lld' did not match expected value '%lld'\n",
+ (long long)link_info.corder, (long long)2);
+ PART_ERROR(H5Lget_info_by_idx_external_name_order_decreasing);
+ }
}
if (H5Gclose(subgroup_id) < 0) {
@@ -16769,10 +16669,6 @@ test_get_link_info(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Lget_info_by_idx_external_name_order_decreasing);
-#endif
}
PART_END(H5Lget_info_by_idx_external_name_order_decreasing);
@@ -16900,10 +16796,10 @@ test_get_link_info_invalid_params(void)
/* Make sure the connector supports the API functions being tested */
if (!(vol_cap_flags_g & H5VL_CAP_FLAG_FILE_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_GROUP_BASIC) ||
!(vol_cap_flags_g & H5VL_CAP_FLAG_LINK_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_LINK_MORE) ||
- !(vol_cap_flags_g & H5VL_CAP_FLAG_HARD_LINKS) || !(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ !(vol_cap_flags_g & H5VL_CAP_FLAG_HARD_LINKS)) {
SKIPPED();
- HDprintf(" API functions for basic file, group, basic, more, soft, hard, external link, or "
- "creation order aren't supported with this connector\n");
+ HDprintf(" API functions for basic file, group, link, or hard link "
+ "aren't supported with this connector\n");
return 0;
}
@@ -16927,12 +16823,6 @@ test_get_link_info_invalid_params(void)
goto error;
}
- if (H5Pset_link_creation_order(gcpl_id, H5P_CRT_ORDER_TRACKED | H5P_CRT_ORDER_INDEXED) < 0) {
- H5_FAILED();
- HDprintf(" couldn't enable link creation order tracking and indexing on GCPL\n");
- goto error;
- }
-
if ((group_id = H5Gcreate2(container_group, GET_LINK_INFO_INVALID_PARAMS_TEST_GROUP_NAME, H5P_DEFAULT,
gcpl_id, H5P_DEFAULT)) < 0) {
H5_FAILED();
@@ -17051,8 +16941,8 @@ test_get_link_info_invalid_params(void)
H5E_BEGIN_TRY
{
- err_ret = H5Lget_info_by_idx2(H5I_INVALID_HID, ".", H5_INDEX_CRT_ORDER, H5_ITER_INC, 0,
- &link_info, H5P_DEFAULT);
+ err_ret = H5Lget_info_by_idx2(H5I_INVALID_HID, ".", H5_INDEX_NAME, H5_ITER_INC, 0, &link_info,
+ H5P_DEFAULT);
}
H5E_END_TRY;
@@ -17072,7 +16962,7 @@ test_get_link_info_invalid_params(void)
H5E_BEGIN_TRY
{
- err_ret = H5Lget_info_by_idx2(group_id, NULL, H5_INDEX_CRT_ORDER, H5_ITER_INC, 0, &link_info,
+ err_ret = H5Lget_info_by_idx2(group_id, NULL, H5_INDEX_NAME, H5_ITER_INC, 0, &link_info,
H5P_DEFAULT);
}
H5E_END_TRY;
@@ -17085,8 +16975,8 @@ test_get_link_info_invalid_params(void)
H5E_BEGIN_TRY
{
- err_ret = H5Lget_info_by_idx2(group_id, "", H5_INDEX_CRT_ORDER, H5_ITER_INC, 0, &link_info,
- H5P_DEFAULT);
+ err_ret =
+ H5Lget_info_by_idx2(group_id, "", H5_INDEX_NAME, H5_ITER_INC, 0, &link_info, H5P_DEFAULT);
}
H5E_END_TRY;
@@ -17140,8 +17030,8 @@ test_get_link_info_invalid_params(void)
H5E_BEGIN_TRY
{
- err_ret = H5Lget_info_by_idx2(group_id, ".", H5_INDEX_CRT_ORDER, H5_ITER_UNKNOWN, 0,
- &link_info, H5P_DEFAULT);
+ err_ret = H5Lget_info_by_idx2(group_id, ".", H5_INDEX_NAME, H5_ITER_UNKNOWN, 0, &link_info,
+ H5P_DEFAULT);
}
H5E_END_TRY;
@@ -17154,8 +17044,8 @@ test_get_link_info_invalid_params(void)
H5E_BEGIN_TRY
{
- err_ret = H5Lget_info_by_idx2(group_id, ".", H5_INDEX_CRT_ORDER, H5_ITER_N, 0, &link_info,
- H5P_DEFAULT);
+ err_ret =
+ H5Lget_info_by_idx2(group_id, ".", H5_INDEX_NAME, H5_ITER_N, 0, &link_info, H5P_DEFAULT);
}
H5E_END_TRY;
@@ -17175,7 +17065,7 @@ test_get_link_info_invalid_params(void)
H5E_BEGIN_TRY
{
- err_ret = H5Lget_info_by_idx2(group_id, ".", H5_INDEX_CRT_ORDER, H5_ITER_INC, 0, &link_info,
+ err_ret = H5Lget_info_by_idx2(group_id, ".", H5_INDEX_NAME, H5_ITER_INC, 0, &link_info,
H5I_INVALID_HID);
}
H5E_END_TRY;
@@ -17234,9 +17124,7 @@ test_get_link_name(void)
hid_t subgroup_id = H5I_INVALID_HID;
hid_t gcpl_id = H5I_INVALID_HID;
char link_name_buf[GET_LINK_NAME_TEST_BUF_SIZE];
-#ifndef NO_EXTERNAL_LINKS
- char ext_link_filename[H5_API_TEST_FILENAME_MAX_LENGTH];
-#endif
+ char ext_link_filename[H5_API_TEST_FILENAME_MAX_LENGTH];
TESTING_MULTIPART("link name retrieval");
@@ -17244,10 +17132,10 @@ test_get_link_name(void)
if (!(vol_cap_flags_g & H5VL_CAP_FLAG_FILE_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_GROUP_BASIC) ||
!(vol_cap_flags_g & H5VL_CAP_FLAG_LINK_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_LINK_MORE) ||
!(vol_cap_flags_g & H5VL_CAP_FLAG_HARD_LINKS) || !(vol_cap_flags_g & H5VL_CAP_FLAG_EXTERNAL_LINKS) ||
- !(vol_cap_flags_g & H5VL_CAP_FLAG_SOFT_LINKS) || !(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ !(vol_cap_flags_g & H5VL_CAP_FLAG_SOFT_LINKS)) {
SKIPPED();
- HDprintf(" API functions for basic file, group, basic, more, soft, hard, external link, or "
- "creation order aren't supported with this connector\n");
+ HDprintf(" API functions for basic file, group, link, soft link, hard link, or external link "
+ "aren't supported with this connector\n");
return 0;
}
@@ -17271,10 +17159,12 @@ test_get_link_name(void)
goto error;
}
- if (H5Pset_link_creation_order(gcpl_id, H5P_CRT_ORDER_TRACKED) < 0) {
- H5_FAILED();
- HDprintf(" couldn't set link creation order tracking\n");
- goto error;
+ if (vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER) {
+ if (H5Pset_link_creation_order(gcpl_id, H5P_CRT_ORDER_TRACKED) < 0) {
+ H5_FAILED();
+ HDprintf(" couldn't set link creation order tracking\n");
+ goto error;
+ }
}
if ((group_id = H5Gcreate2(container_group, GET_LINK_NAME_TEST_GROUP_NAME, H5P_DEFAULT, gcpl_id,
@@ -17292,6 +17182,12 @@ test_get_link_name(void)
{
TESTING_2("H5Lget_name_by_idx on hard link by creation order in increasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Lget_name_by_idx_hard_crt_order_increasing);
+ }
+
/* Create group to hold some links */
if ((subgroup_id = H5Gcreate2(group_id, GET_LINK_NAME_TEST_HARD_SUBGROUP_NAME, H5P_DEFAULT,
gcpl_id, H5P_DEFAULT)) < 0) {
@@ -17454,6 +17350,12 @@ test_get_link_name(void)
{
TESTING_2("H5Lget_name_by_idx on hard link by creation order in decreasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Lget_name_by_idx_hard_crt_order_decreasing);
+ }
+
/* Create group to hold some links */
if ((subgroup_id = H5Gcreate2(group_id, GET_LINK_NAME_TEST_HARD_SUBGROUP_NAME2, H5P_DEFAULT,
gcpl_id, H5P_DEFAULT)) < 0) {
@@ -17777,7 +17679,7 @@ test_get_link_name(void)
PART_BEGIN(H5Lget_name_by_idx_hard_name_order_decreasing)
{
TESTING_2("H5Lget_name_by_idx on hard link by alphabetical order in decreasing order");
-#ifndef NO_DECREASING_ALPHA_ITER_ORDER
+
/* Create group to hold some links */
if ((subgroup_id = H5Gcreate2(group_id, GET_LINK_NAME_TEST_HARD_SUBGROUP_NAME4, H5P_DEFAULT,
gcpl_id, H5P_DEFAULT)) < 0) {
@@ -17926,10 +17828,6 @@ test_get_link_name(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Lget_name_by_idx_hard_name_order_decreasing);
-#endif
}
PART_END(H5Lget_name_by_idx_hard_name_order_decreasing);
@@ -17944,6 +17842,12 @@ test_get_link_name(void)
{
TESTING_2("H5Lget_name_by_idx on soft link by creation order in increasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Lget_name_by_idx_soft_crt_order_increasing);
+ }
+
/* Create group to hold some links */
if ((subgroup_id = H5Gcreate2(group_id, GET_LINK_NAME_TEST_SOFT_SUBGROUP_NAME, H5P_DEFAULT,
gcpl_id, H5P_DEFAULT)) < 0) {
@@ -18106,6 +18010,12 @@ test_get_link_name(void)
{
TESTING_2("H5Lget_name_by_idx on soft link by creation order in decreasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Lget_name_by_idx_soft_crt_order_decreasing);
+ }
+
/* Create group to hold some links */
if ((subgroup_id = H5Gcreate2(group_id, GET_LINK_NAME_TEST_SOFT_SUBGROUP_NAME2, H5P_DEFAULT,
gcpl_id, H5P_DEFAULT)) < 0) {
@@ -18429,7 +18339,7 @@ test_get_link_name(void)
PART_BEGIN(H5Lget_name_by_idx_soft_name_order_decreasing)
{
TESTING_2("H5Lget_name_by_idx on soft link by alphabetical order in decreasing order");
-#ifndef NO_DECREASING_ALPHA_ITER_ORDER
+
/* Create group to hold some links */
if ((subgroup_id = H5Gcreate2(group_id, GET_LINK_NAME_TEST_SOFT_SUBGROUP_NAME4, H5P_DEFAULT,
gcpl_id, H5P_DEFAULT)) < 0) {
@@ -18578,10 +18488,6 @@ test_get_link_name(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Lget_name_by_idx_soft_name_order_decreasing);
-#endif
}
PART_END(H5Lget_name_by_idx_soft_name_order_decreasing);
@@ -18595,7 +18501,13 @@ test_get_link_name(void)
PART_BEGIN(H5Lget_name_by_idx_external_crt_order_increasing)
{
TESTING_2("H5Lget_name_by_idx on external link by creation order in increasing order");
-#ifndef NO_EXTERNAL_LINKS
+
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Lget_name_by_idx_external_crt_order_increasing);
+ }
+
/* Create file for external link to reference */
HDsnprintf(ext_link_filename, H5_API_TEST_FILENAME_MAX_LENGTH, "%s",
EXTERNAL_LINK_TEST_FILE_NAME);
@@ -18763,10 +18675,6 @@ test_get_link_name(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Lget_name_by_idx_external_crt_order_increasing);
-#endif
}
PART_END(H5Lget_name_by_idx_external_crt_order_increasing);
@@ -18782,7 +18690,13 @@ test_get_link_name(void)
PART_BEGIN(H5Lget_name_by_idx_external_crt_order_decreasing)
{
TESTING_2("H5Lget_name_by_idx on external link by creation order in decreasing order");
-#ifndef NO_EXTERNAL_LINKS
+
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Lget_name_by_idx_external_crt_order_decreasing);
+ }
+
/* Create file for external link to reference */
HDsnprintf(ext_link_filename, H5_API_TEST_FILENAME_MAX_LENGTH, "%s",
EXTERNAL_LINK_TEST_FILE_NAME);
@@ -18950,10 +18864,6 @@ test_get_link_name(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Lget_name_by_idx_external_crt_order_decreasing);
-#endif
}
PART_END(H5Lget_name_by_idx_external_crt_order_decreasing);
@@ -18969,7 +18879,7 @@ test_get_link_name(void)
PART_BEGIN(H5Lget_name_by_idx_external_name_order_increasing)
{
TESTING_2("H5Lget_name_by_idx on external link by alphabetical order in increasing order");
-#ifndef NO_EXTERNAL_LINKS
+
/* Create file for external link to reference */
HDsnprintf(ext_link_filename, H5_API_TEST_FILENAME_MAX_LENGTH, "%s",
EXTERNAL_LINK_TEST_FILE_NAME);
@@ -19137,10 +19047,6 @@ test_get_link_name(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Lget_name_by_idx_external_name_order_increasing);
-#endif
}
PART_END(H5Lget_name_by_idx_external_name_order_increasing);
@@ -19156,7 +19062,7 @@ test_get_link_name(void)
PART_BEGIN(H5Lget_name_by_idx_external_name_order_decreasing)
{
TESTING_2("H5Lget_name_by_idx on external link by alphabetical order in decreasing order");
-#ifndef NO_DECREASING_ALPHA_ITER_ORDER
+
/* Create file for external link to reference */
HDsnprintf(ext_link_filename, H5_API_TEST_FILENAME_MAX_LENGTH, "%s",
EXTERNAL_LINK_TEST_FILE_NAME);
@@ -19324,10 +19230,6 @@ test_get_link_name(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Lget_name_by_idx_external_name_order_decreasing);
-#endif
}
PART_END(H5Lget_name_by_idx_external_name_order_decreasing);
@@ -19455,8 +19357,9 @@ test_get_link_name_invalid_params(void)
htri_t link_exists;
size_t link_name_buf_size = 0;
hid_t file_id = H5I_INVALID_HID;
- hid_t container_group = H5I_INVALID_HID, group_id = H5I_INVALID_HID;
- char *link_name_buf = NULL;
+ hid_t container_group = H5I_INVALID_HID;
+ hid_t group_id = H5I_INVALID_HID;
+ char *link_name_buf = NULL;
TESTING_MULTIPART("link name retrieval with invalid parameters");
@@ -19464,10 +19367,10 @@ test_get_link_name_invalid_params(void)
if (!(vol_cap_flags_g & H5VL_CAP_FLAG_FILE_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_GROUP_BASIC) ||
!(vol_cap_flags_g & H5VL_CAP_FLAG_LINK_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_LINK_MORE) ||
!(vol_cap_flags_g & H5VL_CAP_FLAG_HARD_LINKS) || !(vol_cap_flags_g & H5VL_CAP_FLAG_EXTERNAL_LINKS) ||
- !(vol_cap_flags_g & H5VL_CAP_FLAG_SOFT_LINKS) || !(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ !(vol_cap_flags_g & H5VL_CAP_FLAG_SOFT_LINKS)) {
SKIPPED();
- HDprintf(" API functions for basic file, group, basic, more, soft, hard, external link, or "
- "creation order aren't supported with this connector\n");
+ HDprintf(" API functions for basic file, group, link, soft link, hard link, or external link "
+ "aren't supported with this connector\n");
return 0;
}
@@ -19732,10 +19635,10 @@ test_link_iterate_hard_links(void)
/* Make sure the connector supports the API functions being tested */
if (!(vol_cap_flags_g & H5VL_CAP_FLAG_FILE_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_GROUP_BASIC) ||
!(vol_cap_flags_g & H5VL_CAP_FLAG_LINK_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_DATASET_BASIC) ||
- !(vol_cap_flags_g & H5VL_CAP_FLAG_ITERATE) || !(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ !(vol_cap_flags_g & H5VL_CAP_FLAG_ITERATE)) {
SKIPPED();
- HDprintf(" API functions for basic file, group, dataset, link, or iterate aren't supported with "
- "this connector\n");
+ HDprintf(" API functions for basic file, group, dataset, link, or iterate aren't "
+ "supported with this connector\n");
return 0;
}
@@ -19759,10 +19662,12 @@ test_link_iterate_hard_links(void)
goto error;
}
- if (H5Pset_link_creation_order(gcpl_id, H5P_CRT_ORDER_TRACKED) < 0) {
- H5_FAILED();
- HDprintf(" couldn't set link creation order tracking\n");
- goto error;
+ if (vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER) {
+ if (H5Pset_link_creation_order(gcpl_id, H5P_CRT_ORDER_TRACKED) < 0) {
+ H5_FAILED();
+ HDprintf(" couldn't set link creation order tracking\n");
+ goto error;
+ }
}
if ((group_id = H5Gcreate2(container_group, LINK_ITER_HARD_LINKS_TEST_SUBGROUP_NAME, H5P_DEFAULT, gcpl_id,
@@ -19850,7 +19755,7 @@ test_link_iterate_hard_links(void)
PART_BEGIN(H5Literate_link_name_decreasing)
{
TESTING_2("H5Literate2 by link name in decreasing order");
-#ifndef NO_DECREASING_ALPHA_ITER_ORDER
+
/* Reset the counter to the appropriate value for the next test */
i = LINK_ITER_HARD_LINKS_TEST_NUM_LINKS;
@@ -19867,10 +19772,6 @@ test_link_iterate_hard_links(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Literate_link_name_decreasing);
-#endif
}
PART_END(H5Literate_link_name_decreasing);
@@ -19878,6 +19779,12 @@ test_link_iterate_hard_links(void)
{
TESTING_2("H5Literate2 by creation order in increasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Literate_link_creation_increasing);
+ }
+
/* Reset the counter to the appropriate value for the next test */
i = 2 * LINK_ITER_HARD_LINKS_TEST_NUM_LINKS;
@@ -19902,6 +19809,12 @@ test_link_iterate_hard_links(void)
{
TESTING_2("H5Literate2 by creation order in decreasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Literate_link_creation_decreasing);
+ }
+
/* Reset the counter to the appropriate value for the next test */
i = 3 * LINK_ITER_HARD_LINKS_TEST_NUM_LINKS;
@@ -19950,7 +19863,7 @@ test_link_iterate_hard_links(void)
PART_BEGIN(H5Literate_by_name_link_name_decreasing)
{
TESTING_2("H5Literate_by_name2 by link name in decreasing order");
-#ifndef NO_DECREASING_ALPHA_ITER_ORDER
+
/* Reset the counter to the appropriate value for the next test */
i = LINK_ITER_HARD_LINKS_TEST_NUM_LINKS;
@@ -19969,10 +19882,6 @@ test_link_iterate_hard_links(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Literate_by_name_link_name_decreasing);
-#endif
}
PART_END(H5Literate_by_name_link_name_decreasing);
@@ -19980,6 +19889,12 @@ test_link_iterate_hard_links(void)
{
TESTING_2("H5Literate_by_name2 by creation order in increasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Literate_by_name_creation_increasing);
+ }
+
/* Reset the counter to the appropriate value for the next test */
i = 2 * LINK_ITER_HARD_LINKS_TEST_NUM_LINKS;
@@ -20005,6 +19920,12 @@ test_link_iterate_hard_links(void)
{
TESTING_2("H5Literate_by_name2 by creation order in decreasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Literate_by_name_creation_decreasing);
+ }
+
/* Reset the counter to the appropriate value for the next test */
i = 3 * LINK_ITER_HARD_LINKS_TEST_NUM_LINKS;
@@ -20084,10 +20005,10 @@ test_link_iterate_soft_links(void)
/* Make sure the connector supports the API functions being tested */
if (!(vol_cap_flags_g & H5VL_CAP_FLAG_FILE_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_GROUP_BASIC) ||
!(vol_cap_flags_g & H5VL_CAP_FLAG_LINK_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_SOFT_LINKS) ||
- !(vol_cap_flags_g & H5VL_CAP_FLAG_ITERATE) || !(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ !(vol_cap_flags_g & H5VL_CAP_FLAG_ITERATE)) {
SKIPPED();
- HDprintf(" API functions for basic file, group, link, or iterate aren't supported with this "
- "connector\n");
+ HDprintf(" API functions for basic file, group, link, soft link, or iterate "
+ "aren't supported with this connector\n");
return 0;
}
@@ -20111,10 +20032,12 @@ test_link_iterate_soft_links(void)
goto error;
}
- if (H5Pset_link_creation_order(gcpl_id, H5P_CRT_ORDER_TRACKED) < 0) {
- H5_FAILED();
- HDprintf(" couldn't set link creation order tracking\n");
- goto error;
+ if (vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER) {
+ if (H5Pset_link_creation_order(gcpl_id, H5P_CRT_ORDER_TRACKED) < 0) {
+ H5_FAILED();
+ HDprintf(" couldn't set link creation order tracking\n");
+ goto error;
+ }
}
if ((group_id = H5Gcreate2(container_group, LINK_ITER_SOFT_LINKS_TEST_SUBGROUP_NAME, H5P_DEFAULT, gcpl_id,
@@ -20192,7 +20115,7 @@ test_link_iterate_soft_links(void)
PART_BEGIN(H5Literate_link_name_decreasing)
{
TESTING_2("H5Literate2 by link name in decreasing order");
-#ifndef NO_DECREASING_ALPHA_ITER_ORDER
+
/* Reset the counter to the appropriate value for the next test */
i = LINK_ITER_SOFT_LINKS_TEST_NUM_LINKS;
@@ -20209,10 +20132,6 @@ test_link_iterate_soft_links(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Literate_link_name_decreasing);
-#endif
}
PART_END(H5Literate_link_name_decreasing);
@@ -20220,6 +20139,12 @@ test_link_iterate_soft_links(void)
{
TESTING_2("H5Literate2 by creation order in increasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Literate_link_creation_increasing);
+ }
+
/* Reset the counter to the appropriate value for the next test */
i = 2 * LINK_ITER_SOFT_LINKS_TEST_NUM_LINKS;
@@ -20244,6 +20169,12 @@ test_link_iterate_soft_links(void)
{
TESTING_2("H5Literate2 by creation order in decreasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Literate_link_creation_decreasing);
+ }
+
/* Reset the counter to the appropriate value for the next test */
i = 3 * LINK_ITER_SOFT_LINKS_TEST_NUM_LINKS;
@@ -20292,7 +20223,7 @@ test_link_iterate_soft_links(void)
PART_BEGIN(H5Literate_by_name_link_name_decreasing)
{
TESTING_2("H5Literate_by_name2 by link name in decreasing order");
-#ifndef NO_DECREASING_ALPHA_ITER_ORDER
+
/* Reset the counter to the appropriate value for the next test */
i = LINK_ITER_SOFT_LINKS_TEST_NUM_LINKS;
@@ -20311,10 +20242,6 @@ test_link_iterate_soft_links(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Literate_by_name_link_name_decreasing);
-#endif
}
PART_END(H5Literate_by_name_link_name_decreasing);
@@ -20322,6 +20249,12 @@ test_link_iterate_soft_links(void)
{
TESTING_2("H5Literate_by_name2 by creation order in increasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Literate_by_name_creation_increasing);
+ }
+
/* Reset the counter to the appropriate value for the next test */
i = 2 * LINK_ITER_SOFT_LINKS_TEST_NUM_LINKS;
@@ -20347,6 +20280,12 @@ test_link_iterate_soft_links(void)
{
TESTING_2("H5Literate_by_name2 by creation order in decreasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Literate_by_name_creation_decreasing);
+ }
+
/* Reset the counter to the appropriate value for the next test */
i = 3 * LINK_ITER_SOFT_LINKS_TEST_NUM_LINKS;
@@ -20408,28 +20347,25 @@ error:
static int
test_link_iterate_external_links(void)
{
-#ifndef NO_EXTERNAL_LINKS
size_t i;
htri_t link_exists;
hid_t file_id = H5I_INVALID_HID;
hid_t container_group = H5I_INVALID_HID, group_id = H5I_INVALID_HID;
hid_t gcpl_id = H5I_INVALID_HID;
char ext_link_filename[H5_API_TEST_FILENAME_MAX_LENGTH];
-#endif
TESTING_MULTIPART("link iteration (only external links)");
/* Make sure the connector supports the API functions being tested */
if (!(vol_cap_flags_g & H5VL_CAP_FLAG_FILE_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_GROUP_BASIC) ||
!(vol_cap_flags_g & H5VL_CAP_FLAG_LINK_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_EXTERNAL_LINKS) ||
- !(vol_cap_flags_g & H5VL_CAP_FLAG_ITERATE) || !(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ !(vol_cap_flags_g & H5VL_CAP_FLAG_ITERATE)) {
SKIPPED();
- HDprintf(" API functions for basic file, group, link, or iterate aren't supported with this "
- "connector\n");
+ HDprintf(" API functions for basic file, group, link, external link, or iterate "
+ "aren't supported with this connector\n");
return 0;
}
-#ifndef NO_EXTERNAL_LINKS
TESTING_2("test setup");
HDsnprintf(ext_link_filename, H5_API_TEST_FILENAME_MAX_LENGTH, "%s", EXTERNAL_LINK_TEST_FILE_NAME);
@@ -20461,10 +20397,12 @@ test_link_iterate_external_links(void)
goto error;
}
- if (H5Pset_link_creation_order(gcpl_id, H5P_CRT_ORDER_TRACKED) < 0) {
- H5_FAILED();
- HDprintf(" couldn't set link creation order tracking\n");
- goto error;
+ if (vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER) {
+ if (H5Pset_link_creation_order(gcpl_id, H5P_CRT_ORDER_TRACKED) < 0) {
+ H5_FAILED();
+ HDprintf(" couldn't set link creation order tracking\n");
+ goto error;
+ }
}
if ((group_id = H5Gcreate2(container_group, LINK_ITER_EXT_LINKS_TEST_SUBGROUP_NAME, H5P_DEFAULT, gcpl_id,
@@ -20539,7 +20477,7 @@ test_link_iterate_external_links(void)
PART_BEGIN(H5Literate_link_name_decreasing)
{
TESTING_2("H5Literate2 by link name in decreasing order");
-#ifndef NO_DECREASING_ALPHA_ITER_ORDER
+
/* Reset the counter to the appropriate value for the next test */
i = LINK_ITER_EXT_LINKS_TEST_NUM_LINKS;
@@ -20557,10 +20495,6 @@ test_link_iterate_external_links(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Literate_link_name_decreasing);
-#endif
}
PART_END(H5Literate_link_name_decreasing);
@@ -20568,6 +20502,12 @@ test_link_iterate_external_links(void)
{
TESTING_2("H5Literate2 by creation order in increasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Literate_link_creation_increasing);
+ }
+
/* Reset the counter to the appropriate value for the next test */
i = 2 * LINK_ITER_EXT_LINKS_TEST_NUM_LINKS;
@@ -20592,6 +20532,12 @@ test_link_iterate_external_links(void)
{
TESTING_2("H5Literate2 by creation order in decreasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Literate_link_creation_decreasing);
+ }
+
/* Reset the counter to the appropriate value for the next test */
i = 3 * LINK_ITER_EXT_LINKS_TEST_NUM_LINKS;
@@ -20640,7 +20586,7 @@ test_link_iterate_external_links(void)
PART_BEGIN(H5Literate_by_name_link_name_decreasing)
{
TESTING_2("H5Literate_by_name2 by link name in decreasing order");
-#ifndef NO_DECREASING_ALPHA_ITER_ORDER
+
/* Reset the counter to the appropriate value for the next test */
i = LINK_ITER_EXT_LINKS_TEST_NUM_LINKS;
@@ -20659,10 +20605,6 @@ test_link_iterate_external_links(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Literate_by_name_link_name_decreasing);
-#endif
}
PART_END(H5Literate_by_name_link_name_decreasing);
@@ -20670,6 +20612,12 @@ test_link_iterate_external_links(void)
{
TESTING_2("H5Literate_by_name2 by creation order in increasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Literate_by_name_creation_increasing);
+ }
+
/* Reset the counter to the appropriate value for the next test */
i = 2 * LINK_ITER_EXT_LINKS_TEST_NUM_LINKS;
@@ -20696,6 +20644,12 @@ test_link_iterate_external_links(void)
{
TESTING_2("H5Literate_by_name2 by creation order in decreasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Literate_by_name_creation_decreasing);
+ }
+
/* Reset the counter to the appropriate value for the next test */
i = 3 * LINK_ITER_EXT_LINKS_TEST_NUM_LINKS;
@@ -20746,10 +20700,6 @@ error:
H5E_END_TRY;
return 1;
-#else
- SKIPPED();
- return 0;
-#endif
}
/*
@@ -20789,7 +20739,6 @@ test_link_iterate_ud_links(void)
static int
test_link_iterate_mixed_links(void)
{
-#if !defined(NO_EXTERNAL_LINKS) && !defined(NO_USER_DEFINED_LINKS)
hsize_t saved_idx;
size_t i;
htri_t link_exists;
@@ -20801,22 +20750,19 @@ test_link_iterate_mixed_links(void)
hid_t dset_dspace = H5I_INVALID_HID;
int halted;
char ext_link_filename[H5_API_TEST_FILENAME_MAX_LENGTH];
-#endif
TESTING_MULTIPART("link iteration (mixed link types)");
/* Make sure the connector supports the API functions being tested */
if (!(vol_cap_flags_g & H5VL_CAP_FLAG_FILE_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_GROUP_BASIC) ||
!(vol_cap_flags_g & H5VL_CAP_FLAG_LINK_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_EXTERNAL_LINKS) ||
- !(vol_cap_flags_g & H5VL_CAP_FLAG_SOFT_LINKS) || !(vol_cap_flags_g & H5VL_CAP_FLAG_ITERATE) ||
- !(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ !(vol_cap_flags_g & H5VL_CAP_FLAG_SOFT_LINKS) || !(vol_cap_flags_g & H5VL_CAP_FLAG_ITERATE)) {
SKIPPED();
- HDprintf(" API functions for basic file, group, link, soft or external link, iterate, or creation "
- "order aren't supported with this connector\n");
+ HDprintf(" API functions for basic file, group, link, soft link, external link, or iterate "
+ "aren't supported with this connector\n");
return 0;
}
-#if !defined(NO_EXTERNAL_LINKS) && !defined(NO_USER_DEFINED_LINKS)
TESTING_2("test setup");
HDsnprintf(ext_link_filename, H5_API_TEST_FILENAME_MAX_LENGTH, "%s", EXTERNAL_LINK_TEST_FILE_NAME);
@@ -20848,10 +20794,12 @@ test_link_iterate_mixed_links(void)
goto error;
}
- if (H5Pset_link_creation_order(gcpl_id, H5P_CRT_ORDER_TRACKED) < 0) {
- H5_FAILED();
- HDprintf(" couldn't set link creation order tracking\n");
- goto error;
+ if (vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER) {
+ if (H5Pset_link_creation_order(gcpl_id, H5P_CRT_ORDER_TRACKED) < 0) {
+ H5_FAILED();
+ HDprintf(" couldn't set link creation order tracking\n");
+ goto error;
+ }
}
if ((group_id = H5Gcreate2(container_group, LINK_ITER_MIXED_LINKS_TEST_SUBGROUP_NAME, H5P_DEFAULT,
@@ -20964,7 +20912,7 @@ test_link_iterate_mixed_links(void)
PART_BEGIN(H5Literate_link_name_decreasing)
{
TESTING_2("H5Literate2 by link name in decreasing order");
-#ifndef NO_DECREASING_ALPHA_ITER_ORDER
+
/* Reset the counter to the appropriate value for the next test */
i = LINK_ITER_MIXED_LINKS_TEST_NUM_LINKS;
@@ -20981,10 +20929,6 @@ test_link_iterate_mixed_links(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Literate_link_name_decreasing);
-#endif
}
PART_END(H5Literate_link_name_decreasing);
@@ -20992,6 +20936,12 @@ test_link_iterate_mixed_links(void)
{
TESTING_2("H5Literate2 by creation order in increasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Literate_link_creation_increasing);
+ }
+
/* Reset the counter to the appropriate value for the next test */
i = 2 * LINK_ITER_MIXED_LINKS_TEST_NUM_LINKS;
@@ -21016,6 +20966,12 @@ test_link_iterate_mixed_links(void)
{
TESTING_2("H5Literate2 by creation order in decreasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Literate_link_creation_decreasing);
+ }
+
/* Reset the counter to the appropriate value for the next test */
i = 3 * LINK_ITER_MIXED_LINKS_TEST_NUM_LINKS;
@@ -21063,7 +21019,7 @@ test_link_iterate_mixed_links(void)
PART_BEGIN(H5Literate_by_name_link_name_decreasing)
{
TESTING_2("H5Literate_by_name2 by link name in decreasing order");
-#ifndef NO_DECREASING_ALPHA_ITER_ORDER
+
/* Reset the counter to the appropriate value for the next test */
i = LINK_ITER_MIXED_LINKS_TEST_NUM_LINKS;
@@ -21082,10 +21038,6 @@ test_link_iterate_mixed_links(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Literate_by_name_link_name_decreasing);
-#endif
}
PART_END(H5Literate_by_name_link_name_decreasing);
@@ -21093,6 +21045,12 @@ test_link_iterate_mixed_links(void)
{
TESTING_2("H5Literate_by_name2 by creation order in increasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Literate_by_name_creation_increasing);
+ }
+
/* Reset the counter to the appropriate value for the next test */
i = 2 * LINK_ITER_MIXED_LINKS_TEST_NUM_LINKS;
@@ -21118,6 +21076,12 @@ test_link_iterate_mixed_links(void)
{
TESTING_2("H5Literate_by_name2 by creation order in decreasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Literate_by_name_creation_decreasing);
+ }
+
/* Reset the counter to the appropriate value for the next test */
i = 3 * LINK_ITER_MIXED_LINKS_TEST_NUM_LINKS;
@@ -21143,6 +21107,12 @@ test_link_iterate_mixed_links(void)
{
TESTING_2("H5Literate2 index-saving capabilities in increasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Literate_index_saving_increasing);
+ }
+
/* Test the H5Literate2 index-saving capabilities */
saved_idx = 0;
halted = 0;
@@ -21170,11 +21140,17 @@ test_link_iterate_mixed_links(void)
PASSED();
}
PART_END(H5Literate_index_saving_increasing);
-
+#ifdef BROKEN
PART_BEGIN(H5Literate_index_saving_decreasing)
{
TESTING_2("H5Literate2 index-saving capabilities in decreasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Literate_index_saving_decreasing);
+ }
+
saved_idx = LINK_ITER_MIXED_LINKS_TEST_NUM_LINKS - 1;
halted = 0;
@@ -21201,6 +21177,7 @@ test_link_iterate_mixed_links(void)
PASSED();
}
PART_END(H5Literate_index_saving_decreasing);
+#endif
}
END_MULTIPART;
@@ -21239,10 +21216,6 @@ error:
H5E_END_TRY;
return 1;
-#else
- SKIPPED();
- return 0;
-#endif
}
/*
@@ -21256,11 +21229,11 @@ test_link_iterate_invalid_params(void)
size_t i;
htri_t link_exists;
hid_t file_id = H5I_INVALID_HID;
- hid_t container_group = H5I_INVALID_HID, group_id = H5I_INVALID_HID;
- hid_t gcpl_id = H5I_INVALID_HID;
- hid_t dset_id = H5I_INVALID_HID;
- hid_t dset_dtype = H5I_INVALID_HID;
- hid_t dset_dspace = H5I_INVALID_HID;
+ hid_t container_group = H5I_INVALID_HID;
+ hid_t group_id = H5I_INVALID_HID;
+ hid_t dset_id = H5I_INVALID_HID;
+ hid_t dset_dtype = H5I_INVALID_HID;
+ hid_t dset_dspace = H5I_INVALID_HID;
char ext_link_filename[H5_API_TEST_FILENAME_MAX_LENGTH];
TESTING_MULTIPART("link iteration with invalid parameters");
@@ -21269,11 +21242,11 @@ test_link_iterate_invalid_params(void)
if (!(vol_cap_flags_g & H5VL_CAP_FLAG_FILE_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_GROUP_BASIC) ||
!(vol_cap_flags_g & H5VL_CAP_FLAG_LINK_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_EXTERNAL_LINKS) ||
!(vol_cap_flags_g & H5VL_CAP_FLAG_SOFT_LINKS) || !(vol_cap_flags_g & H5VL_CAP_FLAG_ITERATE) ||
- !(vol_cap_flags_g & H5VL_CAP_FLAG_DATASET_BASIC) ||
- !(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ !(vol_cap_flags_g & H5VL_CAP_FLAG_DATASET_BASIC)) {
SKIPPED();
- HDprintf(" API functions for basic file, group, dataset, link, soft or external link, iterate, or "
- "creation order aren't supported with this connector\n");
+ HDprintf(
+ " API functions for basic file, group, dataset, link, soft link, external link, or iterate "
+ "aren't supported with this connector\n");
return 0;
}
@@ -21302,20 +21275,8 @@ test_link_iterate_invalid_params(void)
goto error;
}
- if ((gcpl_id = H5Pcreate(H5P_GROUP_CREATE)) < 0) {
- H5_FAILED();
- HDprintf(" couldn't create GCPL for link creation order tracking\n");
- goto error;
- }
-
- if (H5Pset_link_creation_order(gcpl_id, H5P_CRT_ORDER_TRACKED) < 0) {
- H5_FAILED();
- HDprintf(" couldn't set link creation order tracking\n");
- goto error;
- }
-
if ((group_id = H5Gcreate2(container_group, LINK_ITER_INVALID_PARAMS_TEST_SUBGROUP_NAME, H5P_DEFAULT,
- gcpl_id, H5P_DEFAULT)) < 0) {
+ H5P_DEFAULT, H5P_DEFAULT)) < 0) {
H5_FAILED();
HDprintf(" couldn't create container subgroup '%s'\n",
LINK_ITER_INVALID_PARAMS_TEST_SUBGROUP_NAME);
@@ -21344,14 +21305,12 @@ test_link_iterate_invalid_params(void)
HDprintf(" couldn't create soft link '%s'\n", LINK_ITER_INVALID_PARAMS_TEST_SOFT_LINK_NAME);
goto error;
}
-#ifndef NO_EXTERNAL_LINKS
if (H5Lcreate_external(ext_link_filename, "/", group_id, LINK_ITER_INVALID_PARAMS_TEST_EXT_LINK_NAME,
H5P_DEFAULT, H5P_DEFAULT) < 0) {
H5_FAILED();
HDprintf(" couldn't create external link '%s'\n", LINK_ITER_INVALID_PARAMS_TEST_EXT_LINK_NAME);
goto error;
}
-#endif
/* Verify the links have been created */
if ((link_exists = H5Lexists(group_id, LINK_ITER_INVALID_PARAMS_TEST_HARD_LINK_NAME, H5P_DEFAULT)) < 0) {
H5_FAILED();
@@ -21378,7 +21337,6 @@ test_link_iterate_invalid_params(void)
HDprintf(" second link did not exist\n");
goto error;
}
-#ifndef NO_EXTERNAL_LINKS
if ((link_exists = H5Lexists(group_id, LINK_ITER_INVALID_PARAMS_TEST_EXT_LINK_NAME, H5P_DEFAULT)) < 0) {
H5_FAILED();
HDprintf(" couldn't determine if link '%s' exists\n", LINK_ITER_INVALID_PARAMS_TEST_EXT_LINK_NAME);
@@ -21390,7 +21348,6 @@ test_link_iterate_invalid_params(void)
HDprintf(" third link did not exist\n");
goto error;
}
-#endif
PASSED();
@@ -21648,8 +21605,6 @@ test_link_iterate_invalid_params(void)
TEST_ERROR;
if (H5Dclose(dset_id) < 0)
TEST_ERROR;
- if (H5Pclose(gcpl_id) < 0)
- TEST_ERROR;
if (H5Gclose(group_id) < 0)
TEST_ERROR;
if (H5Gclose(container_group) < 0)
@@ -21667,7 +21622,6 @@ error:
H5Sclose(dset_dspace);
H5Tclose(dset_dtype);
H5Dclose(dset_id);
- H5Pclose(gcpl_id);
H5Gclose(group_id);
H5Gclose(container_group);
H5Fclose(file_id);
@@ -21692,9 +21646,9 @@ test_link_iterate_0_links(void)
/* Make sure the connector supports the API functions being tested */
if (!(vol_cap_flags_g & H5VL_CAP_FLAG_FILE_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_GROUP_BASIC) ||
- !(vol_cap_flags_g & H5VL_CAP_FLAG_ITERATE) || !(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ !(vol_cap_flags_g & H5VL_CAP_FLAG_ITERATE)) {
SKIPPED();
- HDprintf(" API functions for basic file, group, link iterate, or creation order aren't supported "
+ HDprintf(" API functions for basic file, group, or iterate aren't supported "
"with this connector\n");
return 0;
}
@@ -21719,10 +21673,12 @@ test_link_iterate_0_links(void)
goto error;
}
- if (H5Pset_link_creation_order(gcpl_id, H5P_CRT_ORDER_TRACKED) < 0) {
- H5_FAILED();
- HDprintf(" couldn't set link creation order tracking\n");
- goto error;
+ if (vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER) {
+ if (H5Pset_link_creation_order(gcpl_id, H5P_CRT_ORDER_TRACKED) < 0) {
+ H5_FAILED();
+ HDprintf(" couldn't set link creation order tracking\n");
+ goto error;
+ }
}
if ((group_id = H5Gcreate2(container_group, LINK_ITER_0_LINKS_TEST_SUBGROUP_NAME, H5P_DEFAULT, gcpl_id,
@@ -21754,7 +21710,7 @@ test_link_iterate_0_links(void)
PART_BEGIN(H5Literate_0_links_name_decreasing)
{
TESTING_2("H5Literate2 by link name in decreasing order");
-#ifndef NO_DECREASING_ALPHA_ITER_ORDER
+
if (H5Literate2(group_id, H5_INDEX_NAME, H5_ITER_DEC, NULL, link_iter_0_links_cb, NULL) < 0) {
H5_FAILED();
HDprintf(" H5Literate2 by index type name in decreasing order failed\n");
@@ -21762,10 +21718,6 @@ test_link_iterate_0_links(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Literate_0_links_name_decreasing);
-#endif
}
PART_END(H5Literate_0_links_name_decreasing);
@@ -21773,6 +21725,12 @@ test_link_iterate_0_links(void)
{
TESTING_2("H5Literate2 by creation order in increasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Literate_0_links_creation_increasing);
+ }
+
if (H5Literate2(group_id, H5_INDEX_CRT_ORDER, H5_ITER_INC, NULL, link_iter_0_links_cb, NULL) <
0) {
H5_FAILED();
@@ -21788,6 +21746,12 @@ test_link_iterate_0_links(void)
{
TESTING_2("H5Literate2 by creation order in decreasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Literate_0_links_creation_decreasing);
+ }
+
if (H5Literate2(group_id, H5_INDEX_CRT_ORDER, H5_ITER_DEC, NULL, link_iter_0_links_cb, NULL) <
0) {
H5_FAILED();
@@ -21818,7 +21782,7 @@ test_link_iterate_0_links(void)
PART_BEGIN(H5Literate_by_name_0_links_name_decreasing)
{
TESTING_2("H5Literate_by_name2 by link name in decreasing order");
-#ifndef NO_DECREASING_ALPHA_ITER_ORDER
+
if (H5Literate_by_name2(
file_id, "/" LINK_TEST_GROUP_NAME "/" LINK_ITER_0_LINKS_TEST_SUBGROUP_NAME, H5_INDEX_NAME,
H5_ITER_DEC, NULL, link_iter_0_links_cb, NULL, H5P_DEFAULT) < 0) {
@@ -21828,10 +21792,6 @@ test_link_iterate_0_links(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Literate_by_name_0_links_name_decreasing);
-#endif
}
PART_END(H5Literate_by_name_0_links_name_decreasing);
@@ -21839,6 +21799,12 @@ test_link_iterate_0_links(void)
{
TESTING_2("H5Literate_by_name2 by creation order in increasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Literate_by_name_0_links_creation_increasing);
+ }
+
if (H5Literate_by_name2(
file_id, "/" LINK_TEST_GROUP_NAME "/" LINK_ITER_0_LINKS_TEST_SUBGROUP_NAME,
H5_INDEX_CRT_ORDER, H5_ITER_INC, NULL, link_iter_0_links_cb, NULL, H5P_DEFAULT) < 0) {
@@ -21855,6 +21821,12 @@ test_link_iterate_0_links(void)
{
TESTING_2("H5Literate_by_name2 by creation order in decreasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Literate_by_name_0_links_creation_decreasing);
+ }
+
if (H5Literate_by_name2(
file_id, "/" LINK_TEST_GROUP_NAME "/" LINK_ITER_0_LINKS_TEST_SUBGROUP_NAME,
H5_INDEX_CRT_ORDER, H5_ITER_DEC, NULL, link_iter_0_links_cb, NULL, H5P_DEFAULT) < 0) {
@@ -21922,11 +21894,10 @@ test_link_visit_hard_links_no_cycles(void)
/* Make sure the connector supports the API functions being tested */
if (!(vol_cap_flags_g & H5VL_CAP_FLAG_FILE_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_GROUP_BASIC) ||
- !(vol_cap_flags_g & H5VL_CAP_FLAG_DATASET_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_ITERATE) ||
- !(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ !(vol_cap_flags_g & H5VL_CAP_FLAG_DATASET_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_ITERATE)) {
SKIPPED();
- HDprintf(" API functions for basic file, group, link iterate, or creation order aren't supported "
- "with this connector\n");
+ HDprintf(" API functions for basic file, group, dataset, or link iterate aren't "
+ "supported with this connector\n");
return 0;
}
@@ -21950,10 +21921,12 @@ test_link_visit_hard_links_no_cycles(void)
goto error;
}
- if (H5Pset_link_creation_order(gcpl_id, H5P_CRT_ORDER_TRACKED | H5P_CRT_ORDER_INDEXED) < 0) {
- H5_FAILED();
- HDprintf(" couldn't enable link creation order tracking and indexing on GCPL\n");
- goto error;
+ if (vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER) {
+ if (H5Pset_link_creation_order(gcpl_id, H5P_CRT_ORDER_TRACKED | H5P_CRT_ORDER_INDEXED) < 0) {
+ H5_FAILED();
+ HDprintf(" couldn't enable link creation order tracking and indexing on GCPL\n");
+ goto error;
+ }
}
if ((group_id = H5Gcreate2(container_group, LINK_VISIT_HARD_LINKS_NO_CYCLE_TEST_SUBGROUP_NAME,
@@ -22064,7 +22037,7 @@ test_link_visit_hard_links_no_cycles(void)
PART_BEGIN(H5Lvisit_no_cycles_link_name_decreasing)
{
TESTING_2("H5Lvisit2 by link name in decreasing order");
-#ifndef NO_DECREASING_ALPHA_ITER_ORDER
+
/* Reset the counter to the appropriate value for the next test */
i = LINK_VISIT_HARD_LINKS_NO_CYCLE_TEST_NUM_LINKS_PER_TEST;
@@ -22081,10 +22054,6 @@ test_link_visit_hard_links_no_cycles(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Lvisit_no_cycles_link_name_decreasing);
-#endif
}
PART_END(H5Lvisit_no_cycles_link_name_decreasing);
@@ -22092,6 +22061,12 @@ test_link_visit_hard_links_no_cycles(void)
{
TESTING_2("H5Lvisit2 by creation order in increasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Lvisit_no_cycles_link_creation_increasing);
+ }
+
/* Reset the counter to the appropriate value for the next test */
i = 2 * LINK_VISIT_HARD_LINKS_NO_CYCLE_TEST_NUM_LINKS_PER_TEST;
@@ -22116,6 +22091,12 @@ test_link_visit_hard_links_no_cycles(void)
{
TESTING_2("H5Lvisit2 by creation order in decreasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Lvisit_no_cycles_link_creation_decreasing);
+ }
+
/* Reset the counter to the appropriate value for the next test */
i = 3 * LINK_VISIT_HARD_LINKS_NO_CYCLE_TEST_NUM_LINKS_PER_TEST;
@@ -22164,7 +22145,7 @@ test_link_visit_hard_links_no_cycles(void)
PART_BEGIN(H5Lvisit_by_name_no_cycles_link_name_decreasing)
{
TESTING_2("H5Lvisit_by_name2 by link name in decreasing order");
-#ifndef NO_DECREASING_ALPHA_ITER_ORDER
+
/* Reset the counter to the appropriate value for the next test */
i = LINK_VISIT_HARD_LINKS_NO_CYCLE_TEST_NUM_LINKS_PER_TEST;
@@ -22183,10 +22164,6 @@ test_link_visit_hard_links_no_cycles(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Lvisit_by_name_no_cycles_link_name_decreasing);
-#endif
}
PART_END(H5Lvisit_by_name_no_cycles_link_name_decreasing);
@@ -22194,6 +22171,12 @@ test_link_visit_hard_links_no_cycles(void)
{
TESTING_2("H5Lvisit_by_name2 by creation order in increasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Lvisit_by_name_no_cycles_link_creation_increasing);
+ }
+
/* Reset the counter to the appropriate value for the next test */
i = 2 * LINK_VISIT_HARD_LINKS_NO_CYCLE_TEST_NUM_LINKS_PER_TEST;
@@ -22220,6 +22203,12 @@ test_link_visit_hard_links_no_cycles(void)
{
TESTING_2("H5Lvisit_by_name2 by creation order in decreasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Lvisit_by_name_no_cycles_link_creation_decreasing);
+ }
+
/* Reset the counter to the appropriate value for the next test */
i = 3 * LINK_VISIT_HARD_LINKS_NO_CYCLE_TEST_NUM_LINKS_PER_TEST;
@@ -22303,9 +22292,9 @@ test_link_visit_soft_links_no_cycles(void)
/* Make sure the connector supports the API functions being tested */
if (!(vol_cap_flags_g & H5VL_CAP_FLAG_FILE_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_GROUP_BASIC) ||
!(vol_cap_flags_g & H5VL_CAP_FLAG_LINK_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_SOFT_LINKS) ||
- !(vol_cap_flags_g & H5VL_CAP_FLAG_ITERATE) || !(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ !(vol_cap_flags_g & H5VL_CAP_FLAG_ITERATE)) {
SKIPPED();
- HDprintf(" API functions for basic file, group, link, soft link, iterate, or creation order "
+ HDprintf(" API functions for basic file, group, link, soft link, or iterate "
"aren't supported with this connector\n");
return 0;
}
@@ -22330,10 +22319,12 @@ test_link_visit_soft_links_no_cycles(void)
goto error;
}
- if (H5Pset_link_creation_order(gcpl_id, H5P_CRT_ORDER_TRACKED | H5P_CRT_ORDER_INDEXED) < 0) {
- H5_FAILED();
- HDprintf(" couldn't enable link creation order tracking and indexing on GCPL\n");
- goto error;
+ if (vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER) {
+ if (H5Pset_link_creation_order(gcpl_id, H5P_CRT_ORDER_TRACKED | H5P_CRT_ORDER_INDEXED) < 0) {
+ H5_FAILED();
+ HDprintf(" couldn't enable link creation order tracking and indexing on GCPL\n");
+ goto error;
+ }
}
if ((group_id = H5Gcreate2(container_group, LINK_VISIT_SOFT_LINKS_NO_CYCLE_TEST_SUBGROUP_NAME,
@@ -22434,7 +22425,7 @@ test_link_visit_soft_links_no_cycles(void)
PART_BEGIN(H5Lvisit_no_cycles_link_name_decreasing)
{
TESTING_2("H5Lvisit2 by link name in decreasing order");
-#ifndef NO_DECREASING_ALPHA_ITER_ORDER
+
/* Reset the counter to the appropriate value for the next test */
i = LINK_VISIT_SOFT_LINKS_NO_CYCLE_TEST_NUM_LINKS_PER_TEST;
@@ -22451,10 +22442,6 @@ test_link_visit_soft_links_no_cycles(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Lvisit_no_cycles_link_name_decreasing);
-#endif
}
PART_END(H5Lvisit_no_cycles_link_name_decreasing);
@@ -22462,6 +22449,12 @@ test_link_visit_soft_links_no_cycles(void)
{
TESTING_2("H5Lvisit2 by creation order in increasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Lvisit_no_cycles_link_creation_increasing);
+ }
+
/* Reset the counter to the appropriate value for the next test */
i = 2 * LINK_VISIT_SOFT_LINKS_NO_CYCLE_TEST_NUM_LINKS_PER_TEST;
@@ -22486,6 +22479,12 @@ test_link_visit_soft_links_no_cycles(void)
{
TESTING_2("H5Lvisit2 by creation order in decreasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Lvisit_no_cycles_link_creation_decreasing);
+ }
+
/* Reset the counter to the appropriate value for the next test */
i = 3 * LINK_VISIT_SOFT_LINKS_NO_CYCLE_TEST_NUM_LINKS_PER_TEST;
@@ -22533,7 +22532,7 @@ test_link_visit_soft_links_no_cycles(void)
PART_BEGIN(H5Lvisit_by_name_no_cycles_link_name_decreasing)
{
TESTING_2("H5Lvisit_by_name2 by link name in decreasing order");
-#ifndef NO_DECREASING_ALPHA_ITER_ORDER
+
/* Reset the counter to the appropriate value for the next test */
i = LINK_VISIT_SOFT_LINKS_NO_CYCLE_TEST_NUM_LINKS_PER_TEST;
@@ -22552,10 +22551,6 @@ test_link_visit_soft_links_no_cycles(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Lvisit_by_name_no_cycles_link_name_decreasing);
-#endif
}
PART_END(H5Lvisit_by_name_no_cycles_link_name_decreasing);
@@ -22563,6 +22558,12 @@ test_link_visit_soft_links_no_cycles(void)
{
TESTING_2("H5Lvisit_by_name2 by creation order in increasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Lvisit_by_name_no_cycles_link_creation_increasing);
+ }
+
/* Reset the counter to the appropriate value for the next test */
i = 2 * LINK_VISIT_SOFT_LINKS_NO_CYCLE_TEST_NUM_LINKS_PER_TEST;
@@ -22589,6 +22590,12 @@ test_link_visit_soft_links_no_cycles(void)
{
TESTING_2("H5Lvisit_by_name2 by creation order in decreasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Lvisit_by_name_no_cycles_link_creation_decreasing);
+ }
+
/* Reset the counter to the appropriate value for the next test */
i = 3 * LINK_VISIT_SOFT_LINKS_NO_CYCLE_TEST_NUM_LINKS_PER_TEST;
@@ -22653,7 +22660,6 @@ error:
static int
test_link_visit_external_links_no_cycles(void)
{
-#ifndef NO_EXTERNAL_LINKS
size_t i;
htri_t link_exists;
hid_t file_id = H5I_INVALID_HID;
@@ -22661,21 +22667,19 @@ test_link_visit_external_links_no_cycles(void)
hid_t subgroup_id = H5I_INVALID_HID;
hid_t gcpl_id = H5I_INVALID_HID;
char ext_link_filename[H5_API_TEST_FILENAME_MAX_LENGTH];
-#endif
TESTING_MULTIPART("link visiting without cycles (only external links)");
/* Make sure the connector supports the API functions being tested */
if (!(vol_cap_flags_g & H5VL_CAP_FLAG_FILE_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_GROUP_BASIC) ||
!(vol_cap_flags_g & H5VL_CAP_FLAG_LINK_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_EXTERNAL_LINKS) ||
- !(vol_cap_flags_g & H5VL_CAP_FLAG_ITERATE) || !(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ !(vol_cap_flags_g & H5VL_CAP_FLAG_ITERATE)) {
SKIPPED();
- HDprintf(" API functions for basic file, group, link, external link, iterate, or creation order "
+ HDprintf(" API functions for basic file, group, link, external link, or iterate "
"aren't supported with this connector\n");
return 0;
}
-#ifndef NO_EXTERNAL_LINKS
TESTING_2("test setup");
HDsnprintf(ext_link_filename, H5_API_TEST_FILENAME_MAX_LENGTH, "%s", EXTERNAL_LINK_TEST_FILE_NAME);
@@ -22707,10 +22711,12 @@ test_link_visit_external_links_no_cycles(void)
goto error;
}
- if (H5Pset_link_creation_order(gcpl_id, H5P_CRT_ORDER_TRACKED | H5P_CRT_ORDER_INDEXED) < 0) {
- H5_FAILED();
- HDprintf(" couldn't enable link creation order tracking and indexing on GCPL\n");
- goto error;
+ if (vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER) {
+ if (H5Pset_link_creation_order(gcpl_id, H5P_CRT_ORDER_TRACKED | H5P_CRT_ORDER_INDEXED) < 0) {
+ H5_FAILED();
+ HDprintf(" couldn't enable link creation order tracking and indexing on GCPL\n");
+ goto error;
+ }
}
if ((group_id = H5Gcreate2(container_group, LINK_VISIT_EXT_LINKS_NO_CYCLE_TEST_SUBGROUP_NAME, H5P_DEFAULT,
@@ -22809,7 +22815,7 @@ test_link_visit_external_links_no_cycles(void)
PART_BEGIN(H5Lvisit_no_cycles_link_name_decreasing)
{
TESTING_2("H5Lvisit2 by link name in decreasing order");
-#ifndef NO_DECREASING_ALPHA_ITER_ORDER
+
/* Reset the counter to the appropriate value for the next test */
i = LINK_VISIT_EXT_LINKS_NO_CYCLE_TEST_NUM_LINKS_PER_TEST;
@@ -22827,10 +22833,6 @@ test_link_visit_external_links_no_cycles(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Lvisit_no_cycles_link_name_decreasing);
-#endif
}
PART_END(H5Lvisit_no_cycles_link_name_decreasing);
@@ -22838,6 +22840,12 @@ test_link_visit_external_links_no_cycles(void)
{
TESTING_2("H5Lvisit2 by creation order in increasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Lvisit_no_cycles_link_creation_increasing);
+ }
+
/* Reset the counter to the appropriate value for the next test */
i = 2 * LINK_VISIT_EXT_LINKS_NO_CYCLE_TEST_NUM_LINKS_PER_TEST;
@@ -22862,6 +22870,12 @@ test_link_visit_external_links_no_cycles(void)
{
TESTING_2("H5Lvisit2 by creation order in decreasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Lvisit_no_cycles_link_creation_decreasing);
+ }
+
/* Reset the counter to the appropriate value for the next test */
i = 3 * LINK_VISIT_EXT_LINKS_NO_CYCLE_TEST_NUM_LINKS_PER_TEST;
@@ -22911,7 +22925,7 @@ test_link_visit_external_links_no_cycles(void)
PART_BEGIN(H5Lvisit_by_name_no_cycles_link_name_decreasing)
{
TESTING_2("H5Lvisit_by_name2 by link name in decreasing order");
-#ifndef NO_DECREASING_ALPHA_ITER_ORDER
+
/* Reset the counter to the appropriate value for the next test */
i = LINK_VISIT_EXT_LINKS_NO_CYCLE_TEST_NUM_LINKS_PER_TEST;
@@ -22931,10 +22945,6 @@ test_link_visit_external_links_no_cycles(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Lvisit_by_name_no_cycles_link_name_decreasing);
-#endif
}
PART_END(H5Lvisit_by_name_no_cycles_link_name_decreasing);
@@ -22942,6 +22952,12 @@ test_link_visit_external_links_no_cycles(void)
{
TESTING_2("H5Lvisit_by_name2 by creation order in increasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Lvisit_by_name_no_cycles_link_creation_increasing);
+ }
+
/* Reset the counter to the appropriate value for the next test */
i = 2 * LINK_VISIT_EXT_LINKS_NO_CYCLE_TEST_NUM_LINKS_PER_TEST;
@@ -22968,6 +22984,12 @@ test_link_visit_external_links_no_cycles(void)
{
TESTING_2("H5Lvisit_by_name2 by creation order in decreasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Lvisit_by_name_no_cycles_link_creation_decreasing);
+ }
+
/* Reset the counter to the appropriate value for the next test */
i = 3 * LINK_VISIT_EXT_LINKS_NO_CYCLE_TEST_NUM_LINKS_PER_TEST;
@@ -23019,10 +23041,6 @@ error:
H5E_END_TRY;
return 1;
-#else
- SKIPPED();
- return 0;
-#endif
}
/*
@@ -23064,7 +23082,6 @@ test_link_visit_ud_links_no_cycles(void)
static int
test_link_visit_mixed_links_no_cycles(void)
{
-#if !defined(NO_EXTERNAL_LINKS) && !defined(NO_USER_DEFINED_LINKS)
size_t i;
htri_t link_exists;
hid_t file_id = H5I_INVALID_HID;
@@ -23075,7 +23092,6 @@ test_link_visit_mixed_links_no_cycles(void)
hid_t dset_dtype = H5I_INVALID_HID;
hid_t fspace_id = H5I_INVALID_HID;
char ext_link_filename[H5_API_TEST_FILENAME_MAX_LENGTH];
-#endif
TESTING_MULTIPART("link visiting without cycles (mixed link types)");
@@ -23084,14 +23100,14 @@ test_link_visit_mixed_links_no_cycles(void)
!(vol_cap_flags_g & H5VL_CAP_FLAG_LINK_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_DATASET_BASIC) ||
!(vol_cap_flags_g & H5VL_CAP_FLAG_EXTERNAL_LINKS) || !(vol_cap_flags_g & H5VL_CAP_FLAG_SOFT_LINKS) ||
!(vol_cap_flags_g & H5VL_CAP_FLAG_HARD_LINKS) || !(vol_cap_flags_g & H5VL_CAP_FLAG_ITERATE) ||
- !(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ !(vol_cap_flags_g & H5VL_CAP_FLAG_UD_LINKS)) {
SKIPPED();
- HDprintf(" API functions for basic file, group, link, hard, soft, external link, iterate, or "
- "creation order aren't supported with this connector\n");
+ HDprintf(
+ " API functions for basic file, group, link, hard link, soft link, external link, or iterate "
+ "aren't supported with this connector\n");
return 0;
}
-#if !defined(NO_EXTERNAL_LINKS) && !defined(NO_USER_DEFINED_LINKS)
TESTING_2("test setup");
HDsnprintf(ext_link_filename, H5_API_TEST_FILENAME_MAX_LENGTH, "%s", EXTERNAL_LINK_TEST_FILE_NAME);
@@ -23123,10 +23139,12 @@ test_link_visit_mixed_links_no_cycles(void)
goto error;
}
- if (H5Pset_link_creation_order(gcpl_id, H5P_CRT_ORDER_TRACKED | H5P_CRT_ORDER_INDEXED) < 0) {
- H5_FAILED();
- HDprintf(" couldn't enable link creation order tracking and indexing on GCPL\n");
- goto error;
+ if (vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER) {
+ if (H5Pset_link_creation_order(gcpl_id, H5P_CRT_ORDER_TRACKED | H5P_CRT_ORDER_INDEXED) < 0) {
+ H5_FAILED();
+ HDprintf(" couldn't enable link creation order tracking and indexing on GCPL\n");
+ goto error;
+ }
}
if ((group_id = H5Gcreate2(container_group, LINK_VISIT_MIXED_LINKS_NO_CYCLE_TEST_SUBGROUP_NAME,
@@ -23302,7 +23320,7 @@ test_link_visit_mixed_links_no_cycles(void)
PART_BEGIN(H5Lvisit_no_cycles_link_name_decreasing)
{
TESTING_2("H5Lvisit2 by link name in decreasing order");
-#ifndef NO_DECREASING_ALPHA_ITER_ORDER
+
/* Reset the counter to the appropriate value for the next test */
i = LINK_VISIT_MIXED_LINKS_NO_CYCLE_TEST_NUM_LINKS;
@@ -23320,10 +23338,6 @@ test_link_visit_mixed_links_no_cycles(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Lvisit_no_cycles_link_name_decreasing);
-#endif
}
PART_END(H5Lvisit_no_cycles_link_name_decreasing);
@@ -23331,6 +23345,12 @@ test_link_visit_mixed_links_no_cycles(void)
{
TESTING_2("H5Lvisit2 by creation order in increasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Lvisit_no_cycles_link_creation_increasing);
+ }
+
/* Reset the counter to the appropriate value for the next test */
i = 2 * LINK_VISIT_MIXED_LINKS_NO_CYCLE_TEST_NUM_LINKS;
@@ -23355,6 +23375,12 @@ test_link_visit_mixed_links_no_cycles(void)
{
TESTING_2("H5Lvisit2 by creation order in decreasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Lvisit_no_cycles_link_creation_decreasing);
+ }
+
/* Reset the counter to the appropriate value for the next test */
i = 3 * LINK_VISIT_MIXED_LINKS_NO_CYCLE_TEST_NUM_LINKS;
@@ -23402,7 +23428,7 @@ test_link_visit_mixed_links_no_cycles(void)
PART_BEGIN(H5Lvisit_by_name_no_cycles_link_name_decreasing)
{
TESTING_2("H5Lvisit_by_name2 by link name in decreasing order");
-#ifndef NO_DECREASING_ALPHA_ITER_ORDER
+
/* Reset the counter to the appropriate value for the next test */
i = LINK_VISIT_MIXED_LINKS_NO_CYCLE_TEST_NUM_LINKS;
@@ -23421,10 +23447,6 @@ test_link_visit_mixed_links_no_cycles(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Lvisit_by_name_no_cycles_link_name_decreasing);
-#endif
}
PART_END(H5Lvisit_by_name_no_cycles_link_name_decreasing);
@@ -23432,6 +23454,12 @@ test_link_visit_mixed_links_no_cycles(void)
{
TESTING_2("H5Lvisit_by_name2 by creation order in increasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Lvisit_by_name_no_cycles_link_creation_increasing);
+ }
+
/* Reset the counter to the appropriate value for the next test */
i = 2 * LINK_VISIT_MIXED_LINKS_NO_CYCLE_TEST_NUM_LINKS;
@@ -23458,6 +23486,12 @@ test_link_visit_mixed_links_no_cycles(void)
{
TESTING_2("H5Lvisit_by_name2 by creation order in decreasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Lvisit_by_name_no_cycles_link_creation_decreasing);
+ }
+
/* Reset the counter to the appropriate value for the next test */
i = 3 * LINK_VISIT_MIXED_LINKS_NO_CYCLE_TEST_NUM_LINKS;
@@ -23521,10 +23555,6 @@ error:
H5E_END_TRY;
return 1;
-#else
- SKIPPED();
- return 0;
-#endif
}
/*
@@ -23549,9 +23579,9 @@ test_link_visit_hard_links_cycles(void)
/* Make sure the connector supports the API functions being tested */
if (!(vol_cap_flags_g & H5VL_CAP_FLAG_FILE_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_GROUP_BASIC) ||
!(vol_cap_flags_g & H5VL_CAP_FLAG_LINK_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_HARD_LINKS) ||
- !(vol_cap_flags_g & H5VL_CAP_FLAG_ITERATE) || !(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ !(vol_cap_flags_g & H5VL_CAP_FLAG_ITERATE)) {
SKIPPED();
- HDprintf(" API functions for basic file, group, link, hard link, iterate, or creation order "
+ HDprintf(" API functions for basic file, group, link, hard link, or iterate "
"aren't supported with this connector\n");
return 0;
}
@@ -23576,10 +23606,12 @@ test_link_visit_hard_links_cycles(void)
goto error;
}
- if (H5Pset_link_creation_order(gcpl_id, H5P_CRT_ORDER_TRACKED | H5P_CRT_ORDER_INDEXED) < 0) {
- H5_FAILED();
- HDprintf(" couldn't enable link creation order tracking and indexing on GCPL\n");
- goto error;
+ if (vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER) {
+ if (H5Pset_link_creation_order(gcpl_id, H5P_CRT_ORDER_TRACKED | H5P_CRT_ORDER_INDEXED) < 0) {
+ H5_FAILED();
+ HDprintf(" couldn't enable link creation order tracking and indexing on GCPL\n");
+ goto error;
+ }
}
if ((group_id = H5Gcreate2(container_group, LINK_VISIT_HARD_LINKS_CYCLE_TEST_SUBGROUP_NAME, H5P_DEFAULT,
@@ -23676,7 +23708,7 @@ test_link_visit_hard_links_cycles(void)
PART_BEGIN(H5Lvisit_cycles_link_name_decreasing)
{
TESTING_2("H5Lvisit2 by link name in decreasing order");
-#ifndef NO_DECREASING_ALPHA_ITER_ORDER
+
/* Reset the counter to the appropriate value for the next test */
i = LINK_VISIT_HARD_LINKS_CYCLE_TEST_NUM_LINKS_PER_TEST;
@@ -23693,10 +23725,6 @@ test_link_visit_hard_links_cycles(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Lvisit_cycles_link_name_decreasing);
-#endif
}
PART_END(H5Lvisit_cycles_link_name_decreasing);
@@ -23704,6 +23732,12 @@ test_link_visit_hard_links_cycles(void)
{
TESTING_2("H5Lvisit2 by creation order in increasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Lvisit_cycles_link_creation_increasing);
+ }
+
/* Reset the counter to the appropriate value for the next test */
i = 2 * LINK_VISIT_HARD_LINKS_CYCLE_TEST_NUM_LINKS_PER_TEST;
@@ -23728,6 +23762,12 @@ test_link_visit_hard_links_cycles(void)
{
TESTING_2("H5Lvisit2 by creation order in decreasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Lvisit_cycles_link_creation_decreasing);
+ }
+
/* Reset the counter to the appropriate value for the next test */
i = 3 * LINK_VISIT_HARD_LINKS_CYCLE_TEST_NUM_LINKS_PER_TEST;
@@ -23775,7 +23815,7 @@ test_link_visit_hard_links_cycles(void)
PART_BEGIN(H5Lvisit_by_name_cycles_link_name_decreasing)
{
TESTING_2("H5Lvisit_by_name2 by link name in decreasing order");
-#ifndef NO_DECREASING_ALPHA_ITER_ORDER
+
/* Reset the counter to the appropriate value for the next test */
i = LINK_VISIT_HARD_LINKS_CYCLE_TEST_NUM_LINKS_PER_TEST;
@@ -23794,10 +23834,6 @@ test_link_visit_hard_links_cycles(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Lvisit_by_name_cycles_link_name_decreasing);
-#endif
}
PART_END(H5Lvisit_by_name_cycles_link_name_decreasing);
@@ -23805,6 +23841,12 @@ test_link_visit_hard_links_cycles(void)
{
TESTING_2("H5Lvisit_by_name2 by creation order in increasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Lvisit_by_name_cycles_link_creation_increasing);
+ }
+
/* Reset the counter to the appropriate value for the next test */
i = 2 * LINK_VISIT_HARD_LINKS_CYCLE_TEST_NUM_LINKS_PER_TEST;
@@ -23830,6 +23872,12 @@ test_link_visit_hard_links_cycles(void)
{
TESTING_2("H5Lvisit_by_name2 by creation order in decreasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Lvisit_by_name_cycles_link_creation_decreasing);
+ }
+
/* Reset the counter to the appropriate value for the next test */
i = 3 * LINK_VISIT_HARD_LINKS_CYCLE_TEST_NUM_LINKS_PER_TEST;
@@ -23904,9 +23952,9 @@ test_link_visit_soft_links_cycles(void)
/* Make sure the connector supports the API functions being tested */
if (!(vol_cap_flags_g & H5VL_CAP_FLAG_FILE_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_GROUP_BASIC) ||
!(vol_cap_flags_g & H5VL_CAP_FLAG_LINK_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_SOFT_LINKS) ||
- !(vol_cap_flags_g & H5VL_CAP_FLAG_ITERATE) || !(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ !(vol_cap_flags_g & H5VL_CAP_FLAG_ITERATE)) {
SKIPPED();
- HDprintf(" API functions for basic file, group, link, soft link, iterate, or creation order "
+ HDprintf(" API functions for basic file, group, link, soft link, or iterate "
"aren't supported with this connector\n");
return 0;
}
@@ -23931,10 +23979,12 @@ test_link_visit_soft_links_cycles(void)
goto error;
}
- if (H5Pset_link_creation_order(gcpl_id, H5P_CRT_ORDER_TRACKED | H5P_CRT_ORDER_INDEXED) < 0) {
- H5_FAILED();
- HDprintf(" couldn't enable link creation order tracking and indexing on GCPL\n");
- goto error;
+ if (vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER) {
+ if (H5Pset_link_creation_order(gcpl_id, H5P_CRT_ORDER_TRACKED | H5P_CRT_ORDER_INDEXED) < 0) {
+ H5_FAILED();
+ HDprintf(" couldn't enable link creation order tracking and indexing on GCPL\n");
+ goto error;
+ }
}
if ((group_id = H5Gcreate2(container_group, LINK_VISIT_SOFT_LINKS_CYCLE_TEST_SUBGROUP_NAME, H5P_DEFAULT,
@@ -24036,7 +24086,7 @@ test_link_visit_soft_links_cycles(void)
PART_BEGIN(H5Lvisit_cycles_link_name_decreasing)
{
TESTING_2("H5Lvisit2 by link name in decreasing order");
-#ifndef NO_DECREASING_ALPHA_ITER_ORDER
+
/* Reset the counter to the appropriate value for the next test */
i = LINK_VISIT_SOFT_LINKS_CYCLE_TEST_NUM_LINKS_PER_TEST;
@@ -24053,10 +24103,6 @@ test_link_visit_soft_links_cycles(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Lvisit_cycles_link_name_decreasing);
-#endif
}
PART_END(H5Lvisit_cycles_link_name_decreasing);
@@ -24064,6 +24110,12 @@ test_link_visit_soft_links_cycles(void)
{
TESTING_2("H5Lvisit2 by creation order in increasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Lvisit_cycles_link_creation_increasing);
+ }
+
/* Reset the counter to the appropriate value for the next test */
i = 2 * LINK_VISIT_SOFT_LINKS_CYCLE_TEST_NUM_LINKS_PER_TEST;
@@ -24088,6 +24140,12 @@ test_link_visit_soft_links_cycles(void)
{
TESTING_2("H5Lvisit2 by creation order in decreasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Lvisit_cycles_link_creation_decreasing);
+ }
+
/* Reset the counter to the appropriate value for the next test */
i = 3 * LINK_VISIT_SOFT_LINKS_CYCLE_TEST_NUM_LINKS_PER_TEST;
@@ -24136,7 +24194,7 @@ test_link_visit_soft_links_cycles(void)
PART_BEGIN(H5Lvisit_by_name_cycles_link_name_decreasing)
{
TESTING_2("H5Lvisit_by_name2 by link name in decreasing order");
-#ifndef NO_DECREASING_ALPHA_ITER_ORDER
+
/* Reset the counter to the appropriate value for the next test */
i = LINK_VISIT_SOFT_LINKS_CYCLE_TEST_NUM_LINKS_PER_TEST;
@@ -24155,10 +24213,6 @@ test_link_visit_soft_links_cycles(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Lvisit_by_name_cycles_link_name_decreasing);
-#endif
}
PART_END(H5Lvisit_by_name_cycles_link_name_decreasing);
@@ -24166,6 +24220,12 @@ test_link_visit_soft_links_cycles(void)
{
TESTING_2("H5Lvisit_by_name2 by creation order in increasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Lvisit_by_name_cycles_link_creation_increasing);
+ }
+
/* Reset the counter to the appropriate value for the next test */
i = 2 * LINK_VISIT_SOFT_LINKS_CYCLE_TEST_NUM_LINKS_PER_TEST;
@@ -24191,6 +24251,12 @@ test_link_visit_soft_links_cycles(void)
{
TESTING_2("H5Lvisit_by_name2 by creation order in decreasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Lvisit_by_name_cycles_link_creation_decreasing);
+ }
+
/* Reset the counter to the appropriate value for the next test */
i = 3 * LINK_VISIT_SOFT_LINKS_CYCLE_TEST_NUM_LINKS_PER_TEST;
@@ -24254,28 +24320,25 @@ error:
static int
test_link_visit_external_links_cycles(void)
{
-#ifndef NO_EXTERNAL_LINKS
size_t i;
htri_t link_exists;
hid_t file_id = H5I_INVALID_HID;
hid_t container_group = H5I_INVALID_HID, group_id = H5I_INVALID_HID;
hid_t subgroup_id = H5I_INVALID_HID;
hid_t gcpl_id = H5I_INVALID_HID;
-#endif
TESTING_MULTIPART("link visiting with cycles (only external links)");
/* Make sure the connector supports the API functions being tested */
if (!(vol_cap_flags_g & H5VL_CAP_FLAG_FILE_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_GROUP_BASIC) ||
!(vol_cap_flags_g & H5VL_CAP_FLAG_LINK_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_EXTERNAL_LINKS) ||
- !(vol_cap_flags_g & H5VL_CAP_FLAG_ITERATE) || !(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ !(vol_cap_flags_g & H5VL_CAP_FLAG_ITERATE)) {
SKIPPED();
- HDprintf(" API functions for basic file, group, link, external link, iterate, or creation order "
+ HDprintf(" API functions for basic file, group, link, external link, or iterate "
"aren't supported with this connector\n");
return 0;
}
-#ifndef NO_EXTERNAL_LINKS
TESTING_2("test setup");
if ((file_id = H5Fopen(H5_api_test_filename, H5F_ACC_RDWR, H5P_DEFAULT)) < 0) {
@@ -24296,10 +24359,12 @@ test_link_visit_external_links_cycles(void)
goto error;
}
- if (H5Pset_link_creation_order(gcpl_id, H5P_CRT_ORDER_TRACKED | H5P_CRT_ORDER_INDEXED) < 0) {
- H5_FAILED();
- HDprintf(" couldn't enable link creation order tracking and indexing on GCPL\n");
- goto error;
+ if (vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER) {
+ if (H5Pset_link_creation_order(gcpl_id, H5P_CRT_ORDER_TRACKED | H5P_CRT_ORDER_INDEXED) < 0) {
+ H5_FAILED();
+ HDprintf(" couldn't enable link creation order tracking and indexing on GCPL\n");
+ goto error;
+ }
}
if ((group_id = H5Gcreate2(container_group, LINK_VISIT_EXT_LINKS_CYCLE_TEST_SUBGROUP_NAME, H5P_DEFAULT,
@@ -24403,7 +24468,7 @@ test_link_visit_external_links_cycles(void)
PART_BEGIN(H5Lvisit_cycles_link_name_decreasing)
{
TESTING_2("H5Lvisit2 by link name in decreasing order");
-#ifndef NO_DECREASING_ALPHA_ITER_ORDER
+
/* Reset the counter to the appropriate value for the next test */
i = LINK_VISIT_EXT_LINKS_CYCLE_TEST_NUM_LINKS_PER_TEST;
@@ -24421,10 +24486,6 @@ test_link_visit_external_links_cycles(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Lvisit_cycles_link_name_decreasing);
-#endif
}
PART_END(H5Lvisit_cycles_link_name_decreasing);
@@ -24432,6 +24493,12 @@ test_link_visit_external_links_cycles(void)
{
TESTING_2("H5Lvisit2 by creation order in increasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Lvisit_cycles_link_creation_increasing);
+ }
+
/* Reset the counter to the appropriate value for the next test */
i = 2 * LINK_VISIT_EXT_LINKS_CYCLE_TEST_NUM_LINKS_PER_TEST;
@@ -24456,6 +24523,12 @@ test_link_visit_external_links_cycles(void)
{
TESTING_2("H5Lvisit2 by creation order in decreasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Lvisit_cycles_link_creation_decreasing);
+ }
+
/* Reset the counter to the appropriate value for the next test */
i = 3 * LINK_VISIT_EXT_LINKS_CYCLE_TEST_NUM_LINKS_PER_TEST;
@@ -24504,7 +24577,7 @@ test_link_visit_external_links_cycles(void)
PART_BEGIN(H5Lvisit_by_name_cycles_link_name_decreasing)
{
TESTING_2("H5Lvisit_by_name2 by link name in decreasing order");
-#ifndef NO_DECREASING_ALPHA_ITER_ORDER
+
/* Reset the counter to the appropriate value for the next test */
i = LINK_VISIT_EXT_LINKS_CYCLE_TEST_NUM_LINKS_PER_TEST;
@@ -24523,10 +24596,6 @@ test_link_visit_external_links_cycles(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Lvisit_by_name_cycles_link_name_decreasing);
-#endif
}
PART_END(H5Lvisit_by_name_cycles_link_name_decreasing);
@@ -24534,6 +24603,12 @@ test_link_visit_external_links_cycles(void)
{
TESTING_2("H5Lvisit_by_name2 by creation order in increasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Lvisit_by_name_cycles_link_creation_increasing);
+ }
+
/* Reset the counter to the appropriate value for the next test */
i = 2 * LINK_VISIT_EXT_LINKS_CYCLE_TEST_NUM_LINKS_PER_TEST;
@@ -24560,6 +24635,12 @@ test_link_visit_external_links_cycles(void)
{
TESTING_2("H5Lvisit_by_name2 by creation order in decreasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Lvisit_by_name_cycles_link_creation_decreasing);
+ }
+
/* Reset the counter to the appropriate value for the next test */
i = 3 * LINK_VISIT_EXT_LINKS_CYCLE_TEST_NUM_LINKS_PER_TEST;
@@ -24611,10 +24692,6 @@ error:
H5E_END_TRY;
return 1;
-#else
- SKIPPED();
- return 0;
-#endif
}
/*
@@ -24651,7 +24728,6 @@ test_link_visit_ud_links_cycles(void)
static int
test_link_visit_mixed_links_cycles(void)
{
-#if !defined(NO_EXTERNAL_LINKS) && !defined(NO_USER_DEFINED_LINKS)
htri_t link_exists;
size_t i;
hid_t file_id = H5I_INVALID_HID;
@@ -24659,7 +24735,6 @@ test_link_visit_mixed_links_cycles(void)
hid_t subgroup1 = H5I_INVALID_HID, subgroup2 = H5I_INVALID_HID;
hid_t gcpl_id = H5I_INVALID_HID;
char ext_link_filename[H5_API_TEST_FILENAME_MAX_LENGTH];
-#endif
TESTING_MULTIPART("link visiting with cycles (mixed link types)");
@@ -24667,14 +24742,14 @@ test_link_visit_mixed_links_cycles(void)
if (!(vol_cap_flags_g & H5VL_CAP_FLAG_FILE_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_GROUP_BASIC) ||
!(vol_cap_flags_g & H5VL_CAP_FLAG_LINK_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_EXTERNAL_LINKS) ||
!(vol_cap_flags_g & H5VL_CAP_FLAG_HARD_LINKS) || !(vol_cap_flags_g & H5VL_CAP_FLAG_SOFT_LINKS) ||
- !(vol_cap_flags_g & H5VL_CAP_FLAG_ITERATE) || !(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ !(vol_cap_flags_g & H5VL_CAP_FLAG_ITERATE) || !(vol_cap_flags_g & H5VL_CAP_FLAG_UD_LINKS)) {
SKIPPED();
- HDprintf(" API functions for basic file, group, link, hard, soft, external link, iterate, or "
- "creation order aren't supported with this connector\n");
+ HDprintf(
+ " API functions for basic file, group, link, hard link, soft link, external link, iterate, "
+ "or user defined link aren't supported with this connector\n");
return 0;
}
-#if !defined(NO_EXTERNAL_LINKS) && !defined(NO_USER_DEFINED_LINKS)
TESTING_2("test setup");
HDsnprintf(ext_link_filename, H5_API_TEST_FILENAME_MAX_LENGTH, "%s", EXTERNAL_LINK_TEST_FILE_NAME);
@@ -24706,10 +24781,12 @@ test_link_visit_mixed_links_cycles(void)
goto error;
}
- if (H5Pset_link_creation_order(gcpl_id, H5P_CRT_ORDER_TRACKED | H5P_CRT_ORDER_INDEXED) < 0) {
- H5_FAILED();
- HDprintf(" couldn't enable link creation order tracking and indexing on GCPL\n");
- goto error;
+ if (vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER) {
+ if (H5Pset_link_creation_order(gcpl_id, H5P_CRT_ORDER_TRACKED | H5P_CRT_ORDER_INDEXED) < 0) {
+ H5_FAILED();
+ HDprintf(" couldn't enable link creation order tracking and indexing on GCPL\n");
+ goto error;
+ }
}
if ((group_id = H5Gcreate2(container_group, LINK_VISIT_MIXED_LINKS_CYCLE_TEST_SUBGROUP_NAME, H5P_DEFAULT,
@@ -24855,7 +24932,7 @@ test_link_visit_mixed_links_cycles(void)
PART_BEGIN(H5Lvisit_cycles_link_name_decreasing)
{
TESTING_2("H5Lvisit2 by link name in decreasing order");
-#ifndef NO_DECREASING_ALPHA_ITER_ORDER
+
/* Reset the counter to the appropriate value for the next test */
i = LINK_VISIT_MIXED_LINKS_CYCLE_TEST_NUM_LINKS;
@@ -24872,10 +24949,6 @@ test_link_visit_mixed_links_cycles(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Lvisit_cycles_link_name_decreasing);
-#endif
}
PART_END(H5Lvisit_cycles_link_name_decreasing);
@@ -24883,6 +24956,12 @@ test_link_visit_mixed_links_cycles(void)
{
TESTING_2("H5Lvisit2 by creation order in increasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Lvisit_cycles_link_creation_increasing);
+ }
+
/* Reset the counter to the appropriate value for the next test */
i = 2 * LINK_VISIT_MIXED_LINKS_CYCLE_TEST_NUM_LINKS;
@@ -24907,6 +24986,12 @@ test_link_visit_mixed_links_cycles(void)
{
TESTING_2("H5Lvisit2 by creation order in decreasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Lvisit_cycles_link_creation_decreasing);
+ }
+
/* Reset the counter to the appropriate value for the next test */
i = 3 * LINK_VISIT_MIXED_LINKS_CYCLE_TEST_NUM_LINKS;
@@ -24954,7 +25039,7 @@ test_link_visit_mixed_links_cycles(void)
PART_BEGIN(H5Lvisit_by_name_cycles_link_name_decreasing)
{
TESTING_2("H5Lvisit_by_name2 by link name in decreasing order");
-#ifndef NO_DECREASING_ALPHA_ITER_ORDER
+
/* Reset the counter to the appropriate value for the next test */
i = LINK_VISIT_MIXED_LINKS_CYCLE_TEST_NUM_LINKS;
@@ -24973,10 +25058,6 @@ test_link_visit_mixed_links_cycles(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Lvisit_by_name_cycles_link_name_decreasing);
-#endif
}
PART_END(H5Lvisit_by_name_cycles_link_name_decreasing);
@@ -24984,6 +25065,12 @@ test_link_visit_mixed_links_cycles(void)
{
TESTING_2("H5Lvisit_by_name2 by creation order in increasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Lvisit_by_name_cycles_link_creation_increasing);
+ }
+
/* Reset the counter to the appropriate value for the next test */
i = 2 * LINK_VISIT_MIXED_LINKS_CYCLE_TEST_NUM_LINKS;
@@ -25009,6 +25096,12 @@ test_link_visit_mixed_links_cycles(void)
{
TESTING_2("H5Lvisit_by_name2 by creation order in decreasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Lvisit_by_name_cycles_link_creation_decreasing);
+ }
+
/* Reset the counter to the appropriate value for the next test */
i = 3 * LINK_VISIT_MIXED_LINKS_CYCLE_TEST_NUM_LINKS;
@@ -25064,10 +25157,6 @@ error:
H5E_END_TRY;
return 1;
-#else
- SKIPPED();
- return 0;
-#endif
}
/*
@@ -25092,11 +25181,10 @@ test_link_visit_invalid_params(void)
/* Make sure the connector supports the API functions being tested */
if (!(vol_cap_flags_g & H5VL_CAP_FLAG_FILE_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_GROUP_BASIC) ||
!(vol_cap_flags_g & H5VL_CAP_FLAG_LINK_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_EXTERNAL_LINKS) ||
- !(vol_cap_flags_g & H5VL_CAP_FLAG_DATASET_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_ITERATE) ||
- !(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ !(vol_cap_flags_g & H5VL_CAP_FLAG_DATASET_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_ITERATE)) {
SKIPPED();
- HDprintf(" API functions for basic file, group, dataset, link, external link, iterate, or "
- "creation order aren't supported with this connector\n");
+ HDprintf(" API functions for basic file, group, dataset, link, external link, or iterate "
+ "aren't supported with this connector\n");
return 0;
}
@@ -25185,14 +25273,12 @@ test_link_visit_invalid_params(void)
HDprintf(" couldn't create soft link '%s'\n", LINK_VISIT_INVALID_PARAMS_TEST_LINK_NAME2);
goto error;
}
-#ifndef NO_EXTERNAL_LINKS
if (H5Lcreate_external(ext_link_filename, "/", subgroup2, LINK_VISIT_INVALID_PARAMS_TEST_LINK_NAME3,
H5P_DEFAULT, H5P_DEFAULT) < 0) {
H5_FAILED();
HDprintf(" couldn't create external link '%s'\n", LINK_VISIT_INVALID_PARAMS_TEST_LINK_NAME3);
goto error;
}
-#endif
if (H5Lcreate_hard(subgroup2, LINK_VISIT_INVALID_PARAMS_TEST_DSET_NAME, subgroup2,
LINK_VISIT_INVALID_PARAMS_TEST_LINK_NAME4, H5P_DEFAULT, H5P_DEFAULT) < 0) {
H5_FAILED();
@@ -25226,7 +25312,7 @@ test_link_visit_invalid_params(void)
HDprintf(" link 2 did not exist\n");
goto error;
}
-#ifndef NO_EXTERNAL_LINKS
+
if ((link_exists = H5Lexists(subgroup2, LINK_VISIT_INVALID_PARAMS_TEST_LINK_NAME3, H5P_DEFAULT)) < 0) {
H5_FAILED();
HDprintf(" couldn't determine if third link '%s' exists\n",
@@ -25239,7 +25325,7 @@ test_link_visit_invalid_params(void)
HDprintf(" link 3 did not exist\n");
goto error;
}
-#endif
+
if ((link_exists = H5Lexists(subgroup2, LINK_VISIT_INVALID_PARAMS_TEST_LINK_NAME4, H5P_DEFAULT)) < 0) {
H5_FAILED();
HDprintf(" couldn't determine if fourth link '%s' exists\n",
@@ -25552,9 +25638,9 @@ test_link_visit_0_links(void)
/* Make sure the connector supports the API functions being tested */
if (!(vol_cap_flags_g & H5VL_CAP_FLAG_FILE_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_GROUP_BASIC) ||
- !(vol_cap_flags_g & H5VL_CAP_FLAG_ITERATE) || !(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ !(vol_cap_flags_g & H5VL_CAP_FLAG_ITERATE)) {
SKIPPED();
- HDprintf(" API functions for basic file, group, link iterate, or creation order aren't supported "
+ HDprintf(" API functions for basic file, group, or link iterate aren't supported "
"with this connector\n");
return 0;
}
@@ -25579,10 +25665,12 @@ test_link_visit_0_links(void)
goto error;
}
- if (H5Pset_link_creation_order(gcpl_id, H5P_CRT_ORDER_TRACKED | H5P_CRT_ORDER_INDEXED) < 0) {
- H5_FAILED();
- HDprintf(" couldn't enable link creation order tracking and indexing on GCPL\n");
- goto error;
+ if (vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER) {
+ if (H5Pset_link_creation_order(gcpl_id, H5P_CRT_ORDER_TRACKED | H5P_CRT_ORDER_INDEXED) < 0) {
+ H5_FAILED();
+ HDprintf(" couldn't enable link creation order tracking and indexing on GCPL\n");
+ goto error;
+ }
}
if ((group_id = H5Gcreate2(container_group, LINK_VISIT_0_LINKS_TEST_SUBGROUP_NAME, H5P_DEFAULT, gcpl_id,
@@ -25613,7 +25701,7 @@ test_link_visit_0_links(void)
PART_BEGIN(H5Lvisit_0_links_name_decreasing)
{
TESTING_2("H5Lvisit2 by link name in decreasing order");
-#ifndef NO_DECREASING_ALPHA_ITER_ORDER
+
if (H5Lvisit2(group_id, H5_INDEX_NAME, H5_ITER_DEC, link_visit_0_links_cb, NULL) < 0) {
H5_FAILED();
HDprintf(" H5Lvisit2 by index type name in decreasing order failed\n");
@@ -25621,10 +25709,6 @@ test_link_visit_0_links(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Lvisit_0_links_name_decreasing);
-#endif
}
PART_END(H5Lvisit_0_links_name_decreasing);
@@ -25632,6 +25716,12 @@ test_link_visit_0_links(void)
{
TESTING_2("H5Lvisit2 by creation order in increasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Lvisit_0_links_creation_increasing);
+ }
+
if (H5Lvisit2(group_id, H5_INDEX_CRT_ORDER, H5_ITER_INC, link_visit_0_links_cb, NULL) < 0) {
H5_FAILED();
HDprintf(" H5Lvisit2 by index type creation order in increasing order failed\n");
@@ -25646,6 +25736,12 @@ test_link_visit_0_links(void)
{
TESTING_2("H5Lvisit2 by creation order in decreasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Lvisit_0_links_creation_decreasing);
+ }
+
if (H5Lvisit2(group_id, H5_INDEX_CRT_ORDER, H5_ITER_DEC, link_visit_0_links_cb, NULL) < 0) {
H5_FAILED();
HDprintf(" H5Lvisit2 by index type creation order in decreasing order failed\n");
@@ -25674,7 +25770,7 @@ test_link_visit_0_links(void)
PART_BEGIN(H5Lvisit_by_name_0_links_name_decreasing)
{
TESTING_2("H5Lvisit_by_name2 by link name in decreasing order");
-#ifndef NO_DECREASING_ALPHA_ITER_ORDER
+
if (H5Lvisit_by_name2(file_id, "/" LINK_TEST_GROUP_NAME "/" LINK_VISIT_0_LINKS_TEST_SUBGROUP_NAME,
H5_INDEX_NAME, H5_ITER_DEC, link_visit_0_links_cb, NULL, H5P_DEFAULT) < 0) {
H5_FAILED();
@@ -25683,10 +25779,6 @@ test_link_visit_0_links(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Lvisit_by_name_0_links_name_decreasing);
-#endif
}
PART_END(H5Lvisit_by_name_0_links_name_decreasing);
@@ -25694,6 +25786,12 @@ test_link_visit_0_links(void)
{
TESTING_2("H5Lvisit_by_name2 by creation order in increasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Lvisit_by_name_0_links_creation_increasing);
+ }
+
if (H5Lvisit_by_name2(file_id, "/" LINK_TEST_GROUP_NAME "/" LINK_VISIT_0_LINKS_TEST_SUBGROUP_NAME,
H5_INDEX_CRT_ORDER, H5_ITER_INC, link_visit_0_links_cb, NULL,
H5P_DEFAULT) < 0) {
@@ -25710,6 +25808,12 @@ test_link_visit_0_links(void)
{
TESTING_2("H5Lvisit_by_name2 by creation order in decreasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Lvisit_by_name_0_links_creation_decreasing);
+ }
+
if (H5Lvisit_by_name2(file_id, "/" LINK_TEST_GROUP_NAME "/" LINK_VISIT_0_LINKS_TEST_SUBGROUP_NAME,
H5_INDEX_CRT_ORDER, H5_ITER_DEC, link_visit_0_links_cb, NULL,
H5P_DEFAULT) < 0) {
@@ -25877,7 +25981,6 @@ done:
* through all of the links in the test group and checks to make sure
* their names and link classes match what is expected.
*/
-#ifndef NO_EXTERNAL_LINKS
static herr_t
link_iter_external_links_cb(hid_t group_id, const char *name, const H5L_info2_t *info, void *op_data)
{
@@ -25887,6 +25990,13 @@ link_iter_external_links_cb(hid_t group_id, const char *name, const H5L_info2_t
char expected_link_name[LINK_ITER_EXT_LINKS_TEST_BUF_SIZE];
herr_t ret_val = H5_ITER_CONT;
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_EXTERNAL_LINKS)) {
+ SKIPPED();
+ HDprintf(" API functions for external links aren't supported with this "
+ "connector\n");
+ return 1;
+ }
+
UNUSED(group_id);
UNUSED(op_data);
@@ -25932,16 +26042,12 @@ done:
return ret_val;
}
-#endif
-#ifndef NO_USER_DEFINED_LINKS
-static herr_t link_iter_ud_links_cb(hid_t group_id, const char *name, const H5L_info2_t *info, void *op_data);
-#endif
+
/*
* Link iteration callback for the mixed link types test which iterates
* through all of the links in the test group and checks to make sure
* their names and link classes match what is expected.
*/
-#if !defined(NO_EXTERNAL_LINKS) && !defined(NO_USER_DEFINED_LINKS)
static herr_t
link_iter_mixed_links_cb(hid_t group_id, const char *name, const H5L_info2_t *info, void *op_data)
{
@@ -25949,6 +26055,13 @@ link_iter_mixed_links_cb(hid_t group_id, const char *name, const H5L_info2_t *in
size_t counter_val = *((size_t *)op_data);
herr_t ret_val = 0;
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_EXTERNAL_LINKS) || !(vol_cap_flags_g & H5VL_CAP_FLAG_UD_LINKS)) {
+ SKIPPED();
+ HDprintf(" API functions for external or user-defined link aren't supported with this "
+ "connector\n");
+ return 1;
+ }
+
UNUSED(group_id);
if (!HDstrncmp(name, LINK_ITER_MIXED_LINKS_TEST_HARD_LINK_NAME,
@@ -25991,7 +26104,6 @@ done:
return ret_val;
}
-#endif
/*
* Link iteration callback for the H5Literate(_by_name)2 invalid
@@ -26027,12 +26139,18 @@ link_iter_0_links_cb(hid_t group_id, const char *name, const H5L_info2_t *info,
* Link iteration callback to test that the index-saving behavior of H5Literate2
* works correctly.
*/
-#if !defined(NO_EXTERNAL_LINKS) && !defined(NO_USER_DEFINED_LINKS)
static herr_t
link_iter_idx_saving_cb(hid_t group_id, const char *name, const H5L_info2_t *info, void *op_data)
{
int *broken = (int *)op_data;
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_EXTERNAL_LINKS) || !(vol_cap_flags_g & H5VL_CAP_FLAG_UD_LINKS)) {
+ SKIPPED();
+ HDprintf(" API functions for external or user-defined link aren't supported with this "
+ "connector\n");
+ return 1;
+ }
+
UNUSED(group_id);
if (broken && !*broken &&
@@ -26076,7 +26194,6 @@ link_iter_idx_saving_cb(hid_t group_id, const char *name, const H5L_info2_t *inf
error:
return -1;
}
-#endif
/*
* Link visiting callback for the hard links + no cycles test which
@@ -26299,7 +26416,6 @@ done:
* iterates recursively through all of the links in the test group and
* checks to make sure their names and link classes match what is expected.
*/
-#ifndef NO_EXTERNAL_LINKS
static herr_t
link_visit_external_links_no_cycles_cb(hid_t group_id, const char *name, const H5L_info2_t *info,
void *op_data)
@@ -26313,6 +26429,13 @@ link_visit_external_links_no_cycles_cb(hid_t group_id, const char *name, const H
char expected_link_name[LINK_VISIT_EXT_LINKS_NO_CYCLE_TEST_BUF_SIZE];
herr_t ret_val = H5_ITER_CONT;
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_EXTERNAL_LINKS)) {
+ SKIPPED();
+ HDprintf(" API functions for external links aren't supported with this "
+ "connector\n");
+ return 1;
+ }
+
UNUSED(group_id);
UNUSED(op_data);
@@ -26408,17 +26531,12 @@ done:
return ret_val;
}
-#endif
-#ifndef NO_USER_DEFINED_LINKS
-static herr_t link_visit_ud_links_no_cycles_cb(hid_t group_id, const char *name, const H5L_info2_t *info,
- void *op_data);
-#endif
+
/*
* Link visiting callback for the mixed link types + no cycles test which
* iterates recursively through all of the links in the test group and
* checks to make sure their names and link classes match what is expected.
*/
-#if !defined(NO_EXTERNAL_LINKS) && !defined(NO_USER_DEFINED_LINKS)
static herr_t
link_visit_mixed_links_no_cycles_cb(hid_t group_id, const char *name, const H5L_info2_t *info, void *op_data)
{
@@ -26426,6 +26544,13 @@ link_visit_mixed_links_no_cycles_cb(hid_t group_id, const char *name, const H5L_
size_t counter_val = *((size_t *)op_data);
herr_t ret_val = 0;
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_EXTERNAL_LINKS) || !(vol_cap_flags_g & H5VL_CAP_FLAG_UD_LINKS)) {
+ SKIPPED();
+ HDprintf(" API functions for external or user-defined link aren't supported with this "
+ "connector\n");
+ return 1;
+ }
+
UNUSED(group_id);
UNUSED(op_data);
@@ -26557,7 +26682,6 @@ done:
return ret_val;
}
-#endif
/*
* Link visiting callback for the hard links + cycles test which
@@ -26780,7 +26904,6 @@ done:
* iterates recursively through all of the links in the test group and
* checks to make sure their names and link classes match what is expected.
*/
-#ifndef NO_EXTERNAL_LINKS
static herr_t
link_visit_external_links_cycles_cb(hid_t group_id, const char *name, const H5L_info2_t *info, void *op_data)
{
@@ -26793,6 +26916,13 @@ link_visit_external_links_cycles_cb(hid_t group_id, const char *name, const H5L_
char expected_link_name[LINK_VISIT_EXT_LINKS_CYCLE_TEST_BUF_SIZE];
herr_t ret_val = H5_ITER_CONT;
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_EXTERNAL_LINKS)) {
+ SKIPPED();
+ HDprintf(" API functions for external links aren't supported with this "
+ "connector\n");
+ return 1;
+ }
+
UNUSED(group_id);
UNUSED(op_data);
@@ -26888,17 +27018,12 @@ done:
return ret_val;
}
-#endif
-#ifndef NO_USER_DEFINED_LINKS
-static herr_t link_visit_ud_links_cycles_cb(hid_t group_id, const char *name, const H5L_info2_t *info,
- void *op_data);
-#endif
+
/*
* Link visiting callback for the mixed link types + cycles test which
* iterates recursively through all of the links in the test group and
* checks to make sure their names and link classes match what is expected.
*/
-#if !defined(NO_EXTERNAL_LINKS) && !defined(NO_USER_DEFINED_LINKS)
static herr_t
link_visit_mixed_links_cycles_cb(hid_t group_id, const char *name, const H5L_info2_t *info, void *op_data)
{
@@ -26906,6 +27031,13 @@ link_visit_mixed_links_cycles_cb(hid_t group_id, const char *name, const H5L_inf
size_t counter_val = *((size_t *)op_data);
herr_t ret_val = 0;
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_EXTERNAL_LINKS) || !(vol_cap_flags_g & H5VL_CAP_FLAG_UD_LINKS)) {
+ SKIPPED();
+ HDprintf(" API functions for external or user-defined link aren't supported with this "
+ "connector\n");
+ return 1;
+ }
+
UNUSED(group_id);
UNUSED(op_data);
@@ -27005,7 +27137,6 @@ done:
return ret_val;
}
-#endif
/*
* Link visiting callback for the H5Lvisit(_by_name)2 invalid
diff --git a/test/API/H5_api_object_test.c b/test/API/H5_api_object_test.c
index e054356..8055ad9 100644
--- a/test/API/H5_api_object_test.c
+++ b/test/API/H5_api_object_test.c
@@ -432,10 +432,9 @@ test_open_object_invalid_params(void)
/* Make sure the connector supports the API functions being tested */
if (!(vol_cap_flags_g & (H5VL_CAP_FLAG_FILE_BASIC)) || !(vol_cap_flags_g & H5VL_CAP_FLAG_GROUP_BASIC) ||
- !(vol_cap_flags_g & H5VL_CAP_FLAG_OBJECT_BASIC) ||
- !(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ !(vol_cap_flags_g & H5VL_CAP_FLAG_OBJECT_BASIC)) {
SKIPPED();
- HDprintf(" API functions for basic file, group, object, or creation order aren't supported with "
+ HDprintf(" API functions for basic file, group, or object aren't supported with "
"this connector\n");
return 0;
}
@@ -460,10 +459,12 @@ test_open_object_invalid_params(void)
goto error;
}
- if (H5Pset_link_creation_order(gcpl_id, H5P_CRT_ORDER_TRACKED | H5P_CRT_ORDER_INDEXED) < 0) {
- H5_FAILED();
- HDprintf(" couldn't enable link creation order tracking and indexing on GCPL\n");
- goto error;
+ if (vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER) {
+ if (H5Pset_link_creation_order(gcpl_id, H5P_CRT_ORDER_TRACKED | H5P_CRT_ORDER_INDEXED) < 0) {
+ H5_FAILED();
+ HDprintf(" couldn't enable link creation order tracking and indexing on GCPL\n");
+ goto error;
+ }
}
if ((group_id = H5Gcreate2(container_group, OBJECT_OPEN_INVALID_PARAMS_TEST_GROUP_NAME, H5P_DEFAULT,
@@ -1550,7 +1551,7 @@ test_link_object_invalid_params(void)
PART_BEGIN(H5Olink_invalid_lapl)
{
TESTING_2("H5Olink with an invalid LAPL");
-#ifndef NO_INVALID_PROPERTY_LIST_TESTS
+
H5E_BEGIN_TRY
{
status =
@@ -1565,10 +1566,6 @@ test_link_object_invalid_params(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Olink_invalid_lapl);
-#endif
}
PART_END(H5Olink_invalid_lapl);
}
@@ -1624,7 +1621,7 @@ test_incr_decr_object_refcount(void)
!(vol_cap_flags_g & H5VL_CAP_FLAG_OBJECT_MORE) ||
!(vol_cap_flags_g & H5VL_CAP_FLAG_STORED_DATATYPES)) {
SKIPPED();
- HDprintf(" API functions for basic file, group, dataset, stored datatype, basic or more object "
+ HDprintf(" API functions for basic file, group, dataset, stored datatype, or object "
"aren't supported with this connector\n");
return 0;
}
@@ -3844,7 +3841,8 @@ test_object_copy_group_with_soft_links(void)
!(vol_cap_flags_g & H5VL_CAP_FLAG_LINK_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_LINK_MORE) ||
!(vol_cap_flags_g & H5VL_CAP_FLAG_ITERATE) || !(vol_cap_flags_g & H5VL_CAP_FLAG_SOFT_LINKS)) {
SKIPPED();
- HDprintf(" API functions for basic file, group, object, link, or soft link aren't supported with "
+ HDprintf(" API functions for basic file, group, object, link, iterate, or soft link aren't "
+ "supported with "
"this connector\n");
return 0;
}
@@ -5075,12 +5073,10 @@ test_object_visit(void)
if (!(vol_cap_flags_g & (H5VL_CAP_FLAG_FILE_BASIC)) || !(vol_cap_flags_g & H5VL_CAP_FLAG_GROUP_BASIC) ||
!(vol_cap_flags_g & H5VL_CAP_FLAG_OBJECT_BASIC) ||
!(vol_cap_flags_g & H5VL_CAP_FLAG_STORED_DATATYPES) || !(vol_cap_flags_g & H5VL_CAP_FLAG_ITERATE) ||
- !(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER) ||
- !(vol_cap_flags_g & H5VL_CAP_FLAG_DATASET_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_ATTR_BASIC) ||
- !(vol_cap_flags_g & H5VL_CAP_FLAG_STORED_DATATYPES)) {
+ !(vol_cap_flags_g & H5VL_CAP_FLAG_DATASET_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_ATTR_BASIC)) {
SKIPPED();
- HDprintf(" API functions for basic file, group, object, dataset, attribute, stored datatype, "
- "iterate, or creation order aren't supported with this connector\n");
+ HDprintf(" API functions for basic file, group, object, dataset, attribute, stored datatype, or "
+ "iterate aren't supported with this connector\n");
return 0;
}
@@ -5104,10 +5100,12 @@ test_object_visit(void)
goto error;
}
- if (H5Pset_link_creation_order(gcpl_id, H5P_CRT_ORDER_TRACKED | H5P_CRT_ORDER_INDEXED) < 0) {
- H5_FAILED();
- HDprintf(" couldn't enable link creation order tracking and indexing on GCPL\n");
- goto error;
+ if (vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER) {
+ if (H5Pset_link_creation_order(gcpl_id, H5P_CRT_ORDER_TRACKED | H5P_CRT_ORDER_INDEXED) < 0) {
+ H5_FAILED();
+ HDprintf(" couldn't enable link creation order tracking and indexing on GCPL\n");
+ goto error;
+ }
}
if ((group_id = H5Gcreate2(container_group, OBJECT_VISIT_TEST_SUBGROUP_NAME, H5P_DEFAULT, gcpl_id,
@@ -5187,7 +5185,7 @@ test_object_visit(void)
PART_BEGIN(H5Ovisit_obj_name_decreasing)
{
TESTING_2("H5Ovisit by object name in decreasing order");
-#ifndef NO_DECREASING_ALPHA_ITER_ORDER
+
/* Reset the counter to the appropriate value for the next test */
i = OBJECT_VISIT_TEST_NUM_OBJS_VISITED;
@@ -5205,10 +5203,6 @@ test_object_visit(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Ovisit_obj_name_decreasing);
-#endif
}
PART_END(H5Ovisit_obj_name_decreasing);
@@ -5216,6 +5210,12 @@ test_object_visit(void)
{
TESTING_2("H5Ovisit by creation order in increasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Ovisit_create_order_increasing);
+ }
+
/* Reset the counter to the appropriate value for the next test */
i = 2 * OBJECT_VISIT_TEST_NUM_OBJS_VISITED;
@@ -5240,6 +5240,12 @@ test_object_visit(void)
{
TESTING_2("H5Ovisit by creation order in decreasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Ovisit_create_order_decreasing);
+ }
+
/* Reset the counter to the appropriate value for the next test */
i = 3 * OBJECT_VISIT_TEST_NUM_OBJS_VISITED;
@@ -5347,7 +5353,7 @@ test_object_visit(void)
PART_BEGIN(H5Ovisit_by_name_obj_name_decreasing)
{
TESTING_2("H5Ovisit_by_name by object name in decreasing order");
-#ifndef NO_DECREASING_ALPHA_ITER_ORDER
+
/* Reset the counter to the appropriate value for the next test */
i = OBJECT_VISIT_TEST_NUM_OBJS_VISITED;
@@ -5382,10 +5388,6 @@ test_object_visit(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Ovisit_by_name_obj_name_decreasing);
-#endif
}
PART_END(H5Ovisit_by_name_obj_name_decreasing);
@@ -5393,6 +5395,12 @@ test_object_visit(void)
{
TESTING_2("H5Ovisit_by_name by creation order in increasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Ovisit_by_name_create_order_increasing);
+ }
+
/* Reset the counter to the appropriate value for the next test */
i = 2 * OBJECT_VISIT_TEST_NUM_OBJS_VISITED;
@@ -5434,6 +5442,12 @@ test_object_visit(void)
{
TESTING_2("H5Ovisit_by_name by creation order in decreasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Ovisit_by_name_create_order_decreasing);
+ }
+
/* Reset the counter to the appropriate value for the next test */
i = 3 * OBJECT_VISIT_TEST_NUM_OBJS_VISITED;
@@ -5583,9 +5597,9 @@ test_object_visit_soft_link(void)
/* Make sure the connector supports the API functions being tested */
if (!(vol_cap_flags_g & (H5VL_CAP_FLAG_FILE_BASIC)) || !(vol_cap_flags_g & H5VL_CAP_FLAG_GROUP_BASIC) ||
!(vol_cap_flags_g & H5VL_CAP_FLAG_OBJECT_BASIC) || !(vol_cap_flags_g & H5VL_CAP_FLAG_ITERATE) ||
- !(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER) || !(vol_cap_flags_g & H5VL_CAP_FLAG_SOFT_LINKS)) {
+ !(vol_cap_flags_g & H5VL_CAP_FLAG_SOFT_LINKS)) {
SKIPPED();
- HDprintf(" API functions for basic file, group, object, soft link, iterate, or creation order "
+ HDprintf(" API functions for basic file, group, object, soft link, or iterate "
"aren't supported with this connector\n");
return 0;
}
@@ -5610,10 +5624,12 @@ test_object_visit_soft_link(void)
goto error;
}
- if (H5Pset_link_creation_order(gcpl_id, H5P_CRT_ORDER_TRACKED | H5P_CRT_ORDER_INDEXED) < 0) {
- H5_FAILED();
- HDprintf(" couldn't enable link creation order tracking and indexing on GCPL\n");
- goto error;
+ if (vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER) {
+ if (H5Pset_link_creation_order(gcpl_id, H5P_CRT_ORDER_TRACKED | H5P_CRT_ORDER_INDEXED) < 0) {
+ H5_FAILED();
+ HDprintf(" couldn't enable link creation order tracking and indexing on GCPL\n");
+ goto error;
+ }
}
if ((group_id = H5Gcreate2(container_group, OBJECT_VISIT_SOFT_LINK_TEST_SUBGROUP_NAME, H5P_DEFAULT,
@@ -5747,7 +5763,7 @@ test_object_visit_soft_link(void)
PART_BEGIN(H5Ovisit_obj_name_decreasing)
{
TESTING_2("H5Ovisit by object name in decreasing order");
-#ifndef NO_DECREASING_ALPHA_ITER_ORDER
+
/* Reset the counter to the appropriate value for the next test */
i = OBJECT_VISIT_SOFT_LINK_TEST_NUM_OBJS_VISITED;
@@ -5765,10 +5781,6 @@ test_object_visit_soft_link(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Ovisit_obj_name_decreasing);
-#endif
}
PART_END(H5Ovisit_obj_name_decreasing);
@@ -5776,6 +5788,12 @@ test_object_visit_soft_link(void)
{
TESTING_2("H5Ovisit by creation order in increasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Ovisit_create_order_increasing);
+ }
+
/* Reset the counter to the appropriate value for the next test */
i = 2 * OBJECT_VISIT_SOFT_LINK_TEST_NUM_OBJS_VISITED;
@@ -5800,6 +5818,12 @@ test_object_visit_soft_link(void)
{
TESTING_2("H5Ovisit by creation order in decreasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Ovisit_create_order_decreasing);
+ }
+
/* Reset the counter to the appropriate value for the next test */
i = 3 * OBJECT_VISIT_SOFT_LINK_TEST_NUM_OBJS_VISITED;
@@ -5866,7 +5890,7 @@ test_object_visit_soft_link(void)
PART_BEGIN(H5Ovisit_by_name_obj_name_decreasing)
{
TESTING_2("H5Ovisit_by_name by object name in decreasing order");
-#ifndef NO_DECREASING_ALPHA_ITER_ORDER
+
/* Reset the counter to the appropriate value for the next test */
i = OBJECT_VISIT_SOFT_LINK_TEST_NUM_OBJS_VISITED;
@@ -5903,10 +5927,6 @@ test_object_visit_soft_link(void)
}
PASSED();
-#else
- SKIPPED();
- PART_EMPTY(H5Ovisit_by_name_obj_name_decreasing);
-#endif
}
PART_END(H5Ovisit_by_name_obj_name_decreasing);
@@ -5914,6 +5934,12 @@ test_object_visit_soft_link(void)
{
TESTING_2("H5Ovisit_by_name by creation order in increasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Ovisit_by_name_create_order_increasing);
+ }
+
/* Reset the counter to the appropriate value for the next test */
i = 2 * OBJECT_VISIT_SOFT_LINK_TEST_NUM_OBJS_VISITED;
@@ -5957,6 +5983,12 @@ test_object_visit_soft_link(void)
{
TESTING_2("H5Ovisit_by_name by creation order in decreasing order");
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ SKIPPED();
+ HDprintf(" creation order tracking isn't supported with this VOL connector\n");
+ PART_EMPTY(H5Ovisit_by_name_create_order_decreasing);
+ }
+
/* Reset the counter to the appropriate value for the next test */
i = 3 * OBJECT_VISIT_SOFT_LINK_TEST_NUM_OBJS_VISITED;
@@ -6624,7 +6656,7 @@ test_close_invalid_objects(void)
if (!(vol_cap_flags_g & (H5VL_CAP_FLAG_FILE_BASIC)) || !(vol_cap_flags_g & H5VL_CAP_FLAG_GROUP_BASIC) ||
!(vol_cap_flags_g & H5VL_CAP_FLAG_OBJECT_BASIC)) {
SKIPPED();
- HDprintf(" API functions for basic file, group, object, dataset, attribute, or stored datatype "
+ HDprintf(" API functions for basic file, group, or object "
"aren't supported with this connector\n");
return 0;
}
diff --git a/test/API/H5_api_test.c b/test/API/H5_api_test.c
index 6d61b75..3719524 100644
--- a/test/API/H5_api_test.c
+++ b/test/API/H5_api_test.c
@@ -116,10 +116,15 @@ H5_api_test_run(void)
int
main(int argc, char **argv)
{
+ const char *vol_connector_string;
const char *vol_connector_name;
unsigned seed;
- hid_t fapl_id = H5I_INVALID_HID;
- hbool_t err_occurred = FALSE;
+ hid_t fapl_id = H5I_INVALID_HID;
+ hid_t default_con_id = H5I_INVALID_HID;
+ hid_t registered_con_id = H5I_INVALID_HID;
+ char *vol_connector_string_copy = NULL;
+ char *vol_connector_info = NULL;
+ hbool_t err_occurred = FALSE;
/* Simple argument checking, TODO can improve that later */
if (argc > 1) {
@@ -140,7 +145,7 @@ main(int argc, char **argv)
MPI_Init(&argc, &argv);
#endif
- /* h5_reset(); */
+ H5open();
n_tests_run_g = 0;
n_tests_passed_g = 0;
@@ -156,26 +161,97 @@ main(int argc, char **argv)
HDsnprintf(H5_api_test_filename, H5_API_TEST_FILENAME_MAX_LENGTH, "%s%s", test_path_prefix,
TEST_FILE_NAME);
- if (NULL == (vol_connector_name = HDgetenv(HDF5_VOL_CONNECTOR))) {
+ if (NULL == (vol_connector_string = HDgetenv(HDF5_VOL_CONNECTOR))) {
HDprintf("No VOL connector selected; using native VOL connector\n");
vol_connector_name = "native";
+ vol_connector_info = NULL;
}
+ else {
+ char *token;
- HDprintf("Running API tests with VOL connector '%s'\n\n", vol_connector_name);
+ if (NULL == (vol_connector_string_copy = HDstrdup(vol_connector_string))) {
+ HDfprintf(stderr, "Unable to copy VOL connector string\n");
+ err_occurred = TRUE;
+ goto done;
+ }
+
+ if (NULL == (token = HDstrtok(vol_connector_string_copy, " "))) {
+ HDfprintf(stderr, "Error while parsing VOL connector string\n");
+ err_occurred = TRUE;
+ goto done;
+ }
+
+ vol_connector_name = token;
+
+ if (NULL != (token = HDstrtok(NULL, " "))) {
+ vol_connector_info = token;
+ }
+ }
+
+ HDprintf("Running API tests with VOL connector '%s' and info string '%s'\n\n", vol_connector_name,
+ vol_connector_info ? vol_connector_info : "");
HDprintf("Test parameters:\n");
HDprintf(" - Test file name: '%s'\n", H5_api_test_filename);
HDprintf(" - Test seed: %u\n", seed);
HDprintf("\n\n");
- /* Retrieve the VOL cap flags - work around an HDF5
- * library issue by creating a FAPL
- */
if ((fapl_id = H5Pcreate(H5P_FILE_ACCESS)) < 0) {
HDfprintf(stderr, "Unable to create FAPL\n");
err_occurred = TRUE;
goto done;
}
+ /*
+ * If using a VOL connector other than the native
+ * connector, check whether the VOL connector was
+ * successfully registered before running the tests.
+ * Otherwise, HDF5 will default to running the tests
+ * with the native connector, which could be misleading.
+ */
+ if (0 != HDstrcmp(vol_connector_name, "native")) {
+ htri_t is_registered;
+
+ if ((is_registered = H5VLis_connector_registered_by_name(vol_connector_name)) < 0) {
+ HDfprintf(stderr, "Unable to determine if VOL connector is registered\n");
+ err_occurred = TRUE;
+ goto done;
+ }
+
+ if (!is_registered) {
+ HDfprintf(stderr, "Specified VOL connector '%s' wasn't correctly registered!\n",
+ vol_connector_name);
+ err_occurred = TRUE;
+ goto done;
+ }
+ else {
+ /*
+ * If the connector was successfully registered, check that
+ * the connector ID set on the default FAPL matches the ID
+ * for the registered connector before running the tests.
+ */
+ if (H5Pget_vol_id(fapl_id, &default_con_id) < 0) {
+ HDfprintf(stderr, "Couldn't retrieve ID of VOL connector set on default FAPL\n");
+ err_occurred = TRUE;
+ goto done;
+ }
+
+ if ((registered_con_id = H5VLget_connector_id_by_name(vol_connector_name)) < 0) {
+ HDfprintf(stderr, "Couldn't retrieve ID of registered VOL connector\n");
+ err_occurred = TRUE;
+ goto done;
+ }
+
+ if (default_con_id != registered_con_id) {
+ HDfprintf(stderr, "VOL connector set on default FAPL didn't match specified VOL connector\n");
+ err_occurred = TRUE;
+ goto done;
+ }
+ }
+ }
+
+ /* Retrieve the VOL cap flags - work around an HDF5
+ * library issue by creating a FAPL
+ */
vol_cap_flags_g = H5VL_CAP_FLAG_NONE;
if (H5Pget_vol_cap_flags(fapl_id, &vol_cap_flags_g) < 0) {
HDfprintf(stderr, "Unable to retrieve VOL connector capability flags\n");
@@ -212,6 +288,18 @@ main(int argc, char **argv)
}
done:
+ HDfree(vol_connector_string_copy);
+
+ if (default_con_id >= 0 && H5VLclose(default_con_id) < 0) {
+ HDfprintf(stderr, "Unable to close VOL connector ID\n");
+ err_occurred = TRUE;
+ }
+
+ if (registered_con_id >= 0 && H5VLclose(registered_con_id) < 0) {
+ HDfprintf(stderr, "Unable to close VOL connector ID\n");
+ err_occurred = TRUE;
+ }
+
if (fapl_id >= 0 && H5Pclose(fapl_id) < 0) {
HDfprintf(stderr, "Unable to close FAPL\n");
err_occurred = TRUE;
diff --git a/test/API/H5_api_test.h b/test/API/H5_api_test.h
index 296d296..2b23750 100644
--- a/test/API/H5_api_test.h
+++ b/test/API/H5_api_test.h
@@ -20,7 +20,6 @@
#include "H5_api_test_config.h"
#include "H5_api_test_util.h"
-#include "H5_api_tests_disabled.h"
/* Define H5VL_VERSION if not already defined */
#ifndef H5VL_VERSION
diff --git a/test/API/H5_api_test_util.c b/test/API/H5_api_test_util.c
index 7fec2b6..c37a9ed 100644
--- a/test/API/H5_api_test_util.c
+++ b/test/API/H5_api_test_util.c
@@ -34,11 +34,18 @@
#define COMPACT_DATATYPE_MAX_SIZE 1024
/* The maximum level of recursion that the generate_random_datatype()
- * function should go down to, before being forced to choose a base type
- * in order to not cause a stack overflow.
+ * function should go down to, before being forced to choose a base type.
*/
#define TYPE_GEN_RECURSION_MAX_DEPTH 3
+/* The number of predefined standard integer types in HDF5
+ */
+#define NUM_PREDEFINED_INT_TYPES 16
+
+/* The number of predefined floating point types in HDF5
+ */
+#define NUM_PREDEFINED_FLOAT_TYPES 4
+
/* The maximum number of members allowed in an HDF5 compound type, as
* generated by the generate_random_datatype() function, for ease of
* development.
@@ -69,553 +76,522 @@
#define COMPACT_SPACE_MAX_DIM_SIZE 4
#define COMPACT_SPACE_MAX_DIMS 3
+typedef hid_t (*generate_datatype_func)(H5T_class_t parent_class, hbool_t is_compact);
+
+static hid_t generate_random_datatype_integer(H5T_class_t parent_class, hbool_t is_compact);
+static hid_t generate_random_datatype_float(H5T_class_t parent_class, hbool_t is_compact);
+static hid_t generate_random_datatype_string(H5T_class_t parent_class, hbool_t is_compact);
+static hid_t generate_random_datatype_compound(H5T_class_t parent_class, hbool_t is_compact);
+static hid_t generate_random_datatype_reference(H5T_class_t parent_class, hbool_t is_compact);
+static hid_t generate_random_datatype_enum(H5T_class_t parent_class, hbool_t is_compact);
+static hid_t generate_random_datatype_array(H5T_class_t parent_class, hbool_t is_compact);
+
/*
* Helper function to generate a random HDF5 datatype in order to thoroughly
* test support for datatypes. The parent_class parameter is to support
* recursive generation of datatypes. In most cases, this function should be
* called with H5T_NO_CLASS for the parent_class parameter.
*/
-/*
- * XXX: limit size of datatype generated
- */
hid_t
generate_random_datatype(H5T_class_t parent_class, hbool_t is_compact)
{
- static int depth = 0;
- hsize_t *array_dims = NULL;
- size_t i;
- hid_t compound_members[COMPOUND_TYPE_MAX_MEMBERS];
- hid_t datatype = H5I_INVALID_HID;
+ generate_datatype_func gen_func;
+ static int depth = 0;
+ size_t type_size;
+ hid_t datatype = H5I_INVALID_HID;
+ hid_t ret_value = H5I_INVALID_HID;
depth++;
- for (i = 0; i < COMPOUND_TYPE_MAX_MEMBERS; i++)
- compound_members[i] = H5I_INVALID_HID;
-
+roll_datatype:
switch (rand() % H5T_NCLASSES) {
-case_integer:
- case H5T_INTEGER: {
- switch (rand() % 16) {
- case 0:
- if ((datatype = H5Tcopy(H5T_STD_I8BE)) < 0) {
- H5_FAILED();
- HDprintf(" couldn't copy predefined integer type\n");
- goto done;
- }
-
- break;
-
- case 1:
- if ((datatype = H5Tcopy(H5T_STD_I8LE)) < 0) {
- H5_FAILED();
- HDprintf(" couldn't copy predefined integer type\n");
- goto done;
- }
-
- break;
-
- case 2:
- if ((datatype = H5Tcopy(H5T_STD_I16BE)) < 0) {
- H5_FAILED();
- HDprintf(" couldn't copy predefined integer type\n");
- goto done;
- }
-
- break;
-
- case 3:
- if ((datatype = H5Tcopy(H5T_STD_I16LE)) < 0) {
- H5_FAILED();
- HDprintf(" couldn't copy predefined integer type\n");
- goto done;
- }
-
- break;
-
- case 4:
- if ((datatype = H5Tcopy(H5T_STD_I32BE)) < 0) {
- H5_FAILED();
- HDprintf(" couldn't copy predefined integer type\n");
- goto done;
- }
-
- break;
-
- case 5:
- if ((datatype = H5Tcopy(H5T_STD_I32LE)) < 0) {
- H5_FAILED();
- HDprintf(" couldn't copy predefined integer type\n");
- goto done;
- }
-
- break;
-
- case 6:
- if ((datatype = H5Tcopy(H5T_STD_I64BE)) < 0) {
- H5_FAILED();
- HDprintf(" couldn't copy predefined integer type\n");
- goto done;
- }
-
- break;
-
- case 7:
- if ((datatype = H5Tcopy(H5T_STD_I64LE)) < 0) {
- H5_FAILED();
- HDprintf(" couldn't copy predefined integer type\n");
- goto done;
- }
-
- break;
-
- case 8:
- if ((datatype = H5Tcopy(H5T_STD_U8BE)) < 0) {
- H5_FAILED();
- HDprintf(" couldn't copy predefined integer type\n");
- goto done;
- }
-
- break;
-
- case 9:
- if ((datatype = H5Tcopy(H5T_STD_U8LE)) < 0) {
- H5_FAILED();
- HDprintf(" couldn't copy predefined integer type\n");
- goto done;
- }
-
- break;
-
- case 10:
- if ((datatype = H5Tcopy(H5T_STD_U16BE)) < 0) {
- H5_FAILED();
- HDprintf(" couldn't copy predefined integer type\n");
- goto done;
- }
-
- break;
-
- case 11:
- if ((datatype = H5Tcopy(H5T_STD_U16LE)) < 0) {
- H5_FAILED();
- HDprintf(" couldn't copy predefined integer type\n");
- goto done;
- }
-
- break;
-
- case 12:
- if ((datatype = H5Tcopy(H5T_STD_U32BE)) < 0) {
- H5_FAILED();
- HDprintf(" couldn't copy predefined integer type\n");
- goto done;
- }
-
- break;
-
- case 13:
- if ((datatype = H5Tcopy(H5T_STD_U32LE)) < 0) {
- H5_FAILED();
- HDprintf(" couldn't copy predefined integer type\n");
- goto done;
- }
-
- break;
-
- case 14:
- if ((datatype = H5Tcopy(H5T_STD_U64BE)) < 0) {
- H5_FAILED();
- HDprintf(" couldn't copy predefined integer type\n");
- goto done;
- }
-
- break;
-
- case 15:
- if ((datatype = H5Tcopy(H5T_STD_U64LE)) < 0) {
- H5_FAILED();
- HDprintf(" couldn't copy predefined integer type\n");
- goto done;
- }
-
- break;
-
- default:
- H5_FAILED();
- HDprintf(" invalid value for predefined integer type; should not happen\n");
- goto done;
- }
+ case H5T_INTEGER:
+ gen_func = generate_random_datatype_integer;
+ break;
+ case H5T_FLOAT:
+ gen_func = generate_random_datatype_float;
+ break;
+ case H5T_TIME:
+ /* Time datatype is unsupported, try again */
+ goto roll_datatype;
+ break;
+ case H5T_STRING:
+ gen_func = generate_random_datatype_string;
+ break;
+ case H5T_BITFIELD:
+ /* Bitfield datatype is unsupported, try again */
+ goto roll_datatype;
+ break;
+ case H5T_OPAQUE:
+ /* Opaque datatype is unsupported, try again */
+ goto roll_datatype;
+ break;
+ case H5T_COMPOUND:
+ /* Currently only allows arrays of integer, float or string. Pick another type if we
+ * are creating an array of something other than these. Also don't allow recursion
+ * to go too deep. Pick another type that doesn't recursively call this function. */
+ if ((H5T_ARRAY == parent_class) || ((depth + 1) > TYPE_GEN_RECURSION_MAX_DEPTH))
+ goto roll_datatype;
- break;
- }
+ gen_func = generate_random_datatype_compound;
+ break;
+ case H5T_REFERENCE:
+ /* Temporarily disable generation of reference datatypes */
+ goto roll_datatype;
-case_float:
- case H5T_FLOAT: {
- switch (rand() % 4) {
- case 0:
- if ((datatype = H5Tcopy(H5T_IEEE_F32BE)) < 0) {
- H5_FAILED();
- HDprintf(" couldn't copy predefined floating-point type\n");
- goto done;
- }
+ /* Currently only allows arrays of integer, float or string. Pick another type if we
+ * are creating an array of something other than these. */
+ if (H5T_ARRAY == parent_class)
+ goto roll_datatype;
- break;
+ gen_func = generate_random_datatype_reference;
+ break;
+ case H5T_ENUM:
+ /* Currently doesn't currently support ARRAY of ENUM, so try another type
+ * if this happens. */
+ if (H5T_ARRAY == parent_class)
+ goto roll_datatype;
- case 1:
- if ((datatype = H5Tcopy(H5T_IEEE_F32LE)) < 0) {
- H5_FAILED();
- HDprintf(" couldn't copy predefined floating-point type\n");
- goto done;
- }
+ gen_func = generate_random_datatype_enum;
+ break;
+ case H5T_VLEN:
+ /* Variable-length datatypes are unsupported, try again */
+ goto roll_datatype;
+ break;
+ case H5T_ARRAY:
+ /* Currently doesn't currently support ARRAY of ARRAY, so try another type
+ * if this happens. Also check for too much recursion. */
+ if ((H5T_ARRAY == parent_class) || ((depth + 1) > TYPE_GEN_RECURSION_MAX_DEPTH))
+ goto roll_datatype;
- break;
+ gen_func = generate_random_datatype_array;
+ break;
+ default:
+ HDprintf(" invalid datatype class\n");
+ goto done;
+ break;
+ }
- case 2:
- if ((datatype = H5Tcopy(H5T_IEEE_F64BE)) < 0) {
- H5_FAILED();
- HDprintf(" couldn't copy predefined floating-point type\n");
- goto done;
- }
+ if ((datatype = (gen_func)(parent_class, is_compact)) < 0) {
+ HDprintf(" couldn't generate datatype\n");
+ goto done;
+ }
- break;
+ /*
+ * Check to make sure that the generated datatype does
+ * not exceed the maximum datatype size and doesn't exceed
+ * the maximum compact datatype size if a compact datatype
+ * was requested.
+ */
+ if (depth == 1) {
+ if (0 == (type_size = H5Tget_size(datatype))) {
+ HDprintf(" failed to retrieve datatype's size\n");
+ H5Tclose(datatype);
+ datatype = H5I_INVALID_HID;
+ goto done;
+ }
- case 3:
- if ((datatype = H5Tcopy(H5T_IEEE_F64LE)) < 0) {
- H5_FAILED();
- HDprintf(" couldn't copy predefined floating-point type\n");
- goto done;
- }
+ if ((type_size > GENERATED_DATATYPE_MAX_SIZE) ||
+ (is_compact && (type_size > COMPACT_DATATYPE_MAX_SIZE))) {
+ /*
+ * Generate a new datatype.
+ */
+ H5Tclose(datatype);
+ datatype = H5I_INVALID_HID;
+ goto roll_datatype;
+ }
+ }
- break;
+ ret_value = datatype;
- default:
- H5_FAILED();
- HDprintf(" invalid value for floating point type; should not happen\n");
- goto done;
- }
+done:
+ depth--;
- break;
+ return ret_value;
+}
+
+static hid_t
+generate_random_datatype_integer(H5T_class_t H5_ATTR_UNUSED parent_class, hbool_t H5_ATTR_UNUSED is_compact)
+{
+ hid_t type_to_copy = H5I_INVALID_HID;
+ hid_t datatype = H5I_INVALID_HID;
+ hid_t ret_value = H5I_INVALID_HID;
+
+ switch (rand() % NUM_PREDEFINED_INT_TYPES) {
+ case 0:
+ type_to_copy = H5T_STD_I8BE;
+ break;
+ case 1:
+ type_to_copy = H5T_STD_I8LE;
+ break;
+ case 2:
+ type_to_copy = H5T_STD_I16BE;
+ break;
+ case 3:
+ type_to_copy = H5T_STD_I16LE;
+ break;
+ case 4:
+ type_to_copy = H5T_STD_I32BE;
+ break;
+ case 5:
+ type_to_copy = H5T_STD_I32LE;
+ break;
+ case 6:
+ type_to_copy = H5T_STD_I64BE;
+ break;
+ case 7:
+ type_to_copy = H5T_STD_I64LE;
+ break;
+ case 8:
+ type_to_copy = H5T_STD_U8BE;
+ break;
+ case 9:
+ type_to_copy = H5T_STD_U8LE;
+ break;
+ case 10:
+ type_to_copy = H5T_STD_U16BE;
+ break;
+ case 11:
+ type_to_copy = H5T_STD_U16LE;
+ break;
+ case 12:
+ type_to_copy = H5T_STD_U32BE;
+ break;
+ case 13:
+ type_to_copy = H5T_STD_U32LE;
+ break;
+ case 14:
+ type_to_copy = H5T_STD_U64BE;
+ break;
+ case 15:
+ type_to_copy = H5T_STD_U64LE;
+ break;
+ default:
+ HDprintf(" invalid value for predefined integer type; should not happen\n");
+ goto done;
}
-case_time:
- case H5T_TIME: {
- /* Time datatype is unsupported, try again */
- goto reroll;
- break;
+ if ((datatype = H5Tcopy(type_to_copy)) < 0) {
+ HDprintf(" couldn't copy predefined integer type\n");
+ goto done;
}
-case_string:
- case H5T_STRING: {
- /* Note: currently only H5T_CSET_ASCII is supported for the character set and
- * only H5T_STR_NULLTERM is supported for string padding for variable-length
- * strings and only H5T_STR_NULLPAD is supported for string padding for
- * fixed-length strings, but these may change in the future.
- */
- if (0 == (rand() % 2)) {
- if ((datatype = H5Tcreate(H5T_STRING, (size_t)(rand() % STRING_TYPE_MAX_SIZE) + 1)) < 0) {
- H5_FAILED();
- HDprintf(" couldn't create fixed-length string datatype\n");
- goto done;
- }
+ ret_value = datatype;
- if (H5Tset_strpad(datatype, H5T_STR_NULLPAD) < 0) {
- H5_FAILED();
- HDprintf(" couldn't set H5T_STR_NULLPAD for fixed-length string type\n");
- goto done;
- }
- }
- else {
- /*
- * Currently, all VL datatypes are disabled.
- */
- goto reroll;
-
-#if 0
- if ((datatype = H5Tcreate(H5T_STRING, H5T_VARIABLE)) < 0) {
- H5_FAILED();
- HDprintf(" couldn't create variable-length string datatype\n");
- goto done;
- }
-
- if (H5Tset_strpad(datatype, H5T_STR_NULLTERM) < 0) {
- H5_FAILED();
- HDprintf(" couldn't set H5T_STR_NULLTERM for variable-length string type\n");
- goto done;
- }
-#endif
- }
+done:
+ if ((ret_value == H5I_INVALID_HID) && (datatype >= 0)) {
+ if (H5Tclose(datatype) < 0)
+ HDprintf(" couldn't close datatype\n");
+ }
- if (H5Tset_cset(datatype, H5T_CSET_ASCII) < 0) {
- H5_FAILED();
- HDprintf(" couldn't set string datatype character set\n");
- goto done;
- }
+ return ret_value;
+}
- break;
- }
+static hid_t
+generate_random_datatype_float(H5T_class_t H5_ATTR_UNUSED parent_class, hbool_t H5_ATTR_UNUSED is_compact)
+{
+ hid_t type_to_copy = H5I_INVALID_HID;
+ hid_t datatype = H5I_INVALID_HID;
+ hid_t ret_value = H5I_INVALID_HID;
+
+ switch (rand() % NUM_PREDEFINED_FLOAT_TYPES) {
+ case 0:
+ type_to_copy = H5T_IEEE_F32BE;
+ break;
+ case 1:
+ type_to_copy = H5T_IEEE_F32LE;
+ break;
+ case 2:
+ type_to_copy = H5T_IEEE_F64BE;
+ break;
+ case 3:
+ type_to_copy = H5T_IEEE_F64LE;
+ break;
-case_bitfield:
- case H5T_BITFIELD: {
- /* Bitfield datatype is unsupported, try again */
- goto reroll;
- break;
+ default:
+ HDprintf(" invalid value for floating point type; should not happen\n");
+ goto done;
}
-case_opaque:
- case H5T_OPAQUE: {
- /* Opaque datatype is unsupported, try again */
- goto reroll;
- break;
+ if ((datatype = H5Tcopy(type_to_copy)) < 0) {
+ HDprintf(" couldn't copy predefined floating-point type\n");
+ goto done;
}
-case_compound:
- case H5T_COMPOUND: {
- size_t num_members;
- size_t next_offset = 0;
- size_t compound_size = 0;
+ ret_value = datatype;
- /* Currently only allows arrays of integer, float or string. Pick another type if we
- * are creating an array of something other than these. Also don't allow recursion
- * to go too deep. Pick another type that doesn't recursively call this function. */
- if (H5T_ARRAY == parent_class || depth > TYPE_GEN_RECURSION_MAX_DEPTH)
- goto reroll;
+done:
+ if ((ret_value == H5I_INVALID_HID) && (datatype >= 0)) {
+ if (H5Tclose(datatype) < 0)
+ HDprintf(" couldn't close datatype\n");
+ }
- if ((datatype = H5Tcreate(H5T_COMPOUND, 1)) < 0) {
- H5_FAILED();
- HDprintf(" couldn't create compound datatype\n");
- goto done;
- }
+ return ret_value;
+}
- num_members = (size_t)(rand() % COMPOUND_TYPE_MAX_MEMBERS + 1);
+static hid_t
+generate_random_datatype_string(H5T_class_t H5_ATTR_UNUSED parent_class, hbool_t H5_ATTR_UNUSED is_compact)
+{
+ hid_t datatype = H5I_INVALID_HID;
+ hid_t ret_value = H5I_INVALID_HID;
- for (i = 0; i < num_members; i++) {
- size_t member_size;
- char member_name[256];
+ /* Note: currently only H5T_CSET_ASCII is supported for the character set and
+ * only H5T_STR_NULLTERM is supported for string padding for variable-length
+ * strings and only H5T_STR_NULLPAD is supported for string padding for
+ * fixed-length strings, but these may change in the future.
+ */
+#if 0 /* Currently, all VL types are disabled */
+ if (0 == (rand() % 2)) {
+#endif
+ if ((datatype = H5Tcreate(H5T_STRING, (size_t)(rand() % STRING_TYPE_MAX_SIZE) + 1)) < 0) {
+ HDprintf(" couldn't create fixed-length string datatype\n");
+ goto done;
+ }
- HDsnprintf(member_name, 256, "compound_member%zu", i);
+ if (H5Tset_strpad(datatype, H5T_STR_NULLPAD) < 0) {
+ HDprintf(" couldn't set H5T_STR_NULLPAD for fixed-length string type\n");
+ goto done;
+ }
+#if 0 /* Currently, all VL types are disabled */
+ }
+ else {
- if ((compound_members[i] = generate_random_datatype(H5T_NO_CLASS, is_compact)) < 0) {
+ if ((datatype = H5Tcreate(H5T_STRING, H5T_VARIABLE)) < 0) {
H5_FAILED();
- HDprintf(" couldn't create compound datatype member %zu\n", i);
+ HDprintf(" couldn't create variable-length string datatype\n");
goto done;
}
- if (!(member_size = H5Tget_size(compound_members[i]))) {
+ if (H5Tset_strpad(datatype, H5T_STR_NULLTERM) < 0) {
H5_FAILED();
- HDprintf(" couldn't get compound member %zu size\n", i);
+ HDprintf(" couldn't set H5T_STR_NULLTERM for variable-length string type\n");
goto done;
}
+ }
+#endif
- compound_size += member_size;
+ if (H5Tset_cset(datatype, H5T_CSET_ASCII) < 0) {
+ HDprintf(" couldn't set string datatype character set\n");
+ goto done;
+ }
- if (H5Tset_size(datatype, compound_size) < 0) {
- H5_FAILED();
- HDprintf(" couldn't set size for compound datatype\n");
- goto done;
- }
+ ret_value = datatype;
- if (H5Tinsert(datatype, member_name, next_offset, compound_members[i]) < 0) {
- H5_FAILED();
- HDprintf(" couldn't insert compound datatype member %zu\n", i);
- goto done;
- }
+done:
+ if ((ret_value == H5I_INVALID_HID) && (datatype >= 0)) {
+ if (H5Tclose(datatype) < 0)
+ HDprintf(" couldn't close datatype\n");
+ }
- next_offset += member_size;
- }
+ return ret_value;
+}
- break;
+static hid_t
+generate_random_datatype_compound(H5T_class_t H5_ATTR_UNUSED parent_class, hbool_t is_compact)
+{
+ size_t num_members = 0;
+ size_t next_offset = 0;
+ size_t compound_size = 0;
+ hid_t compound_members[COMPOUND_TYPE_MAX_MEMBERS];
+ hid_t datatype = H5I_INVALID_HID;
+ hid_t ret_value = H5I_INVALID_HID;
+
+ for (size_t i = 0; i < COMPOUND_TYPE_MAX_MEMBERS; i++)
+ compound_members[i] = H5I_INVALID_HID;
+
+ if ((datatype = H5Tcreate(H5T_COMPOUND, 1)) < 0) {
+ HDprintf(" couldn't create compound datatype\n");
+ goto done;
}
-case_reference:
- case H5T_REFERENCE: {
- /* Temporarily disable generation of reference datatypes */
- goto reroll;
+ num_members = (size_t)(rand() % COMPOUND_TYPE_MAX_MEMBERS + 1);
- /* Currently only allows arrays of integer, float or string. Pick another type if we
- * are creating an array of something other than these. */
- if (H5T_ARRAY == parent_class)
- goto reroll;
+ for (size_t i = 0; i < num_members; i++) {
+ size_t member_size;
+ char member_name[256];
- if (0 == (rand() % 2)) {
- if ((datatype = H5Tcopy(H5T_STD_REF_OBJ)) < 0) {
- H5_FAILED();
- HDprintf(" couldn't copy object reference datatype\n");
- goto done;
- }
+ HDsnprintf(member_name, 256, "compound_member%zu", i);
+
+ if ((compound_members[i] = generate_random_datatype(H5T_COMPOUND, is_compact)) < 0) {
+ HDprintf(" couldn't create compound datatype member %zu\n", i);
+ goto done;
}
- else {
- /* Region references are currently unsupported */
- goto reroll;
- if ((datatype = H5Tcopy(H5T_STD_REF_DSETREG)) < 0) {
- H5_FAILED();
- HDprintf(" couldn't copy region reference datatype\n");
- goto done;
- }
+ if (!(member_size = H5Tget_size(compound_members[i]))) {
+ HDprintf(" couldn't get compound member %zu size\n", i);
+ goto done;
}
- break;
- }
+ compound_size += member_size;
-case_enum:
- case H5T_ENUM: {
- /* Currently doesn't currently support ARRAY of ENUM, so try another type
- * if this happens. */
- if (H5T_ARRAY == parent_class)
- goto reroll;
+ if (H5Tset_size(datatype, compound_size) < 0) {
+ HDprintf(" couldn't set size for compound datatype\n");
+ goto done;
+ }
- if ((datatype = H5Tenum_create(H5T_NATIVE_INT)) < 0) {
- H5_FAILED();
- HDprintf(" couldn't create enum datatype\n");
+ if (H5Tinsert(datatype, member_name, next_offset, compound_members[i]) < 0) {
+ HDprintf(" couldn't insert compound datatype member %zu\n", i);
goto done;
}
- for (i = 0; i < (size_t)(rand() % ENUM_TYPE_MAX_MEMBERS + 1); i++) {
- char name[ENUM_TYPE_MAX_MEMBER_NAME_LENGTH];
- int value = rand();
+ next_offset += member_size;
+ }
- HDsnprintf(name, ENUM_TYPE_MAX_MEMBER_NAME_LENGTH, "enum_val%zu", i);
+ ret_value = datatype;
- if (H5Tenum_insert(datatype, name, &value) < 0) {
- H5_FAILED();
- HDprintf(" couldn't insert member into enum datatype\n");
- goto done;
- }
+done:
+ for (size_t i = 0; i < COMPOUND_TYPE_MAX_MEMBERS; i++) {
+ if (compound_members[i] > 0 && H5Tclose(compound_members[i]) < 0) {
+ HDprintf(" couldn't close compound member %zu\n", i);
}
+ }
- break;
+ if ((ret_value == H5I_INVALID_HID) && (datatype >= 0)) {
+ if (H5Tclose(datatype) < 0)
+ HDprintf(" couldn't close datatype\n");
}
-case_vlen:
- case H5T_VLEN: {
- /* Variable-length datatypes are unsupported, try again */
- goto reroll;
- break;
+ return ret_value;
+}
+
+static hid_t
+generate_random_datatype_reference(H5T_class_t H5_ATTR_UNUSED parent_class, hbool_t H5_ATTR_UNUSED is_compact)
+{
+ hid_t datatype = H5I_INVALID_HID;
+ hid_t ret_value = H5I_INVALID_HID;
+
+#if 0 /* Region references are currently unsupported */
+ if (0 == (rand() % 2)) {
+#endif
+ if ((datatype = H5Tcopy(H5T_STD_REF_OBJ)) < 0) {
+ HDprintf(" couldn't copy object reference datatype\n");
+ goto done;
}
+#if 0 /* Region references are currently unsupported */
+ }
+ else {
+ if ((datatype = H5Tcopy(H5T_STD_REF_DSETREG)) < 0) {
+ H5_FAILED();
+ HDprintf(" couldn't copy region reference datatype\n");
+ goto done;
+ }
+ }
+#endif
-case_array:
- case H5T_ARRAY: {
- unsigned ndims;
- hid_t base_datatype = H5I_INVALID_HID;
+ ret_value = datatype;
- /* Currently doesn't currently support ARRAY of ARRAY, so try another type
- * if this happens. Also check for too much recursion. */
- if (H5T_ARRAY == parent_class || depth > TYPE_GEN_RECURSION_MAX_DEPTH)
- goto reroll;
+done:
+ if ((ret_value == H5I_INVALID_HID) && (datatype >= 0)) {
+ if (H5Tclose(datatype) < 0)
+ HDprintf(" couldn't close datatype\n");
+ }
- ndims = (unsigned)(rand() % ARRAY_TYPE_MAX_DIMS + 1);
+ return ret_value;
+}
- if (NULL == (array_dims = (hsize_t *)HDmalloc(ndims * sizeof(*array_dims))))
- goto done;
+static hid_t
+generate_random_datatype_enum(H5T_class_t H5_ATTR_UNUSED parent_class, hbool_t H5_ATTR_UNUSED is_compact)
+{
+ size_t num_members = 0;
+ hid_t datatype = H5I_INVALID_HID;
+ int *enum_member_vals = NULL;
+ hid_t ret_value = H5I_INVALID_HID;
- for (i = 0; i < ndims; i++)
- array_dims[i] = (hsize_t)(rand() % MAX_DIM_SIZE + 1);
+ if ((datatype = H5Tenum_create(H5T_NATIVE_INT)) < 0) {
+ HDprintf(" couldn't create enum datatype\n");
+ goto done;
+ }
- if ((base_datatype = generate_random_datatype(H5T_ARRAY, is_compact)) < 0) {
- H5_FAILED();
- HDprintf(" couldn't create array base datatype\n");
- goto done;
- }
+ num_members = (size_t)(rand() % ENUM_TYPE_MAX_MEMBERS + 1);
- if ((datatype = H5Tarray_create2(base_datatype, ndims, array_dims)) < 0) {
- H5_FAILED();
- HDprintf(" couldn't create array datatype\n");
+ if (NULL == (enum_member_vals = HDmalloc(num_members * sizeof(int)))) {
+ HDprintf(" couldn't allocate space for enum members\n");
+ goto done;
+ }
+
+ for (size_t i = 0; i < num_members; i++) {
+ hbool_t unique;
+ char name[ENUM_TYPE_MAX_MEMBER_NAME_LENGTH];
+ int enum_val;
+
+ HDsnprintf(name, ENUM_TYPE_MAX_MEMBER_NAME_LENGTH, "enum_val%zu", i);
+
+ do {
+ enum_val = rand();
+
+ /* Check for uniqueness of enum member */
+ unique = TRUE;
+ for (size_t j = 0; j < i; j++)
+ if (enum_val == enum_member_vals[j])
+ unique = FALSE;
+ } while (!unique);
+
+ enum_member_vals[i] = enum_val;
+
+ if (H5Tenum_insert(datatype, name, &enum_val) < 0) {
+ HDprintf(" couldn't insert member into enum datatype\n");
goto done;
}
-
- break;
}
- default:
- H5_FAILED();
- HDprintf(" invalid datatype class\n");
- break;
- } /* end if */
+ ret_value = datatype;
done:
- if (depth > 0)
- depth--;
+ HDfree(enum_member_vals);
- if (datatype < 0) {
- for (i = 0; i < COMPOUND_TYPE_MAX_MEMBERS; i++) {
- if (compound_members[i] > 0 && H5Tclose(compound_members[i]) < 0) {
- H5_FAILED();
- HDprintf(" couldn't close compound member %zu\n", i);
- }
- }
+ if ((ret_value == H5I_INVALID_HID) && (datatype >= 0)) {
+ if (H5Tclose(datatype) < 0)
+ HDprintf(" couldn't close datatype\n");
}
- if (array_dims) {
- HDfree(array_dims);
- array_dims = NULL;
+ return ret_value;
+}
+
+static hid_t
+generate_random_datatype_array(H5T_class_t H5_ATTR_UNUSED parent_class, hbool_t is_compact)
+{
+ unsigned ndims = 0;
+ hsize_t *array_dims = NULL;
+ hid_t base_datatype = H5I_INVALID_HID;
+ hid_t datatype = H5I_INVALID_HID;
+ hid_t ret_value = H5I_INVALID_HID;
+
+ ndims = (unsigned)(rand() % ARRAY_TYPE_MAX_DIMS + 1);
+
+ if (NULL == (array_dims = HDmalloc(ndims * sizeof(*array_dims)))) {
+ HDprintf(" couldn't allocate space for array datatype dims\n");
+ goto done;
}
- if (is_compact && (depth == 0)) {
- size_t type_size;
+ for (size_t i = 0; i < ndims; i++)
+ array_dims[i] = (hsize_t)(rand() % MAX_DIM_SIZE + 1);
- /*
- * Check to make sure that the generated datatype does
- * not exceed the maximum compact datatype size if a
- * compact datatype was requested.
- */
- if (0 == (type_size = H5Tget_size(datatype))) {
- H5_FAILED();
- HDprintf(" failed to retrieve datatype's size\n");
- H5Tclose(datatype);
- datatype = H5I_INVALID_HID;
- }
- else {
- if (type_size > COMPACT_DATATYPE_MAX_SIZE) {
- /*
- * Generate a new datatype.
- */
- H5Tclose(datatype);
- datatype = H5I_INVALID_HID;
- goto reroll;
- }
- }
+ if ((base_datatype = generate_random_datatype(H5T_ARRAY, is_compact)) < 0) {
+ HDprintf(" couldn't create array base datatype\n");
+ goto done;
}
- return datatype;
+ if ((datatype = H5Tarray_create2(base_datatype, ndims, array_dims)) < 0) {
+ HDprintf(" couldn't create array datatype\n");
+ goto done;
+ }
-reroll:
- if (depth > 0)
- depth--;
+ ret_value = datatype;
- /*
- * The datatype generation resulted in a datatype that is currently invalid
- * for these tests, try again.
- */
- switch (rand() % H5T_NCLASSES) {
- case H5T_INTEGER:
- goto case_integer;
- case H5T_FLOAT:
- goto case_float;
- case H5T_TIME:
- goto case_time;
- case H5T_STRING:
- goto case_string;
- case H5T_BITFIELD:
- goto case_bitfield;
- case H5T_OPAQUE:
- goto case_opaque;
- case H5T_COMPOUND:
- goto case_compound;
- case H5T_REFERENCE:
- goto case_reference;
- case H5T_ENUM:
- goto case_enum;
- case H5T_VLEN:
- goto case_vlen;
- case H5T_ARRAY:
- goto case_array;
- default:
- H5_FAILED();
- HDprintf(" invalid value for goto\n");
- break;
+done:
+ HDfree(array_dims);
+
+ if (base_datatype >= 0) {
+ if (H5Tclose(base_datatype) < 0)
+ HDprintf(" couldn't close array base datatype\n");
}
- return H5I_INVALID_HID;
+ if ((ret_value == H5I_INVALID_HID) && (datatype >= 0)) {
+ if (H5Tclose(datatype) < 0)
+ HDprintf(" couldn't close datatype\n");
+ }
+
+ return ret_value;
}
/*
diff --git a/test/API/H5_api_tests_disabled.h b/test/API/H5_api_tests_disabled.h
deleted file mode 100644
index 672d2d9..0000000
--- a/test/API/H5_api_tests_disabled.h
+++ /dev/null
@@ -1,46 +0,0 @@
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * Copyright by The HDF Group. *
- * All rights reserved. *
- * *
- * This file is part of HDF5. The full HDF5 copyright notice, including *
- * terms governing use, modification, and redistribution, is contained in *
- * the COPYING file, which can be found at the root of the source code *
- * distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. *
- * If you do not have access to either file, you may request a copy from *
- * help@hdfgroup.org. *
- * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
-
-#ifndef H5_API_TESTS_DISABLED_H
-#define H5_API_TESTS_DISABLED_H
-
-#include "H5_api_test_config.h"
-
-/* Contains #defines to temporarily disable API tests based
- * on problematic or unsupported functionality */
-
-#define NO_LARGE_TESTS
-#define NO_ATTR_FILL_VALUE_SUPPORT
-#define NO_DECREASING_ALPHA_ITER_ORDER
-#define NO_USER_DEFINED_LINKS
-#define NO_EXTERNAL_LINKS
-#define NO_ITERATION_RESTART
-#define NO_FILE_MOUNTS
-#define NO_CLEAR_ON_SHRINK
-#define NO_DOUBLE_OBJECT_OPENS
-#define NO_OBJECT_GET_NAME
-#define WRONG_DATATYPE_OBJ_COUNT
-#define NO_SHARED_DATATYPES
-#define NO_INVALID_PROPERTY_LIST_TESTS
-#define NO_MAX_LINK_CRT_ORDER_RESET
-#define NO_PREVENT_HARD_LINKS_ACROSS_FILES
-#define NO_SOFT_LINK_MANY_DANGLING
-#define NO_ID_PREVENTS_OBJ_DELETE
-#define NO_WRITE_SAME_ELEMENT_TWICE
-#define NO_PREVENT_CREATE_SAME_ATTRIBUTE_TWICE
-#define NO_DELETE_NONEXISTENT_ATTRIBUTE
-#define NO_TRUNCATE_OPEN_FILE
-#define NO_CHECK_SELECTION_BOUNDS
-#define NO_VALIDATE_DATASPACE
-#define NO_REFERENCE_TO_DELETED
-
-#endif /* H5_API_TESTS_DISABLED_H */
diff --git a/test/API/tattr.c b/test/API/tattr.c
index 5ae1167..4e905b0 100644
--- a/test/API/tattr.c
+++ b/test/API/tattr.c
@@ -201,10 +201,8 @@ test_attr_basic_write(hid_t fapl)
hsize_t dims3[] = {ATTR2_DIM1, ATTR2_DIM2};
int read_data1[ATTR1_DIM1] = {0}; /* Buffer for reading 1st attribute */
int i;
-#ifndef NO_PREVENT_CREATE_SAME_ATTRIBUTE_TWICE
- hid_t ret_id; /* Generic hid_t return value */
-#endif
- herr_t ret; /* Generic return value */
+ hid_t ret_id; /* Generic hid_t return value */
+ herr_t ret; /* Generic return value */
/* Output message about test being performed */
MESSAGE(5, ("Testing Basic Scalar Attribute Writing Functions\n"));
@@ -252,15 +250,17 @@ test_attr_basic_write(hid_t fapl)
/* Create an attribute for the dataset */
attr = H5Acreate2(dataset, ATTR1_NAME, H5T_NATIVE_INT, sid2, H5P_DEFAULT, H5P_DEFAULT);
CHECK(attr, FAIL, "H5Acreate2");
-#ifndef NO_PREVENT_CREATE_SAME_ATTRIBUTE_TWICE
- /* Try to create the same attribute again (should fail) */
- H5E_BEGIN_TRY
- {
- ret_id = H5Acreate2(dataset, ATTR1_NAME, H5T_NATIVE_INT, sid2, H5P_DEFAULT, H5P_DEFAULT);
+
+ if (vol_cap_flags_g & H5VL_CAP_FLAG_ATTR_BASIC) {
+ /* Try to create the same attribute again (should fail) */
+ H5E_BEGIN_TRY
+ {
+ ret_id = H5Acreate2(dataset, ATTR1_NAME, H5T_NATIVE_INT, sid2, H5P_DEFAULT, H5P_DEFAULT);
+ }
+ H5E_END_TRY;
+ VERIFY(ret_id, FAIL, "H5Acreate2");
}
- H5E_END_TRY;
- VERIFY(ret_id, FAIL, "H5Acreate2");
-#endif
+
/* Write attribute information */
ret = H5Awrite(attr, H5T_NATIVE_INT, attr_data1);
CHECK(ret, FAIL, "H5Awrite");
@@ -398,15 +398,17 @@ test_attr_basic_write(hid_t fapl)
attr_size = H5Aget_storage_size(attr);
VERIFY(attr_size, (ATTR2_DIM1 * ATTR2_DIM2 * sizeof(int)), "H5Aget_storage_size");
#endif
-#ifndef NO_PREVENT_CREATE_SAME_ATTRIBUTE_TWICE
- /* Try to create the same attribute again (should fail) */
- H5E_BEGIN_TRY
- {
- ret_id = H5Acreate2(group, ATTR2_NAME, H5T_NATIVE_INT, sid2, H5P_DEFAULT, H5P_DEFAULT);
+
+ if (vol_cap_flags_g & H5VL_CAP_FLAG_ATTR_BASIC) {
+ /* Try to create the same attribute again (should fail) */
+ H5E_BEGIN_TRY
+ {
+ ret_id = H5Acreate2(group, ATTR2_NAME, H5T_NATIVE_INT, sid2, H5P_DEFAULT, H5P_DEFAULT);
+ }
+ H5E_END_TRY;
+ VERIFY(ret_id, FAIL, "H5Acreate2");
}
- H5E_END_TRY;
- VERIFY(ret_id, FAIL, "H5Acreate2");
-#endif
+
/* Write attribute information */
ret = H5Awrite(attr, H5T_NATIVE_INT, attr_data2);
CHECK(ret, FAIL, "H5Awrite");
@@ -555,24 +557,28 @@ test_attr_flush(hid_t fapl)
att = H5Acreate2(set, ATTR1_NAME, H5T_NATIVE_DOUBLE, spc, H5P_DEFAULT, H5P_DEFAULT);
CHECK(att, FAIL, "H5Acreate2");
-#ifndef NO_ATTR_FILL_VALUE_SUPPORT
- ret = H5Aread(att, H5T_NATIVE_DOUBLE, &rdata);
- CHECK(ret, FAIL, "H5Aread");
- if (!H5_DBL_ABS_EQUAL(rdata, 0.0))
- TestErrPrintf("attribute value wrong: rdata=%f, should be %f\n", rdata, 0.0);
+ if ((vol_cap_flags_g & H5VL_CAP_FLAG_ATTR_BASIC) && (vol_cap_flags_g & H5VL_CAP_FLAG_FILL_VALUES) &&
+ (vol_cap_flags_g & H5VL_CAP_FLAG_FILE_MORE)) {
+ ret = H5Aread(att, H5T_NATIVE_DOUBLE, &rdata);
+ CHECK(ret, FAIL, "H5Aread");
- ret = H5Fflush(fil, H5F_SCOPE_GLOBAL);
- CHECK(ret, FAIL, "H5Fflush");
+ if (!H5_DBL_ABS_EQUAL(rdata, 0.0))
+ TestErrPrintf("attribute value wrong: rdata=%f, should be %f\n", rdata, 0.0);
- ret = H5Aread(att, H5T_NATIVE_DOUBLE, &rdata);
- CHECK(ret, FAIL, "H5Awrite");
+ ret = H5Fflush(fil, H5F_SCOPE_GLOBAL);
+ CHECK(ret, FAIL, "H5Fflush");
+
+ ret = H5Aread(att, H5T_NATIVE_DOUBLE, &rdata);
+ CHECK(ret, FAIL, "H5Awrite");
+
+ if (!H5_DBL_ABS_EQUAL(rdata, 0.0))
+ TestErrPrintf("attribute value wrong: rdata=%f, should be %f\n", rdata, 0.0);
+ }
+ else {
+ HDprintf("** SKIPPED attribute pre-read due to fill values not being supported **\n");
+ }
- if (!H5_DBL_ABS_EQUAL(rdata, 0.0))
- TestErrPrintf("attribute value wrong: rdata=%f, should be %f\n", rdata, 0.0);
-#else
- HDprintf("** SKIPPED attribute pre-read temporarily until attribute fill values supported **\n");
-#endif
ret = H5Awrite(att, H5T_NATIVE_DOUBLE, &wdata);
CHECK(ret, FAIL, "H5Awrite");
@@ -731,10 +737,8 @@ test_attr_compound_write(hid_t fapl)
hid_t attr; /* Attribute ID */
hsize_t dims1[] = {SPACE1_DIM1, SPACE1_DIM2, SPACE1_DIM3};
hsize_t dims2[] = {ATTR4_DIM1, ATTR4_DIM2};
-#ifndef NO_PREVENT_CREATE_SAME_ATTRIBUTE_TWICE
- hid_t ret_id; /* Generic hid_t return value */
-#endif
- herr_t ret; /* Generic return value */
+ hid_t ret_id; /* Generic hid_t return value */
+ herr_t ret; /* Generic return value */
/* Output message about test being performed */
MESSAGE(5, ("Testing Multiple Attribute Functions\n"));
@@ -775,15 +779,17 @@ test_attr_compound_write(hid_t fapl)
/* Create complex attribute for the dataset */
attr = H5Acreate2(dataset, ATTR4_NAME, tid1, sid2, H5P_DEFAULT, H5P_DEFAULT);
CHECK(attr, FAIL, "H5Acreate2");
-#ifndef NO_PREVENT_CREATE_SAME_ATTRIBUTE_TWICE
- /* Try to create the same attribute again (should fail) */
- H5E_BEGIN_TRY
- {
- ret_id = H5Acreate2(dataset, ATTR4_NAME, tid1, sid2, H5P_DEFAULT, H5P_DEFAULT);
+
+ if (vol_cap_flags_g & H5VL_CAP_FLAG_ATTR_BASIC) {
+ /* Try to create the same attribute again (should fail) */
+ H5E_BEGIN_TRY
+ {
+ ret_id = H5Acreate2(dataset, ATTR4_NAME, tid1, sid2, H5P_DEFAULT, H5P_DEFAULT);
+ }
+ H5E_END_TRY;
+ VERIFY(ret_id, FAIL, "H5Acreate2");
}
- H5E_END_TRY;
- VERIFY(ret_id, FAIL, "H5Acreate2");
-#endif
+
/* Write complex attribute data */
ret = H5Awrite(attr, tid1, attr_data4);
CHECK(ret, FAIL, "H5Awrite");
@@ -975,10 +981,8 @@ test_attr_scalar_write(hid_t fapl)
hid_t sid1, sid2; /* Dataspace ID */
hid_t attr; /* Attribute ID */
hsize_t dims1[] = {SPACE1_DIM1, SPACE1_DIM2, SPACE1_DIM3};
-#ifndef NO_PREVENT_CREATE_SAME_ATTRIBUTE_TWICE
- hid_t ret_id; /* Generic hid_t return value */
-#endif
- herr_t ret; /* Generic return value */
+ hid_t ret_id; /* Generic hid_t return value */
+ herr_t ret; /* Generic return value */
/* Output message about test being performed */
MESSAGE(5, ("Testing Basic Attribute Functions\n"));
@@ -1002,15 +1006,17 @@ test_attr_scalar_write(hid_t fapl)
/* Create an attribute for the dataset */
attr = H5Acreate2(dataset, ATTR5_NAME, H5T_NATIVE_FLOAT, sid2, H5P_DEFAULT, H5P_DEFAULT);
CHECK(attr, FAIL, "H5Acreate2");
-#ifndef NO_PREVENT_CREATE_SAME_ATTRIBUTE_TWICE
- /* Try to create the same attribute again (should fail) */
- H5E_BEGIN_TRY
- {
- ret_id = H5Acreate2(dataset, ATTR5_NAME, H5T_NATIVE_FLOAT, sid2, H5P_DEFAULT, H5P_DEFAULT);
+
+ if (vol_cap_flags_g & H5VL_CAP_FLAG_ATTR_BASIC) {
+ /* Try to create the same attribute again (should fail) */
+ H5E_BEGIN_TRY
+ {
+ ret_id = H5Acreate2(dataset, ATTR5_NAME, H5T_NATIVE_FLOAT, sid2, H5P_DEFAULT, H5P_DEFAULT);
+ }
+ H5E_END_TRY;
+ VERIFY(ret_id, FAIL, "H5Acreate2");
}
- H5E_END_TRY;
- VERIFY(ret_id, FAIL, "H5Acreate2");
-#endif
+
/* Write attribute information */
ret = H5Awrite(attr, H5T_NATIVE_FLOAT, &attr_data5);
CHECK(ret, FAIL, "H5Awrite");
@@ -1120,10 +1126,8 @@ test_attr_mult_write(hid_t fapl)
hsize_t dims2[] = {ATTR1_DIM1};
hsize_t dims3[] = {ATTR2_DIM1, ATTR2_DIM2};
hsize_t dims4[] = {ATTR3_DIM1, ATTR3_DIM2, ATTR3_DIM3};
-#ifndef NO_PREVENT_CREATE_SAME_ATTRIBUTE_TWICE
- hid_t ret_id; /* Generic hid_t return value */
-#endif
- herr_t ret; /* Generic return value */
+ hid_t ret_id; /* Generic hid_t return value */
+ herr_t ret; /* Generic return value */
/* Output message about test being performed */
MESSAGE(5, ("Testing Multiple Attribute Functions\n"));
@@ -1151,15 +1155,17 @@ test_attr_mult_write(hid_t fapl)
/* Create 1st attribute for the dataset */
attr = H5Acreate2(dataset, ATTR1_NAME, H5T_NATIVE_INT, sid2, H5P_DEFAULT, H5P_DEFAULT);
CHECK(attr, FAIL, "H5Acreate2");
-#ifndef NO_PREVENT_CREATE_SAME_ATTRIBUTE_TWICE
- /* Try to create the same attribute again (should fail) */
- H5E_BEGIN_TRY
- {
- ret_id = H5Acreate2(dataset, ATTR1_NAME, H5T_NATIVE_INT, sid2, H5P_DEFAULT, H5P_DEFAULT);
+
+ if (vol_cap_flags_g & H5VL_CAP_FLAG_ATTR_BASIC) {
+ /* Try to create the same attribute again (should fail) */
+ H5E_BEGIN_TRY
+ {
+ ret_id = H5Acreate2(dataset, ATTR1_NAME, H5T_NATIVE_INT, sid2, H5P_DEFAULT, H5P_DEFAULT);
+ }
+ H5E_END_TRY;
+ VERIFY(ret_id, FAIL, "H5Acreate2");
}
- H5E_END_TRY;
- VERIFY(ret_id, FAIL, "H5Acreate2");
-#endif
+
/* Write 1st attribute data */
ret = H5Awrite(attr, H5T_NATIVE_INT, attr_data1);
CHECK(ret, FAIL, "H5Awrite");
@@ -1179,15 +1185,17 @@ test_attr_mult_write(hid_t fapl)
/* Create 2nd attribute for the dataset */
attr = H5Acreate2(dataset, ATTR2_NAME, H5T_NATIVE_INT, sid2, H5P_DEFAULT, H5P_DEFAULT);
CHECK(attr, FAIL, "H5Acreate2");
-#ifndef NO_PREVENT_CREATE_SAME_ATTRIBUTE_TWICE
- /* Try to create the same attribute again (should fail) */
- H5E_BEGIN_TRY
- {
- ret_id = H5Acreate2(dataset, ATTR2_NAME, H5T_NATIVE_INT, sid2, H5P_DEFAULT, H5P_DEFAULT);
+
+ if (vol_cap_flags_g & H5VL_CAP_FLAG_ATTR_BASIC) {
+ /* Try to create the same attribute again (should fail) */
+ H5E_BEGIN_TRY
+ {
+ ret_id = H5Acreate2(dataset, ATTR2_NAME, H5T_NATIVE_INT, sid2, H5P_DEFAULT, H5P_DEFAULT);
+ }
+ H5E_END_TRY;
+ VERIFY(ret_id, FAIL, "H5Acreate2");
}
- H5E_END_TRY;
- VERIFY(ret_id, FAIL, "H5Acreate2");
-#endif
+
/* Write 2nd attribute information */
ret = H5Awrite(attr, H5T_NATIVE_INT, attr_data2);
CHECK(ret, FAIL, "H5Awrite");
@@ -1207,15 +1215,17 @@ test_attr_mult_write(hid_t fapl)
/* Create 3rd attribute for the dataset */
attr = H5Acreate2(dataset, ATTR3_NAME, H5T_NATIVE_DOUBLE, sid2, H5P_DEFAULT, H5P_DEFAULT);
CHECK(attr, FAIL, "H5Acreate2");
-#ifndef NO_PREVENT_CREATE_SAME_ATTRIBUTE_TWICE
- /* Try to create the same attribute again (should fail) */
- H5E_BEGIN_TRY
- {
- ret_id = H5Acreate2(dataset, ATTR3_NAME, H5T_NATIVE_DOUBLE, sid2, H5P_DEFAULT, H5P_DEFAULT);
+
+ if (vol_cap_flags_g & H5VL_CAP_FLAG_ATTR_BASIC) {
+ /* Try to create the same attribute again (should fail) */
+ H5E_BEGIN_TRY
+ {
+ ret_id = H5Acreate2(dataset, ATTR3_NAME, H5T_NATIVE_DOUBLE, sid2, H5P_DEFAULT, H5P_DEFAULT);
+ }
+ H5E_END_TRY;
+ VERIFY(ret_id, FAIL, "H5Acreate2");
}
- H5E_END_TRY;
- VERIFY(ret_id, FAIL, "H5Acreate2");
-#endif
+
/* Write 3rd attribute information */
ret = H5Awrite(attr, H5T_NATIVE_DOUBLE, attr_data3);
CHECK(ret, FAIL, "H5Awrite");
@@ -1605,15 +1615,17 @@ test_attr_delete(hid_t fapl)
ret = H5Oget_info3(dataset, &oinfo, H5O_INFO_NUM_ATTRS);
CHECK(ret, FAIL, "H5Oget_info3");
VERIFY(oinfo.num_attrs, 3, "H5Oget_info3");
-#ifndef NO_DELETE_NONEXISTENT_ATTRIBUTE
- /* Try to delete bogus attribute */
- H5E_BEGIN_TRY
- {
- ret = H5Adelete(dataset, "Bogus");
+
+ if (vol_cap_flags_g & H5VL_CAP_FLAG_ATTR_BASIC) {
+ /* Try to delete bogus attribute */
+ H5E_BEGIN_TRY
+ {
+ ret = H5Adelete(dataset, "Bogus");
+ }
+ H5E_END_TRY;
+ VERIFY(ret, FAIL, "H5Adelete");
}
- H5E_END_TRY;
- VERIFY(ret, FAIL, "H5Adelete");
-#endif
+
/* Verify the correct number of attributes */
ret = H5Oget_info3(dataset, &oinfo, H5O_INFO_NUM_ATTRS);
CHECK(ret, FAIL, "H5Oget_info3");
@@ -1709,7 +1721,6 @@ test_attr_delete(hid_t fapl)
static void
test_attr_dtype_shared(hid_t fapl)
{
-#ifndef NO_SHARED_DATATYPES
hid_t file_id; /* File ID */
hid_t dset_id; /* Dataset ID */
hid_t space_id; /* Dataspace ID for dataset & attribute */
@@ -1723,164 +1734,162 @@ test_attr_dtype_shared(hid_t fapl)
h5_stat_size_t filesize; /* Size of file after modifications */
#endif
herr_t ret; /* Generic return value */
-#else
- (void)fapl;
-#endif
+
/* Output message about test being performed */
- MESSAGE(5, ("Testing Shared Datatypes with Attributes - SKIPPED for now due to no support for shared "
- "datatypes\n"));
-#ifndef NO_SHARED_DATATYPES
- /* Create a file */
- file_id = H5Fcreate(FILENAME, H5F_ACC_TRUNC, H5P_DEFAULT, fapl);
- CHECK(file_id, FAIL, "H5Fopen");
+ MESSAGE(5, ("Testing Shared Datatypes with Attributes\n"));
- /* Close file */
- ret = H5Fclose(file_id);
- CHECK(ret, FAIL, "H5Fclose");
+ if ((vol_cap_flags_g & H5VL_CAP_FLAG_STORED_DATATYPES) && (vol_cap_flags_g & H5VL_CAP_FLAG_FILE_BASIC)) {
+ /* Create a file */
+ file_id = H5Fcreate(FILENAME, H5F_ACC_TRUNC, H5P_DEFAULT, fapl);
+ CHECK(file_id, FAIL, "H5Fopen");
+
+ /* Close file */
+ ret = H5Fclose(file_id);
+ CHECK(ret, FAIL, "H5Fclose");
#if 0
- /* Get size of file */
- empty_filesize = h5_get_file_size(FILENAME, fapl);
- if (empty_filesize < 0)
- TestErrPrintf("Line %d: file size wrong!\n", __LINE__);
+ /* Get size of file */
+ empty_filesize = h5_get_file_size(FILENAME, fapl);
+ if (empty_filesize < 0)
+ TestErrPrintf("Line %d: file size wrong!\n", __LINE__);
#endif
- /* Re-open file */
- file_id = H5Fopen(FILENAME, H5F_ACC_RDWR, fapl);
- CHECK(file_id, FAIL, "H5Fopen");
+ /* Re-open file */
+ file_id = H5Fopen(FILENAME, H5F_ACC_RDWR, fapl);
+ CHECK(file_id, FAIL, "H5Fopen");
- /* Create a datatype to commit and use */
- type_id = H5Tcopy(H5T_NATIVE_INT);
- CHECK(type_id, FAIL, "H5Tcopy");
+ /* Create a datatype to commit and use */
+ type_id = H5Tcopy(H5T_NATIVE_INT);
+ CHECK(type_id, FAIL, "H5Tcopy");
- /* Commit datatype to file */
- ret = H5Tcommit2(file_id, TYPE1_NAME, type_id, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT);
- CHECK(ret, FAIL, "H5Tcommit2");
+ /* Commit datatype to file */
+ ret = H5Tcommit2(file_id, TYPE1_NAME, type_id, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT);
+ CHECK(ret, FAIL, "H5Tcommit2");
- /* Check reference count on named datatype */
- ret = H5Oget_info_by_name3(file_id, TYPE1_NAME, &oinfo, H5O_INFO_BASIC, H5P_DEFAULT);
- CHECK(ret, FAIL, "H5Oget_info_by_name3");
- VERIFY(oinfo.rc, 1, "H5Oget_info_by_name3");
+ /* Check reference count on named datatype */
+ ret = H5Oget_info_by_name3(file_id, TYPE1_NAME, &oinfo, H5O_INFO_BASIC, H5P_DEFAULT);
+ CHECK(ret, FAIL, "H5Oget_info_by_name3");
+ VERIFY(oinfo.rc, 1, "H5Oget_info_by_name3");
- /* Create dataspace for dataset */
- space_id = H5Screate(H5S_SCALAR);
- CHECK(space_id, FAIL, "H5Screate");
+ /* Create dataspace for dataset */
+ space_id = H5Screate(H5S_SCALAR);
+ CHECK(space_id, FAIL, "H5Screate");
- /* Create dataset */
- dset_id = H5Dcreate2(file_id, DSET1_NAME, type_id, space_id, H5P_DEFAULT, dcpl_g, H5P_DEFAULT);
- CHECK(dset_id, FAIL, "H5Dcreate2");
+ /* Create dataset */
+ dset_id = H5Dcreate2(file_id, DSET1_NAME, type_id, space_id, H5P_DEFAULT, dcpl_g, H5P_DEFAULT);
+ CHECK(dset_id, FAIL, "H5Dcreate2");
- /* Check reference count on named datatype */
- ret = H5Oget_info_by_name3(file_id, TYPE1_NAME, &oinfo, H5O_INFO_BASIC, H5P_DEFAULT);
- CHECK(ret, FAIL, "H5Oget_info_by_name3");
- VERIFY(oinfo.rc, 2, "H5Oget_info_by_name3");
+ /* Check reference count on named datatype */
+ ret = H5Oget_info_by_name3(file_id, TYPE1_NAME, &oinfo, H5O_INFO_BASIC, H5P_DEFAULT);
+ CHECK(ret, FAIL, "H5Oget_info_by_name3");
+ VERIFY(oinfo.rc, 2, "H5Oget_info_by_name3");
- /* Create attribute on dataset */
- attr_id = H5Acreate2(dset_id, ATTR1_NAME, type_id, space_id, H5P_DEFAULT, H5P_DEFAULT);
- CHECK(attr_id, FAIL, "H5Acreate2");
+ /* Create attribute on dataset */
+ attr_id = H5Acreate2(dset_id, ATTR1_NAME, type_id, space_id, H5P_DEFAULT, H5P_DEFAULT);
+ CHECK(attr_id, FAIL, "H5Acreate2");
- /* Check reference count on named datatype */
- ret = H5Oget_info_by_name3(file_id, TYPE1_NAME, &oinfo, H5O_INFO_BASIC, H5P_DEFAULT);
- CHECK(ret, FAIL, "H5Oget_info_by_name3");
- VERIFY(oinfo.rc, 3, "H5Oget_info_by_name3");
+ /* Check reference count on named datatype */
+ ret = H5Oget_info_by_name3(file_id, TYPE1_NAME, &oinfo, H5O_INFO_BASIC, H5P_DEFAULT);
+ CHECK(ret, FAIL, "H5Oget_info_by_name3");
+ VERIFY(oinfo.rc, 3, "H5Oget_info_by_name3");
- /* Close attribute */
- ret = H5Aclose(attr_id);
- CHECK(ret, FAIL, "H5Aclose");
+ /* Close attribute */
+ ret = H5Aclose(attr_id);
+ CHECK(ret, FAIL, "H5Aclose");
- /* Delete attribute */
- ret = H5Adelete(dset_id, ATTR1_NAME);
- CHECK(ret, FAIL, "H5Adelete");
+ /* Delete attribute */
+ ret = H5Adelete(dset_id, ATTR1_NAME);
+ CHECK(ret, FAIL, "H5Adelete");
- /* Check reference count on named datatype */
- ret = H5Oget_info_by_name3(file_id, TYPE1_NAME, &oinfo, H5O_INFO_BASIC, H5P_DEFAULT);
- CHECK(ret, FAIL, "H5Oget_info_by_name3");
- VERIFY(oinfo.rc, 2, "H5Oget_info_by_name3");
+ /* Check reference count on named datatype */
+ ret = H5Oget_info_by_name3(file_id, TYPE1_NAME, &oinfo, H5O_INFO_BASIC, H5P_DEFAULT);
+ CHECK(ret, FAIL, "H5Oget_info_by_name3");
+ VERIFY(oinfo.rc, 2, "H5Oget_info_by_name3");
- /* Create attribute on dataset */
- attr_id = H5Acreate2(dset_id, ATTR1_NAME, type_id, space_id, H5P_DEFAULT, H5P_DEFAULT);
- CHECK(attr_id, FAIL, "H5Acreate2");
+ /* Create attribute on dataset */
+ attr_id = H5Acreate2(dset_id, ATTR1_NAME, type_id, space_id, H5P_DEFAULT, H5P_DEFAULT);
+ CHECK(attr_id, FAIL, "H5Acreate2");
- /* Check reference count on named datatype */
- ret = H5Oget_info_by_name3(file_id, TYPE1_NAME, &oinfo, H5O_INFO_BASIC, H5P_DEFAULT);
- CHECK(ret, FAIL, "H5Oget_info_by_name3");
- VERIFY(oinfo.rc, 3, "H5Oget_info_by_name3");
+ /* Check reference count on named datatype */
+ ret = H5Oget_info_by_name3(file_id, TYPE1_NAME, &oinfo, H5O_INFO_BASIC, H5P_DEFAULT);
+ CHECK(ret, FAIL, "H5Oget_info_by_name3");
+ VERIFY(oinfo.rc, 3, "H5Oget_info_by_name3");
- /* Write data into the attribute */
- ret = H5Awrite(attr_id, H5T_NATIVE_INT, &data);
- CHECK(ret, FAIL, "H5Awrite");
+ /* Write data into the attribute */
+ ret = H5Awrite(attr_id, H5T_NATIVE_INT, &data);
+ CHECK(ret, FAIL, "H5Awrite");
- /* Close attribute */
- ret = H5Aclose(attr_id);
- CHECK(ret, FAIL, "H5Aclose");
+ /* Close attribute */
+ ret = H5Aclose(attr_id);
+ CHECK(ret, FAIL, "H5Aclose");
- /* Close dataset */
- ret = H5Dclose(dset_id);
- CHECK(ret, FAIL, "H5Dclose");
+ /* Close dataset */
+ ret = H5Dclose(dset_id);
+ CHECK(ret, FAIL, "H5Dclose");
- /* Close dataspace */
- ret = H5Sclose(space_id);
- CHECK(ret, FAIL, "H5Sclose");
+ /* Close dataspace */
+ ret = H5Sclose(space_id);
+ CHECK(ret, FAIL, "H5Sclose");
- /* Close datatype */
- ret = H5Tclose(type_id);
- CHECK(ret, FAIL, "H5Tclose");
+ /* Close datatype */
+ ret = H5Tclose(type_id);
+ CHECK(ret, FAIL, "H5Tclose");
- /* Close file */
- ret = H5Fclose(file_id);
- CHECK(ret, FAIL, "H5Fclose");
+ /* Close file */
+ ret = H5Fclose(file_id);
+ CHECK(ret, FAIL, "H5Fclose");
- /* Re-open file */
- file_id = H5Fopen(FILENAME, H5F_ACC_RDWR, fapl);
- CHECK(file_id, FAIL, "H5Fopen");
+ /* Re-open file */
+ file_id = H5Fopen(FILENAME, H5F_ACC_RDWR, fapl);
+ CHECK(file_id, FAIL, "H5Fopen");
- /* Open dataset */
- dset_id = H5Dopen2(file_id, DSET1_NAME, H5P_DEFAULT);
- CHECK(dset_id, FAIL, "H5Dopen2");
+ /* Open dataset */
+ dset_id = H5Dopen2(file_id, DSET1_NAME, H5P_DEFAULT);
+ CHECK(dset_id, FAIL, "H5Dopen2");
- /* Open attribute */
- attr_id = H5Aopen(dset_id, ATTR1_NAME, H5P_DEFAULT);
- CHECK(attr_id, FAIL, "H5Aopen");
+ /* Open attribute */
+ attr_id = H5Aopen(dset_id, ATTR1_NAME, H5P_DEFAULT);
+ CHECK(attr_id, FAIL, "H5Aopen");
- /* Read data from the attribute */
- ret = H5Aread(attr_id, H5T_NATIVE_INT, &rdata);
- CHECK(ret, FAIL, "H5Aread");
- VERIFY(data, rdata, "H5Aread");
+ /* Read data from the attribute */
+ ret = H5Aread(attr_id, H5T_NATIVE_INT, &rdata);
+ CHECK(ret, FAIL, "H5Aread");
+ VERIFY(data, rdata, "H5Aread");
- /* Close attribute */
- ret = H5Aclose(attr_id);
- CHECK(ret, FAIL, "H5Aclose");
+ /* Close attribute */
+ ret = H5Aclose(attr_id);
+ CHECK(ret, FAIL, "H5Aclose");
- /* Close dataset */
- ret = H5Dclose(dset_id);
- CHECK(ret, FAIL, "H5Dclose");
+ /* Close dataset */
+ ret = H5Dclose(dset_id);
+ CHECK(ret, FAIL, "H5Dclose");
- /* Check reference count on named datatype */
- ret = H5Oget_info_by_name3(file_id, TYPE1_NAME, &oinfo, H5O_INFO_BASIC, H5P_DEFAULT);
- CHECK(ret, FAIL, "H5Oget_info_by_name3");
- VERIFY(oinfo.rc, 3, "H5Oget_info_by_name3");
+ /* Check reference count on named datatype */
+ ret = H5Oget_info_by_name3(file_id, TYPE1_NAME, &oinfo, H5O_INFO_BASIC, H5P_DEFAULT);
+ CHECK(ret, FAIL, "H5Oget_info_by_name3");
+ VERIFY(oinfo.rc, 3, "H5Oget_info_by_name3");
- /* Unlink the dataset */
- ret = H5Ldelete(file_id, DSET1_NAME, H5P_DEFAULT);
- CHECK(ret, FAIL, "H5Ldelete");
+ /* Unlink the dataset */
+ ret = H5Ldelete(file_id, DSET1_NAME, H5P_DEFAULT);
+ CHECK(ret, FAIL, "H5Ldelete");
- /* Check reference count on named datatype */
- ret = H5Oget_info_by_name3(file_id, TYPE1_NAME, &oinfo, H5O_INFO_BASIC, H5P_DEFAULT);
- CHECK(ret, FAIL, "H5Oget_info_by_name3");
- VERIFY(oinfo.rc, 1, "H5Oget_info_by_name3");
+ /* Check reference count on named datatype */
+ ret = H5Oget_info_by_name3(file_id, TYPE1_NAME, &oinfo, H5O_INFO_BASIC, H5P_DEFAULT);
+ CHECK(ret, FAIL, "H5Oget_info_by_name3");
+ VERIFY(oinfo.rc, 1, "H5Oget_info_by_name3");
- /* Unlink the named datatype */
- ret = H5Ldelete(file_id, TYPE1_NAME, H5P_DEFAULT);
- CHECK(ret, FAIL, "H5Ldelete");
+ /* Unlink the named datatype */
+ ret = H5Ldelete(file_id, TYPE1_NAME, H5P_DEFAULT);
+ CHECK(ret, FAIL, "H5Ldelete");
- /* Close file */
- ret = H5Fclose(file_id);
- CHECK(ret, FAIL, "H5Fclose");
+ /* Close file */
+ ret = H5Fclose(file_id);
+ CHECK(ret, FAIL, "H5Fclose");
#if 0
- /* Check size of file */
- filesize = h5_get_file_size(FILENAME, fapl);
- VERIFY(filesize, empty_filesize, "h5_get_file_size");
-#endif
+ /* Check size of file */
+ filesize = h5_get_file_size(FILENAME, fapl);
+ VERIFY(filesize, empty_filesize, "h5_get_file_size");
#endif
+ }
} /* test_attr_dtype_shared() */
/****************************************************************
@@ -2313,15 +2322,17 @@ test_attr_dense_create(hid_t fcpl, hid_t fapl)
/* Close attribute */
ret = H5Aclose(attr);
CHECK(ret, FAIL, "H5Aclose");
-#ifndef NO_PREVENT_CREATE_SAME_ATTRIBUTE_TWICE
- /* Attempt to add attribute again, which should fail */
- H5E_BEGIN_TRY
- {
- attr = H5Acreate2(dataset, attrname, H5T_NATIVE_UINT, sid, H5P_DEFAULT, H5P_DEFAULT);
+
+ if (vol_cap_flags_g & H5VL_CAP_FLAG_ATTR_BASIC) {
+ /* Attempt to add attribute again, which should fail */
+ H5E_BEGIN_TRY
+ {
+ attr = H5Acreate2(dataset, attrname, H5T_NATIVE_UINT, sid, H5P_DEFAULT, H5P_DEFAULT);
+ }
+ H5E_END_TRY;
+ VERIFY(attr, FAIL, "H5Acreate2");
}
- H5E_END_TRY;
- VERIFY(attr, FAIL, "H5Acreate2");
-#endif
+
/* Close dataspace */
ret = H5Sclose(sid);
CHECK(ret, FAIL, "H5Sclose");
@@ -5911,11 +5922,10 @@ attr_info_by_idx_check(hid_t obj_id, const char *attrname, hsize_t n, hbool_t us
if (HDstrcmp(attrname, tmpname) != 0)
TestErrPrintf("Line %d: attribute name size wrong!\n", __LINE__);
- /* Don't test "native" order queries on link name order, since there's not
- * a good way to easily predict the order of the links in the name index.
- */
+ /* Don't test "native" order queries on link name order, since there's not
+ * a good way to easily predict the order of the links in the name index.
+ */
-#ifndef NO_DECREASING_ALPHA_ITER_ORDER
/* Verify the information for first attribute, in decreasing name order */
HDmemset(&ainfo, 0, sizeof(ainfo));
ret = H5Aget_info_by_idx(obj_id, ".", H5_INDEX_NAME, H5_ITER_DEC, n, &ainfo, H5P_DEFAULT);
@@ -5935,7 +5945,7 @@ attr_info_by_idx_check(hid_t obj_id, const char *attrname, hsize_t n, hbool_t us
CHECK(ret, FAIL, "H5Aget_name_by_idx");
if (HDstrcmp(attrname, tmpname) != 0)
TestErrPrintf("Line %d: attribute name size wrong!\n", __LINE__);
-#endif
+
/* Retrieve current # of errors */
if (old_nerrs == nerrors)
return (0);
@@ -6463,6 +6473,11 @@ test_attr_delete_by_idx(hbool_t new_format, hid_t fcpl, hid_t fapl)
MESSAGE(5, ("Testing Deleting Attribute By Index\n"))
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ MESSAGE(5, (" SKIPPED\n"))
+ return;
+ }
+
/* Create dataspace for dataset & attributes */
sid = H5Screate(H5S_SCALAR);
CHECK(sid, FAIL, "H5Screate");
@@ -6516,18 +6531,14 @@ test_attr_delete_by_idx(hbool_t new_format, hid_t fcpl, hid_t fapl)
"Creation Order Index\n"))
} /* end if */
else {
-#ifndef NO_DECREASING_ALPHA_ITER_ORDER
if (use_index)
MESSAGE(5, ("Testing Deleting Attribute By Name Index in Decreasing Order "
"w/Creation Order Index\n"))
else
MESSAGE(5, ("Testing Deleting Attribute By Name Index in Decreasing Order w/o "
"Creation Order Index\n"))
-#else
- continue;
-#endif
- } /* end else */
- } /* end else */
+ }
+ } /* end else */
/* Create file */
fid = H5Fcreate(FILENAME, H5F_ACC_TRUNC, fcpl, fapl);
@@ -7096,7 +7107,6 @@ attr_iterate1_cb(hid_t loc_id, const char *attr_name, void *_op_data)
#endif /* H5_NO_DEPRECATED_SYMBOLS */
#endif
-#ifndef NO_ITERATION_RESTART
/*-------------------------------------------------------------------------
* Function: attr_iterate2_fail_cb
*
@@ -7148,6 +7158,13 @@ attr_iterate_check(hid_t fid, const char *dsetname, hid_t obj_id, H5_index_t idx
/* Retrieve the current # of reported errors */
old_nerrs = nerrors;
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_ITERATE)) {
+ SKIPPED();
+ HDprintf(" API functions for iterate aren't "
+ "supported with this connector\n");
+ return 1;
+ }
+
/* Iterate over attributes on object */
iter_info->nskipped = (unsigned)(skip = 0);
iter_info->order = order;
@@ -7425,7 +7442,6 @@ attr_iterate_check(hid_t fid, const char *dsetname, hid_t obj_id, H5_index_t idx
else
return (-1);
} /* end attr_iterate_check() */
-#endif
/****************************************************************
**
@@ -7451,19 +7467,21 @@ test_attr_iterate2(hbool_t new_format, hid_t fcpl, hid_t fapl)
hsize_t name_count; /* # of records in name index */
hsize_t corder_count; /* # of records in creation order index */
#endif
- H5_index_t idx_type; /* Type of index to operate on */
- H5_iter_order_t order; /* Order within in the index */
- attr_iter_info_t iter_info; /* Iterator info */
- hbool_t *visited = NULL; /* Array of flags for visiting links */
-#ifndef NO_ITERATION_RESTART
- hsize_t idx; /* Start index for iteration */
-#endif
- unsigned use_index; /* Use index on creation order values */
- const char *dsetname; /* Name of dataset for attributes */
- char attrname[NAME_BUF_SIZE]; /* Name of attribute */
- unsigned curr_dset; /* Current dataset to work on */
- unsigned u; /* Local index variable */
- herr_t ret; /* Generic return value */
+ H5_index_t idx_type; /* Type of index to operate on */
+ H5_iter_order_t order; /* Order within in the index */
+ attr_iter_info_t iter_info; /* Iterator info */
+ hbool_t *visited = NULL; /* Array of flags for visiting links */
+ hsize_t idx; /* Start index for iteration */
+ unsigned use_index; /* Use index on creation order values */
+ const char *dsetname; /* Name of dataset for attributes */
+ char attrname[NAME_BUF_SIZE]; /* Name of attribute */
+ unsigned curr_dset; /* Current dataset to work on */
+ unsigned u; /* Local index variable */
+ herr_t ret; /* Generic return value */
+
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ return;
+ }
/* Create dataspace for dataset & attributes */
sid = H5Screate(H5S_SCALAR);
@@ -7524,16 +7542,12 @@ test_attr_iterate2(hbool_t new_format, hid_t fcpl, hid_t fapl)
"w/o Creation Order Index\n"))
} /* end if */
else {
-#ifndef NO_DECREASING_ALPHA_ITER_ORDER
if (use_index)
MESSAGE(5, ("Testing Iterating over Attributes By Name Index in Decreasing Order "
"w/Creation Order Index\n"))
else
MESSAGE(5, ("Testing Iterating over Attributes By Name Index in Decreasing Order "
"w/o Creation Order Index\n"))
-#else
- continue;
-#endif
} /* end else */
} /* end else */
@@ -7626,38 +7640,39 @@ test_attr_iterate2(hbool_t new_format, hid_t fcpl, hid_t fapl)
is_dense = H5O__is_attr_dense_test(my_dataset);
VERIFY(is_dense, FALSE, "H5O__is_attr_dense_test");
#endif
-#ifndef NO_ITERATION_RESTART
- /* Check for out of bound iteration */
- idx = u;
- H5E_BEGIN_TRY
- {
- ret = H5Aiterate2(my_dataset, idx_type, order, &idx, attr_iterate2_cb, NULL);
- }
- H5E_END_TRY;
- VERIFY(ret, FAIL, "H5Aiterate2");
- idx = u;
- H5E_BEGIN_TRY
- {
- ret = H5Aiterate_by_name(fid, dsetname, idx_type, order, &idx, attr_iterate2_cb, NULL,
- H5P_DEFAULT);
+ if (vol_cap_flags_g & H5VL_CAP_FLAG_ITERATE) {
+ /* Check for out of bound iteration */
+ idx = u;
+ H5E_BEGIN_TRY
+ {
+ ret = H5Aiterate2(my_dataset, idx_type, order, &idx, attr_iterate2_cb, NULL);
+ }
+ H5E_END_TRY;
+ VERIFY(ret, FAIL, "H5Aiterate2");
+
+ idx = u;
+ H5E_BEGIN_TRY
+ {
+ ret = H5Aiterate_by_name(fid, dsetname, idx_type, order, &idx, attr_iterate2_cb,
+ NULL, H5P_DEFAULT);
+ }
+ H5E_END_TRY;
+ VERIFY(ret, FAIL, "H5Aiterate_by_name");
+
+ idx = u;
+ H5E_BEGIN_TRY
+ {
+ ret = H5Aiterate_by_name(my_dataset, ".", idx_type, order, &idx, attr_iterate2_cb,
+ NULL, H5P_DEFAULT);
+ }
+ H5E_END_TRY;
+ VERIFY(ret, FAIL, "H5Aiterate_by_name");
+
+ /* Test iteration over attributes stored compactly */
+ ret = attr_iterate_check(fid, dsetname, my_dataset, idx_type, order, u, &iter_info);
+ CHECK(ret, FAIL, "attr_iterate_check");
}
- H5E_END_TRY;
- VERIFY(ret, FAIL, "H5Aiterate_by_name");
-
- idx = u;
- H5E_BEGIN_TRY
- {
- ret = H5Aiterate_by_name(my_dataset, ".", idx_type, order, &idx, attr_iterate2_cb,
- NULL, H5P_DEFAULT);
- }
- H5E_END_TRY;
- VERIFY(ret, FAIL, "H5Aiterate_by_name");
-
- /* Test iteration over attributes stored compactly */
- ret = attr_iterate_check(fid, dsetname, my_dataset, idx_type, order, u, &iter_info);
- CHECK(ret, FAIL, "attr_iterate_check");
-#endif
} /* end for */
/* Work on all the datasets */
@@ -7725,41 +7740,42 @@ test_attr_iterate2(hbool_t new_format, hid_t fcpl, hid_t fapl)
if (use_index)
VERIFY(name_count, corder_count, "H5O__attr_dense_info_test");
VERIFY(name_count, (max_compact * 2), "H5O__attr_dense_info_test");
- } /* end if */
-#endif
-#ifndef NO_ITERATION_RESTART
- /* Check for out of bound iteration */
- idx = u;
- H5E_BEGIN_TRY
- {
- ret = H5Aiterate2(my_dataset, idx_type, order, &idx, attr_iterate2_cb, NULL);
- }
- H5E_END_TRY;
- VERIFY(ret, FAIL, "H5Aiterate2");
-
- idx = u;
- H5E_BEGIN_TRY
- {
- ret = H5Aiterate_by_name(fid, dsetname, idx_type, order, &idx, attr_iterate2_cb, NULL,
- H5P_DEFAULT);
}
- H5E_END_TRY;
- VERIFY(ret, FAIL, "H5Aiterate_by_name");
+#endif
- idx = u;
- H5E_BEGIN_TRY
- {
- ret = H5Aiterate_by_name(my_dataset, ".", idx_type, order, &idx, attr_iterate2_cb,
- NULL, H5P_DEFAULT);
+ if (vol_cap_flags_g & H5VL_CAP_FLAG_ITERATE) {
+ /* Check for out of bound iteration */
+ idx = u;
+ H5E_BEGIN_TRY
+ {
+ ret = H5Aiterate2(my_dataset, idx_type, order, &idx, attr_iterate2_cb, NULL);
+ }
+ H5E_END_TRY;
+ VERIFY(ret, FAIL, "H5Aiterate2");
+
+ idx = u;
+ H5E_BEGIN_TRY
+ {
+ ret = H5Aiterate_by_name(fid, dsetname, idx_type, order, &idx, attr_iterate2_cb,
+ NULL, H5P_DEFAULT);
+ }
+ H5E_END_TRY;
+ VERIFY(ret, FAIL, "H5Aiterate_by_name");
+
+ idx = u;
+ H5E_BEGIN_TRY
+ {
+ ret = H5Aiterate_by_name(my_dataset, ".", idx_type, order, &idx, attr_iterate2_cb,
+ NULL, H5P_DEFAULT);
+ }
+ H5E_END_TRY;
+ VERIFY(ret, FAIL, "H5Aiterate_by_name");
+
+ /* Test iteration over attributes stored densely */
+ ret = attr_iterate_check(fid, dsetname, my_dataset, idx_type, order, u, &iter_info);
+ CHECK(ret, FAIL, "attr_iterate_check");
}
- H5E_END_TRY;
- VERIFY(ret, FAIL, "H5Aiterate_by_name");
-
- /* Test iteration over attributes stored densely */
- ret = attr_iterate_check(fid, dsetname, my_dataset, idx_type, order, u, &iter_info);
- CHECK(ret, FAIL, "attr_iterate_check");
-#endif
- } /* end for */
+ }
/* Close Datasets */
ret = H5Dclose(dset1);
@@ -7879,6 +7895,10 @@ test_attr_open_by_idx(hbool_t new_format, hid_t fcpl, hid_t fapl)
hid_t ret_id; /* Generic hid_t return value */
herr_t ret; /* Generic return value */
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_CREATION_ORDER)) {
+ return;
+ }
+
/* Create dataspace for dataset & attributes */
sid = H5Screate(H5S_SCALAR);
CHECK(sid, FAIL, "H5Screate");
@@ -7932,16 +7952,12 @@ test_attr_open_by_idx(hbool_t new_format, hid_t fcpl, hid_t fapl)
"Creation Order Index\n"))
} /* end if */
else {
-#ifndef NO_DECREASING_ALPHA_ITER_ORDER
if (use_index)
MESSAGE(5, ("Testing Opening Attributes By Name Index in Decreasing Order "
"w/Creation Order Index\n"))
else
MESSAGE(5, ("Testing Opening Attributes By Name Index in Decreasing Order w/o "
"Creation Order Index\n"))
-#else
- continue;
-#endif
} /* end else */
} /* end else */
diff --git a/test/API/testhdf5.c b/test/API/testhdf5.c
index f29b603..e4dc0b6 100644
--- a/test/API/testhdf5.c
+++ b/test/API/testhdf5.c
@@ -41,6 +41,8 @@ char *paraprefix = NULL; /* for command line option para-prefix */
/* Length of multi-file VFD filename buffers */
#define H5TEST_MULTI_FILENAME_LEN 1024
+uint64_t vol_cap_flags_g = H5VL_CAP_FLAG_NONE;
+
/*
* This routine is designed to provide equivalent functionality to 'printf'
* and allow easy replacement for environments which don't have stdin/stdout
diff --git a/test/API/testhdf5.h b/test/API/testhdf5.h
index 44ccfe0..3d945f8 100644
--- a/test/API/testhdf5.h
+++ b/test/API/testhdf5.h
@@ -21,7 +21,6 @@
/* #include "h5test.h" */
#include "hdf5.h"
#include "H5private.h"
-#include "H5_api_tests_disabled.h"
#define VERBO_NONE 0 /* None */
#define VERBO_DEF 3 /* Default */
@@ -343,6 +342,9 @@ void cleanup_sohm(void);
void cleanup_misc(void);
void cleanup_unicode(void);
+/* Extern global variables */
+extern uint64_t vol_cap_flags_g;
+
#ifdef __cplusplus
}
#endif
diff --git a/test/API/tfile.c b/test/API/tfile.c
index bc0f18e..c0b2921 100644
--- a/test/API/tfile.c
+++ b/test/API/tfile.c
@@ -258,18 +258,20 @@ test_file_create(void)
/* Create with H5F_ACC_EXCL */
fid1 = H5Fcreate(FILE1, H5F_ACC_EXCL, H5P_DEFAULT, H5P_DEFAULT);
CHECK(fid1, FAIL, "H5Fcreate");
-#ifndef NO_TRUNCATE_OPEN_FILE
- /*
- * try to create the same file with H5F_ACC_TRUNC. This should fail
- * because fid1 is the same file and is currently open.
- */
- H5E_BEGIN_TRY
- {
- fid2 = H5Fcreate(FILE1, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT);
+
+ if (vol_cap_flags_g & H5VL_CAP_FLAG_FILE_BASIC) {
+ /*
+ * try to create the same file with H5F_ACC_TRUNC. This should fail
+ * because fid1 is the same file and is currently open.
+ */
+ H5E_BEGIN_TRY
+ {
+ fid2 = H5Fcreate(FILE1, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT);
+ }
+ H5E_END_TRY;
+ VERIFY(fid2, FAIL, "H5Fcreate");
}
- H5E_END_TRY;
- VERIFY(fid2, FAIL, "H5Fcreate");
-#endif
+
/* Close all files */
ret = H5Fclose(fid1);
CHECK(ret, FAIL, "H5Fclose");
@@ -295,18 +297,20 @@ test_file_create(void)
/* Test create with H5F_ACC_TRUNC. This will truncate the existing file. */
fid1 = H5Fcreate(FILE1, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT);
CHECK(fid1, FAIL, "H5Fcreate");
-#ifndef NO_TRUNCATE_OPEN_FILE
- /*
- * Try to truncate first file again. This should fail because fid1 is the
- * same file and is currently open.
- */
- H5E_BEGIN_TRY
- {
- fid2 = H5Fcreate(FILE1, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT);
+
+ if (vol_cap_flags_g & H5VL_CAP_FLAG_FILE_BASIC) {
+ /*
+ * Try to truncate first file again. This should fail because fid1 is the
+ * same file and is currently open.
+ */
+ H5E_BEGIN_TRY
+ {
+ fid2 = H5Fcreate(FILE1, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT);
+ }
+ H5E_END_TRY;
+ VERIFY(fid2, FAIL, "H5Fcreate");
}
- H5E_END_TRY;
- VERIFY(fid2, FAIL, "H5Fcreate");
-#endif
+
/*
* Try with H5F_ACC_EXCL. This should fail too because the file already
* exists.
@@ -1283,30 +1287,31 @@ test_get_obj_ids(void)
/* Close the file first */
H5Fclose(fid);
-#ifndef WRONG_DATATYPE_OBJ_COUNT
- /* Get the number of all opened objects */
- oid_count = H5Fget_obj_count((hid_t)H5F_OBJ_ALL, H5F_OBJ_ALL);
- CHECK(oid_count, FAIL, "H5Fget_obj_count");
- VERIFY(oid_count, NDSETS, "H5Fget_obj_count");
- oid_list = (hid_t *)HDcalloc((size_t)oid_count, sizeof(hid_t));
- CHECK_PTR(oid_list, "HDcalloc");
+ if (vol_cap_flags_g & H5VL_CAP_FLAG_FILE_MORE) {
+ /* Get the number of all opened objects */
+ oid_count = H5Fget_obj_count((hid_t)H5F_OBJ_ALL, H5F_OBJ_ALL);
+ CHECK(oid_count, FAIL, "H5Fget_obj_count");
+ VERIFY(oid_count, NDSETS, "H5Fget_obj_count");
- /* Get the list of all opened objects */
- ret_count = H5Fget_obj_ids((hid_t)H5F_OBJ_ALL, H5F_OBJ_ALL, (size_t)oid_count, oid_list);
- CHECK(ret_count, FAIL, "H5Fget_obj_ids");
- VERIFY(ret_count, NDSETS, "H5Fget_obj_ids");
+ oid_list = (hid_t *)HDcalloc((size_t)oid_count, sizeof(hid_t));
+ CHECK_PTR(oid_list, "HDcalloc");
- H5E_BEGIN_TRY
- {
- /* Close all open objects with H5Oclose */
- for (n = 0; n < oid_count; n++)
- H5Oclose(oid_list[n]);
- }
- H5E_END_TRY;
+ /* Get the list of all opened objects */
+ ret_count = H5Fget_obj_ids((hid_t)H5F_OBJ_ALL, H5F_OBJ_ALL, (size_t)oid_count, oid_list);
+ CHECK(ret_count, FAIL, "H5Fget_obj_ids");
+ VERIFY(ret_count, NDSETS, "H5Fget_obj_ids");
- HDfree(oid_list);
-#endif
+ H5E_BEGIN_TRY
+ {
+ /* Close all open objects with H5Oclose */
+ for (n = 0; n < oid_count; n++)
+ H5Oclose(oid_list[n]);
+ }
+ H5E_END_TRY;
+
+ HDfree(oid_list);
+ }
}
/****************************************************************
@@ -2342,11 +2347,13 @@ test_file_open_overlap(void)
/* Create dataset in group w/first file ID */
did1 = H5Dcreate2(gid, DSET1, H5T_NATIVE_INT, sid, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT);
CHECK(did1, FAIL, "H5Dcreate2");
-#ifndef WRONG_DATATYPE_OBJ_COUNT
- /* Check number of objects opened in first file */
- nobjs = H5Fget_obj_count(fid1, H5F_OBJ_LOCAL | H5F_OBJ_ALL);
- VERIFY(nobjs, 3, "H5Fget_obj_count"); /* 3 == file, dataset & group */
-#endif
+
+ if (vol_cap_flags_g & H5VL_CAP_FLAG_FILE_MORE) {
+ /* Check number of objects opened in first file */
+ nobjs = H5Fget_obj_count(fid1, H5F_OBJ_LOCAL | H5F_OBJ_ALL);
+ VERIFY(nobjs, 3, "H5Fget_obj_count"); /* 3 == file, dataset & group */
+ }
+
/* Close dataset */
ret = H5Dclose(did1);
CHECK(ret, FAIL, "H5Dclose");
diff --git a/test/API/th5s.c b/test/API/th5s.c
index cb1c899..f09cfeb 100644
--- a/test/API/th5s.c
+++ b/test/API/th5s.c
@@ -115,13 +115,11 @@ struct space4_struct {
static void
test_h5s_basic(void)
{
- hid_t fid1; /* HDF5 File IDs */
- hid_t sid1, sid2; /* Dataspace ID */
- hid_t dset1; /* Dataset ID */
-#ifndef NO_VALIDATE_DATASPACE
- hid_t aid1; /* Attribute ID */
-#endif
- int rank; /* Logical rank of dataspace */
+ hid_t fid1; /* HDF5 File IDs */
+ hid_t sid1, sid2; /* Dataspace ID */
+ hid_t dset1; /* Dataset ID */
+ hid_t aid1; /* Attribute ID */
+ int rank; /* Logical rank of dataspace */
hsize_t dims1[] = {SPACE1_DIM1, SPACE1_DIM2, SPACE1_DIM3};
hsize_t dims2[] = {SPACE2_DIM1, SPACE2_DIM2, SPACE2_DIM3, SPACE2_DIM4};
hsize_t dims3[H5S_MAX_RANK + 1];
@@ -254,15 +252,18 @@ test_h5s_basic(void)
CHECK(sid1, FAIL, "H5Screate");
sid2 = H5Screate_simple(1, dims1, dims1);
CHECK(sid2, FAIL, "H5Screate");
-#ifndef NO_VALIDATE_DATASPACE
- /* This dataset's space has no extent; it should not be created */
- H5E_BEGIN_TRY
- {
- dset1 = H5Dcreate2(fid1, BASICDATASET, H5T_NATIVE_INT, sid1, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT);
+
+ if (vol_cap_flags_g & H5VL_CAP_FLAG_DATASET_BASIC) {
+ /* This dataset's space has no extent; it should not be created */
+ H5E_BEGIN_TRY
+ {
+ dset1 =
+ H5Dcreate2(fid1, BASICDATASET, H5T_NATIVE_INT, sid1, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT);
+ }
+ H5E_END_TRY
+ VERIFY(dset1, FAIL, "H5Dcreate2");
}
- H5E_END_TRY
- VERIFY(dset1, FAIL, "H5Dcreate2");
-#endif
+
dset1 = H5Dcreate2(fid1, BASICDATASET2, H5T_NATIVE_INT, sid2, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT);
CHECK(dset1, FAIL, "H5Dcreate2");
@@ -273,21 +274,23 @@ test_h5s_basic(void)
}
H5E_END_TRY
VERIFY(ret, FAIL, "H5Dwrite");
-#ifndef NO_VALIDATE_DATASPACE
- H5E_BEGIN_TRY
- {
- ret = H5Dwrite(dset1, H5T_NATIVE_INT, H5S_ALL, sid1, H5P_DEFAULT, &n);
- }
- H5E_END_TRY
- VERIFY(ret, FAIL, "H5Dwrite");
- H5E_BEGIN_TRY
- {
- ret = H5Dwrite(dset1, H5T_NATIVE_INT, sid1, sid1, H5P_DEFAULT, &n);
+ if (vol_cap_flags_g & H5VL_CAP_FLAG_DATASET_BASIC) {
+ H5E_BEGIN_TRY
+ {
+ ret = H5Dwrite(dset1, H5T_NATIVE_INT, H5S_ALL, sid1, H5P_DEFAULT, &n);
+ }
+ H5E_END_TRY
+ VERIFY(ret, FAIL, "H5Dwrite");
+
+ H5E_BEGIN_TRY
+ {
+ ret = H5Dwrite(dset1, H5T_NATIVE_INT, sid1, sid1, H5P_DEFAULT, &n);
+ }
+ H5E_END_TRY
+ VERIFY(ret, FAIL, "H5Dwrite");
}
- H5E_END_TRY
- VERIFY(ret, FAIL, "H5Dwrite");
-#endif
+
/* Try to iterate using the bad dataspace */
H5E_BEGIN_TRY
{
@@ -303,15 +306,17 @@ test_h5s_basic(void)
}
H5E_END_TRY
VERIFY(ret, FAIL, "H5Dfill");
-#ifndef NO_VALIDATE_DATASPACE
- /* Now use the bad dataspace as the space for an attribute */
- H5E_BEGIN_TRY
- {
- aid1 = H5Acreate2(dset1, BASICATTR, H5T_NATIVE_INT, sid1, H5P_DEFAULT, H5P_DEFAULT);
+
+ if ((vol_cap_flags_g & H5VL_CAP_FLAG_DATASET_BASIC) && (vol_cap_flags_g & H5VL_CAP_FLAG_ATTR_BASIC)) {
+ /* Now use the bad dataspace as the space for an attribute */
+ H5E_BEGIN_TRY
+ {
+ aid1 = H5Acreate2(dset1, BASICATTR, H5T_NATIVE_INT, sid1, H5P_DEFAULT, H5P_DEFAULT);
+ }
+ H5E_END_TRY
+ VERIFY(aid1, FAIL, "H5Acreate2");
}
- H5E_END_TRY
- VERIFY(aid1, FAIL, "H5Acreate2");
-#endif
+
/* Make sure that dataspace reads using the bad dataspace fail */
H5E_BEGIN_TRY
{
@@ -319,21 +324,23 @@ test_h5s_basic(void)
}
H5E_END_TRY
VERIFY(ret, FAIL, "H5Dread");
-#ifndef NO_VALIDATE_DATASPACE
- H5E_BEGIN_TRY
- {
- ret = H5Dread(dset1, H5T_NATIVE_INT, H5S_ALL, sid1, H5P_DEFAULT, &n);
- }
- H5E_END_TRY
- VERIFY(ret, FAIL, "H5Dread");
- H5E_BEGIN_TRY
- {
- ret = H5Dread(dset1, H5T_NATIVE_INT, sid1, sid1, H5P_DEFAULT, &n);
+ if (vol_cap_flags_g & H5VL_CAP_FLAG_DATASET_BASIC) {
+ H5E_BEGIN_TRY
+ {
+ ret = H5Dread(dset1, H5T_NATIVE_INT, H5S_ALL, sid1, H5P_DEFAULT, &n);
+ }
+ H5E_END_TRY
+ VERIFY(ret, FAIL, "H5Dread");
+
+ H5E_BEGIN_TRY
+ {
+ ret = H5Dread(dset1, H5T_NATIVE_INT, sid1, sid1, H5P_DEFAULT, &n);
+ }
+ H5E_END_TRY
+ VERIFY(ret, FAIL, "H5Dread");
}
- H5E_END_TRY
- VERIFY(ret, FAIL, "H5Dread");
-#endif
+
/* Clean up */
ret = H5Dclose(dset1);
CHECK(ret, FAIL, "H5Dclose");
@@ -577,35 +584,33 @@ test_h5s_null(void)
static void
test_h5s_zero_dim(void)
{
- hid_t fid1; /* HDF5 File IDs */
- hid_t sid1, attr_sid; /* Dataspace ID */
- hid_t sid_chunk; /* Dataspace ID for chunked dataset */
- hid_t dset1; /* Dataset ID */
- hid_t plist_id; /* Dataset creation property list */
- hid_t attr; /* Attribute ID */
- int rank; /* Logical rank of dataspace */
- hsize_t dims1[] = {0, SPACE1_DIM2, SPACE1_DIM3};
- hsize_t max_dims[] = {SPACE1_DIM1 + 1, SPACE1_DIM2, SPACE1_DIM3};
- hsize_t extend_dims[] = {SPACE1_DIM1, SPACE1_DIM2, SPACE1_DIM3};
- hsize_t chunk_dims[] = {SPACE1_DIM1, SPACE1_DIM2 / 3, SPACE1_DIM3};
- hsize_t tdims[SPACE1_RANK]; /* Dimension array to test with */
- int wdata[SPACE1_DIM2][SPACE1_DIM3];
- int rdata[SPACE1_DIM2][SPACE1_DIM3];
- short wdata_short[SPACE1_DIM2][SPACE1_DIM3];
- short rdata_short[SPACE1_DIM2][SPACE1_DIM3];
- int wdata_real[SPACE1_DIM1][SPACE1_DIM2][SPACE1_DIM3];
- int rdata_real[SPACE1_DIM1][SPACE1_DIM2][SPACE1_DIM3];
-#ifndef NO_CHECK_SELECTION_BOUNDS
- int val = 3;
- hsize_t start[] = {0, 0, 0};
- hsize_t count[] = {3, 15, 13};
- hsize_t coord[1][3]; /* Coordinates for point selection */
-#endif
- hssize_t nelem; /* Number of elements */
- H5S_sel_type sel_type; /* Type of selection currently */
- H5S_class_t stype; /* dataspace type */
- H5D_alloc_time_t alloc_time; /* Space allocation time */
- herr_t ret; /* Generic return value */
+ hid_t fid1; /* HDF5 File IDs */
+ hid_t sid1, attr_sid; /* Dataspace ID */
+ hid_t sid_chunk; /* Dataspace ID for chunked dataset */
+ hid_t dset1; /* Dataset ID */
+ hid_t plist_id; /* Dataset creation property list */
+ hid_t attr; /* Attribute ID */
+ int rank; /* Logical rank of dataspace */
+ hsize_t dims1[] = {0, SPACE1_DIM2, SPACE1_DIM3};
+ hsize_t max_dims[] = {SPACE1_DIM1 + 1, SPACE1_DIM2, SPACE1_DIM3};
+ hsize_t extend_dims[] = {SPACE1_DIM1, SPACE1_DIM2, SPACE1_DIM3};
+ hsize_t chunk_dims[] = {SPACE1_DIM1, SPACE1_DIM2 / 3, SPACE1_DIM3};
+ hsize_t tdims[SPACE1_RANK]; /* Dimension array to test with */
+ int wdata[SPACE1_DIM2][SPACE1_DIM3];
+ int rdata[SPACE1_DIM2][SPACE1_DIM3];
+ short wdata_short[SPACE1_DIM2][SPACE1_DIM3];
+ short rdata_short[SPACE1_DIM2][SPACE1_DIM3];
+ int wdata_real[SPACE1_DIM1][SPACE1_DIM2][SPACE1_DIM3];
+ int rdata_real[SPACE1_DIM1][SPACE1_DIM2][SPACE1_DIM3];
+ int val = 3;
+ hsize_t start[] = {0, 0, 0};
+ hsize_t count[] = {3, 15, 13};
+ hsize_t coord[1][3]; /* Coordinates for point selection */
+ hssize_t nelem; /* Number of elements */
+ H5S_sel_type sel_type; /* Type of selection currently */
+ H5S_class_t stype; /* dataspace type */
+ H5D_alloc_time_t alloc_time; /* Space allocation time */
+ herr_t ret; /* Generic return value */
unsigned int i, j, k;
/* Output message about test being performed */
@@ -743,38 +748,42 @@ test_h5s_zero_dim(void)
}
}
}
-#ifndef NO_CHECK_SELECTION_BOUNDS
- /* Select a hyperslab beyond its current dimension sizes, then try to write
- * the data. It should fail. */
- ret = H5Sselect_hyperslab(sid1, H5S_SELECT_SET, start, NULL, count, NULL);
- CHECK(ret, FAIL, "H5Sselect_hyperslab");
- H5E_BEGIN_TRY
- {
- ret = H5Dwrite(dset1, H5T_NATIVE_INT, H5S_ALL, sid1, H5P_DEFAULT, wdata);
+ if (vol_cap_flags_g & H5VL_CAP_FLAG_DATASET_BASIC) {
+ /* Select a hyperslab beyond its current dimension sizes, then try to write
+ * the data. It should fail. */
+ ret = H5Sselect_hyperslab(sid1, H5S_SELECT_SET, start, NULL, count, NULL);
+ CHECK(ret, FAIL, "H5Sselect_hyperslab");
+
+ H5E_BEGIN_TRY
+ {
+ ret = H5Dwrite(dset1, H5T_NATIVE_INT, H5S_ALL, sid1, H5P_DEFAULT, wdata);
+ }
+ H5E_END_TRY;
+ VERIFY(ret, FAIL, "H5Dwrite");
}
- H5E_END_TRY;
- VERIFY(ret, FAIL, "H5Dwrite");
-#endif
+
/* Change to "none" selection */
ret = H5Sselect_none(sid1);
CHECK(ret, FAIL, "H5Sselect_none");
-#ifndef NO_CHECK_SELECTION_BOUNDS
- /* Select a point beyond the dimension size, then try to write the data.
- * It should fail. */
- coord[0][0] = 2;
- coord[0][1] = 5;
- coord[0][2] = 3;
- ret = H5Sselect_elements(sid1, H5S_SELECT_SET, (size_t)1, (const hsize_t *)coord);
- CHECK(ret, FAIL, "H5Sselect_elements");
- H5E_BEGIN_TRY
- {
- ret = H5Dwrite(dset1, H5T_NATIVE_INT, H5S_ALL, sid1, H5P_DEFAULT, &val);
+ if (vol_cap_flags_g & H5VL_CAP_FLAG_DATASET_BASIC) {
+ /* Select a point beyond the dimension size, then try to write the data.
+ * It should fail. */
+ coord[0][0] = 2;
+ coord[0][1] = 5;
+ coord[0][2] = 3;
+ ret = H5Sselect_elements(sid1, H5S_SELECT_SET, (size_t)1, (const hsize_t *)coord);
+ CHECK(ret, FAIL, "H5Sselect_elements");
+
+ H5E_BEGIN_TRY
+ {
+ ret = H5Dwrite(dset1, H5T_NATIVE_INT, H5S_ALL, sid1, H5P_DEFAULT, &val);
+ }
+ H5E_END_TRY;
+ VERIFY(ret, FAIL, "H5Dwrite");
}
- H5E_END_TRY;
- VERIFY(ret, FAIL, "H5Dwrite");
-#endif
+
/* Restore the selection to all */
ret = H5Sselect_all(sid1);
CHECK(ret, FAIL, "H5Sselect_all");
@@ -864,17 +873,18 @@ test_h5s_zero_dim(void)
HDprintf("element [%d][%d] is %d but should have been 7\n", i, j, rdata[i][j]);
}
}
-#ifndef NO_CHECK_SELECTION_BOUNDS
- /* Now extend the first dimension size of the dataset to SPACE1_DIM1*3 past the maximal size.
- * It is supposed to fail. */
- extend_dims[0] = SPACE1_DIM1 * 3;
- H5E_BEGIN_TRY
- {
- ret = H5Dset_extent(dset1, extend_dims);
+ if ((vol_cap_flags_g & H5VL_CAP_FLAG_DATASET_BASIC) &&
+ (vol_cap_flags_g & H5VL_CAP_FLAG_DATASET_MORE)) {
+ /* Now extend the first dimension size of the dataset to SPACE1_DIM1*3 past the maximal size.
+ * It is supposed to fail. */
+ extend_dims[0] = SPACE1_DIM1 * 3;
+ H5E_BEGIN_TRY
+ {
+ ret = H5Dset_extent(dset1, extend_dims);
+ }
+ H5E_END_TRY;
+ VERIFY(ret, FAIL, "H5Dset_extent");
}
- H5E_END_TRY;
- VERIFY(ret, FAIL, "H5Dset_extent");
-#endif
ret = H5Pclose(plist_id);
CHECK(ret, FAIL, "H5Pclose");
diff --git a/test/API/titerate.c b/test/API/titerate.c
index 6cbebbd..6d86130 100644
--- a/test/API/titerate.c
+++ b/test/API/titerate.c
@@ -60,13 +60,11 @@ typedef struct searched_err_t {
static int find_err_msg_cb(unsigned n, const H5E_error2_t *err_desc, void *_client_data);
#endif
/* Local functions */
-int iter_strcmp(const void *s1, const void *s2);
-int iter_strcmp2(const void *s1, const void *s2);
-#ifndef NO_ITERATION_RESTART
+int iter_strcmp(const void *s1, const void *s2);
+int iter_strcmp2(const void *s1, const void *s2);
static herr_t liter_cb(hid_t group, const char *name, const H5L_info2_t *info, void *op_data);
static herr_t liter_cb2(hid_t group, const char *name, const H5L_info2_t *info, void *op_data);
-#endif
-herr_t aiter_cb(hid_t group, const char *name, const H5A_info_t *ainfo, void *op_data);
+herr_t aiter_cb(hid_t group, const char *name, const H5A_info_t *ainfo, void *op_data);
/****************************************************************
**
@@ -84,7 +82,6 @@ iter_strcmp(const void *s1, const void *s2)
** liter_cb(): Custom link iteration callback routine.
**
****************************************************************/
-#ifndef NO_ITERATION_RESTART
static herr_t
liter_cb(hid_t H5_ATTR_UNUSED group, const char *name, const H5L_info2_t H5_ATTR_UNUSED *link_info,
void *op_data)
@@ -93,6 +90,13 @@ liter_cb(hid_t H5_ATTR_UNUSED group, const char *name, const H5L_info2_t H5_ATTR
static int count = 0;
static int count2 = 0;
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_ITERATE)) {
+ SKIPPED();
+ HDprintf(" API functions for iterate aren't "
+ "supported with this connector\n");
+ return 1;
+ }
+
HDstrcpy(info->name, name);
switch (info->command) {
@@ -115,7 +119,6 @@ liter_cb(hid_t H5_ATTR_UNUSED group, const char *name, const H5L_info2_t H5_ATTR
return (-1);
} /* end switch */
} /* end liter_cb() */
-#endif
/****************************************************************
**
@@ -125,7 +128,6 @@ liter_cb(hid_t H5_ATTR_UNUSED group, const char *name, const H5L_info2_t H5_ATTR
static void
test_iter_group(hid_t fapl, hbool_t new_format)
{
-#ifndef NO_ITERATION_RESTART
hid_t file; /* File ID */
hid_t dataset; /* Dataset ID */
hid_t datatype; /* Common datatype ID */
@@ -139,249 +141,248 @@ test_iter_group(hid_t fapl, hbool_t new_format)
iter_info info; /* Custom iteration information */
H5G_info_t ginfo; /* Buffer for querying object's info */
herr_t ret; /* Generic return value */
-#else
- (void)fapl;
- (void)new_format;
-#endif
/* Output message about test being performed */
- MESSAGE(
- 5, ("Testing Group Iteration Functionality - SKIPPED for now due to no iteration restart support\n"));
-#ifndef NO_ITERATION_RESTART
- /* Create the test file with the datasets */
- file = H5Fcreate(DATAFILE, H5F_ACC_TRUNC, H5P_DEFAULT, fapl);
- CHECK(file, FAIL, "H5Fcreate");
-
- /* Test iterating over empty group */
- info.command = RET_ZERO;
- idx = 0;
- ret = H5Literate2(file, H5_INDEX_NAME, H5_ITER_INC, &idx, liter_cb, &info);
- VERIFY(ret, SUCCEED, "H5Literate2");
+ MESSAGE(5, ("Testing Group Iteration Functionality\n"));
- datatype = H5Tcopy(H5T_NATIVE_INT);
- CHECK(datatype, FAIL, "H5Tcopy");
+ if ((vol_cap_flags_g & H5VL_CAP_FLAG_ITERATE) && (vol_cap_flags_g & H5VL_CAP_FLAG_FILE_BASIC) &&
+ (vol_cap_flags_g & H5VL_CAP_FLAG_GROUP_BASIC) && (vol_cap_flags_g & H5VL_CAP_FLAG_DATASET_BASIC) &&
+ (vol_cap_flags_g & H5VL_CAP_FLAG_STORED_DATATYPES) && (vol_cap_flags_g & H5VL_CAP_FLAG_GROUP_MORE) &&
+ (vol_cap_flags_g & H5VL_CAP_FLAG_LINK_MORE)) {
+ /* Create the test file with the datasets */
+ file = H5Fcreate(DATAFILE, H5F_ACC_TRUNC, H5P_DEFAULT, fapl);
+ CHECK(file, FAIL, "H5Fcreate");
- filespace = H5Screate(H5S_SCALAR);
- CHECK(filespace, FAIL, "H5Screate");
+ /* Test iterating over empty group */
+ info.command = RET_ZERO;
+ idx = 0;
+ ret = H5Literate2(file, H5_INDEX_NAME, H5_ITER_INC, &idx, liter_cb, &info);
+ VERIFY(ret, SUCCEED, "H5Literate2");
- for (i = 0; i < NDATASETS; i++) {
- HDsnprintf(name, sizeof(name), "Dataset %d", i);
- dataset = H5Dcreate2(file, name, datatype, filespace, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT);
- CHECK(dataset, FAIL, "H5Dcreate2");
+ datatype = H5Tcopy(H5T_NATIVE_INT);
+ CHECK(datatype, FAIL, "H5Tcopy");
- /* Keep a copy of the dataset names around for later */
- lnames[i] = HDstrdup(name);
- CHECK_PTR(lnames[i], "strdup");
+ filespace = H5Screate(H5S_SCALAR);
+ CHECK(filespace, FAIL, "H5Screate");
- ret = H5Dclose(dataset);
- CHECK(ret, FAIL, "H5Dclose");
- } /* end for */
+ for (i = 0; i < NDATASETS; i++) {
+ HDsnprintf(name, sizeof(name), "Dataset %d", i);
+ dataset = H5Dcreate2(file, name, datatype, filespace, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT);
+ CHECK(dataset, FAIL, "H5Dcreate2");
- /* Create a group and named datatype under root group for testing */
- grp = H5Gcreate2(file, "grp", H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT);
- CHECK(ret, FAIL, "H5Gcreate2");
+ /* Keep a copy of the dataset names around for later */
+ lnames[i] = HDstrdup(name);
+ CHECK_PTR(lnames[i], "strdup");
- lnames[NDATASETS] = HDstrdup("grp");
- CHECK_PTR(lnames[NDATASETS], "strdup");
+ ret = H5Dclose(dataset);
+ CHECK(ret, FAIL, "H5Dclose");
+ } /* end for */
- ret = H5Tcommit2(file, "dtype", datatype, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT);
- CHECK(ret, FAIL, "H5Tcommit2");
+ /* Create a group and named datatype under root group for testing */
+ grp = H5Gcreate2(file, "grp", H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT);
+ CHECK(ret, FAIL, "H5Gcreate2");
- lnames[NDATASETS + 1] = HDstrdup("dtype");
- CHECK_PTR(lnames[NDATASETS], "strdup");
+ lnames[NDATASETS] = HDstrdup("grp");
+ CHECK_PTR(lnames[NDATASETS], "strdup");
- /* Close everything up */
- ret = H5Tclose(datatype);
- CHECK(ret, FAIL, "H5Tclose");
+ ret = H5Tcommit2(file, "dtype", datatype, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT);
+ CHECK(ret, FAIL, "H5Tcommit2");
- ret = H5Gclose(grp);
- CHECK(ret, FAIL, "H5Gclose");
+ lnames[NDATASETS + 1] = HDstrdup("dtype");
+ CHECK_PTR(lnames[NDATASETS], "strdup");
- ret = H5Sclose(filespace);
- CHECK(ret, FAIL, "H5Sclose");
+ /* Close everything up */
+ ret = H5Tclose(datatype);
+ CHECK(ret, FAIL, "H5Tclose");
- ret = H5Fclose(file);
- CHECK(ret, FAIL, "H5Fclose");
+ ret = H5Gclose(grp);
+ CHECK(ret, FAIL, "H5Gclose");
- /* Sort the dataset names */
- HDqsort(lnames, (size_t)(NDATASETS + 2), sizeof(char *), iter_strcmp);
+ ret = H5Sclose(filespace);
+ CHECK(ret, FAIL, "H5Sclose");
- /* Iterate through the datasets in the root group in various ways */
- file = H5Fopen(DATAFILE, H5F_ACC_RDONLY, fapl);
- CHECK(file, FAIL, "H5Fopen");
+ ret = H5Fclose(file);
+ CHECK(ret, FAIL, "H5Fclose");
- /* These two functions, H5Oget_info_by_idx and H5Lget_name_by_idx, actually
- * iterate through B-tree for group members in internal library design.
- */
- root_group = H5Gopen2(file, "/", H5P_DEFAULT);
- CHECK(root_group, FAIL, "H5Gopen2");
+ /* Sort the dataset names */
+ HDqsort(lnames, (size_t)(NDATASETS + 2), sizeof(char *), iter_strcmp);
- ret = H5Gget_info(root_group, &ginfo);
- CHECK(ret, FAIL, "H5Gget_info");
- VERIFY(ginfo.nlinks, (NDATASETS + 2), "H5Gget_info");
+ /* Iterate through the datasets in the root group in various ways */
+ file = H5Fopen(DATAFILE, H5F_ACC_RDONLY, fapl);
+ CHECK(file, FAIL, "H5Fopen");
- for (i = 0; i < (int)ginfo.nlinks; i++) {
- H5O_info2_t oinfo; /* Object info */
+ /* These two functions, H5Oget_info_by_idx and H5Lget_name_by_idx, actually
+ * iterate through B-tree for group members in internal library design.
+ */
+ root_group = H5Gopen2(file, "/", H5P_DEFAULT);
+ CHECK(root_group, FAIL, "H5Gopen2");
- ret = (herr_t)H5Lget_name_by_idx(root_group, ".", H5_INDEX_NAME, H5_ITER_INC, (hsize_t)i,
- dataset_name, (size_t)NAMELEN, H5P_DEFAULT);
- CHECK(ret, FAIL, "H5Lget_name_by_idx");
+ ret = H5Gget_info(root_group, &ginfo);
+ CHECK(ret, FAIL, "H5Gget_info");
+ VERIFY(ginfo.nlinks, (NDATASETS + 2), "H5Gget_info");
- //! [H5Oget_info_by_idx3_snip]
+ for (i = 0; i < (int)ginfo.nlinks; i++) {
+ H5O_info2_t oinfo; /* Object info */
- ret = H5Oget_info_by_idx3(root_group, ".", H5_INDEX_NAME, H5_ITER_INC, (hsize_t)i, &oinfo,
- H5O_INFO_BASIC, H5P_DEFAULT);
- CHECK(ret, FAIL, "H5Oget_info_by_idx");
+ ret = (herr_t)H5Lget_name_by_idx(root_group, ".", H5_INDEX_NAME, H5_ITER_INC, (hsize_t)i,
+ dataset_name, (size_t)NAMELEN, H5P_DEFAULT);
+ CHECK(ret, FAIL, "H5Lget_name_by_idx");
- //! [H5Oget_info_by_idx3_snip]
+ //! [H5Oget_info_by_idx3_snip]
- } /* end for */
+ ret = H5Oget_info_by_idx3(root_group, ".", H5_INDEX_NAME, H5_ITER_INC, (hsize_t)i, &oinfo,
+ H5O_INFO_BASIC, H5P_DEFAULT);
+ CHECK(ret, FAIL, "H5Oget_info_by_idx");
- H5E_BEGIN_TRY
- {
- ret =
- (herr_t)H5Lget_name_by_idx(root_group, ".", H5_INDEX_NAME, H5_ITER_INC, (hsize_t)(NDATASETS + 3),
- dataset_name, (size_t)NAMELEN, H5P_DEFAULT);
- }
- H5E_END_TRY;
- VERIFY(ret, FAIL, "H5Lget_name_by_idx");
+ //! [H5Oget_info_by_idx3_snip]
- ret = H5Gclose(root_group);
- CHECK(ret, FAIL, "H5Gclose");
+ } /* end for */
- /* These two functions, H5Oget_info_by_idx and H5Lget_name_by_idx, actually
- * iterate through B-tree for group members in internal library design.
- * (Same as test above, but with the file ID instead of opening the root group)
- */
- ret = H5Gget_info(file, &ginfo);
- CHECK(ret, FAIL, "H5Gget_info");
- VERIFY(ginfo.nlinks, NDATASETS + 2, "H5Gget_info");
+ H5E_BEGIN_TRY
+ {
+ ret = (herr_t)H5Lget_name_by_idx(root_group, ".", H5_INDEX_NAME, H5_ITER_INC,
+ (hsize_t)(NDATASETS + 3), dataset_name, (size_t)NAMELEN,
+ H5P_DEFAULT);
+ }
+ H5E_END_TRY;
+ VERIFY(ret, FAIL, "H5Lget_name_by_idx");
- for (i = 0; i < (int)ginfo.nlinks; i++) {
- H5O_info2_t oinfo; /* Object info */
+ ret = H5Gclose(root_group);
+ CHECK(ret, FAIL, "H5Gclose");
- ret = (herr_t)H5Lget_name_by_idx(file, ".", H5_INDEX_NAME, H5_ITER_INC, (hsize_t)i, dataset_name,
- (size_t)NAMELEN, H5P_DEFAULT);
- CHECK(ret, FAIL, "H5Lget_name_by_idx");
+ /* These two functions, H5Oget_info_by_idx and H5Lget_name_by_idx, actually
+ * iterate through B-tree for group members in internal library design.
+ * (Same as test above, but with the file ID instead of opening the root group)
+ */
+ ret = H5Gget_info(file, &ginfo);
+ CHECK(ret, FAIL, "H5Gget_info");
+ VERIFY(ginfo.nlinks, NDATASETS + 2, "H5Gget_info");
- ret = H5Oget_info_by_idx3(file, ".", H5_INDEX_NAME, H5_ITER_INC, (hsize_t)i, &oinfo, H5O_INFO_BASIC,
- H5P_DEFAULT);
- CHECK(ret, FAIL, "H5Oget_info_by_idx3");
- } /* end for */
+ for (i = 0; i < (int)ginfo.nlinks; i++) {
+ H5O_info2_t oinfo; /* Object info */
- H5E_BEGIN_TRY
- {
- ret = (herr_t)H5Lget_name_by_idx(file, ".", H5_INDEX_NAME, H5_ITER_INC, (hsize_t)(NDATASETS + 3),
- dataset_name, (size_t)NAMELEN, H5P_DEFAULT);
- }
- H5E_END_TRY;
- VERIFY(ret, FAIL, "H5Lget_name_by_idx");
+ ret = (herr_t)H5Lget_name_by_idx(file, ".", H5_INDEX_NAME, H5_ITER_INC, (hsize_t)i, dataset_name,
+ (size_t)NAMELEN, H5P_DEFAULT);
+ CHECK(ret, FAIL, "H5Lget_name_by_idx");
- /* Test invalid indices for starting iteration */
- info.command = RET_ZERO;
- idx = (hsize_t)-1;
- H5E_BEGIN_TRY
- {
- ret = H5Literate2(file, H5_INDEX_NAME, H5_ITER_INC, &idx, liter_cb, &info);
- }
- H5E_END_TRY;
- VERIFY(ret, FAIL, "H5Literate2");
+ ret = H5Oget_info_by_idx3(file, ".", H5_INDEX_NAME, H5_ITER_INC, (hsize_t)i, &oinfo,
+ H5O_INFO_BASIC, H5P_DEFAULT);
+ CHECK(ret, FAIL, "H5Oget_info_by_idx3");
+ } /* end for */
+
+ H5E_BEGIN_TRY
+ {
+ ret = (herr_t)H5Lget_name_by_idx(file, ".", H5_INDEX_NAME, H5_ITER_INC, (hsize_t)(NDATASETS + 3),
+ dataset_name, (size_t)NAMELEN, H5P_DEFAULT);
+ }
+ H5E_END_TRY;
+ VERIFY(ret, FAIL, "H5Lget_name_by_idx");
+
+ /* Test invalid indices for starting iteration */
+ info.command = RET_ZERO;
+ idx = (hsize_t)-1;
+ H5E_BEGIN_TRY
+ {
+ ret = H5Literate2(file, H5_INDEX_NAME, H5_ITER_INC, &idx, liter_cb, &info);
+ }
+ H5E_END_TRY;
+ VERIFY(ret, FAIL, "H5Literate2");
+
+ /* Test skipping exactly as many entries as in the group */
+ idx = NDATASETS + 2;
+ H5E_BEGIN_TRY
+ {
+ ret = H5Literate2(file, H5_INDEX_NAME, H5_ITER_INC, &idx, liter_cb, &info);
+ }
+ H5E_END_TRY;
+ VERIFY(ret, FAIL, "H5Literate2");
+
+ /* Test skipping more entries than are in the group */
+ idx = NDATASETS + 3;
+ H5E_BEGIN_TRY
+ {
+ ret = H5Literate2(file, H5_INDEX_NAME, H5_ITER_INC, &idx, liter_cb, &info);
+ }
+ H5E_END_TRY;
+ VERIFY(ret, FAIL, "H5Literate2");
+
+ /* Test all objects in group, when callback always returns 0 */
+ info.command = RET_ZERO;
+ idx = 0;
+ if ((ret = H5Literate2(file, H5_INDEX_NAME, H5_ITER_INC, &idx, liter_cb, &info)) > 0)
+ TestErrPrintf("Group iteration function didn't return zero correctly!\n");
+
+ /* Test all objects in group, when callback always returns 1 */
+ /* This also tests the "restarting" ability, because the index changes */
+ info.command = RET_TWO;
+ i = 0;
+ idx = 0;
+ memset(info.name, 0, NAMELEN);
+ while ((ret = H5Literate2(file, H5_INDEX_NAME, H5_ITER_INC, &idx, liter_cb, &info)) > 0) {
+ /* Verify return value from iterator gets propagated correctly */
+ VERIFY(ret, 2, "H5Literate2");
+
+ /* Increment the number of times "2" is returned */
+ i++;
+
+ /* Verify that the index is the correct value */
+ VERIFY(idx, (hsize_t)i, "H5Literate2");
+ if (idx != (hsize_t)i)
+ break;
+ if (idx > (NDATASETS + 2))
+ TestErrPrintf("Group iteration function walked too far!\n");
- /* Test skipping exactly as many entries as in the group */
- idx = NDATASETS + 2;
- H5E_BEGIN_TRY
- {
- ret = H5Literate2(file, H5_INDEX_NAME, H5_ITER_INC, &idx, liter_cb, &info);
- }
- H5E_END_TRY;
- VERIFY(ret, FAIL, "H5Literate2");
+ /* Verify that the correct name is retrieved */
+ if (HDstrncmp(info.name, lnames[(size_t)(idx - 1)], NAMELEN) != 0)
+ TestErrPrintf(
+ "Group iteration function didn't return name correctly for link - lnames[%u] = '%s'!\n",
+ (unsigned)(idx - 1), lnames[(size_t)(idx - 1)]);
+ } /* end while */
+ VERIFY(ret, -1, "H5Literate2");
+
+ if (i != (NDATASETS + 2))
+ TestErrPrintf("%u: Group iteration function didn't perform multiple iterations correctly!\n",
+ __LINE__);
+
+ /* Test all objects in group, when callback changes return value */
+ /* This also tests the "restarting" ability, because the index changes */
+ info.command = new_format ? RET_CHANGE2 : RET_CHANGE;
+ i = 0;
+ idx = 0;
+ memset(info.name, 0, NAMELEN);
+ while ((ret = H5Literate2(file, H5_INDEX_NAME, H5_ITER_INC, &idx, liter_cb, &info)) >= 0) {
+ /* Verify return value from iterator gets propagated correctly */
+ VERIFY(ret, 1, "H5Literate2");
+
+ /* Increment the number of times "1" is returned */
+ i++;
+
+ /* Verify that the index is the correct value */
+ VERIFY(idx, (hsize_t)(i + 10), "H5Literate2");
+ if (idx != (hsize_t)(i + 10))
+ break;
+ if (idx > (NDATASETS + 2))
+ TestErrPrintf("Group iteration function walked too far!\n");
- /* Test skipping more entries than are in the group */
- idx = NDATASETS + 3;
- H5E_BEGIN_TRY
- {
- ret = H5Literate2(file, H5_INDEX_NAME, H5_ITER_INC, &idx, liter_cb, &info);
+ /* Verify that the correct name is retrieved */
+ if (HDstrncmp(info.name, lnames[(size_t)(idx - 1)], NAMELEN) != 0)
+ TestErrPrintf(
+ "Group iteration function didn't return name correctly for link - lnames[%u] = '%s'!\n",
+ (unsigned)(idx - 1), lnames[(size_t)(idx - 1)]);
+ } /* end while */
+ VERIFY(ret, -1, "H5Literate2");
+
+ if (i != 42 || idx != 52)
+ TestErrPrintf("%u: Group iteration function didn't perform multiple iterations correctly!\n",
+ __LINE__);
+
+ ret = H5Fclose(file);
+ CHECK(ret, FAIL, "H5Fclose");
+
+ /* Free the dataset names */
+ for (i = 0; i < (NDATASETS + 2); i++)
+ HDfree(lnames[i]);
}
- H5E_END_TRY;
- VERIFY(ret, FAIL, "H5Literate2");
-
- /* Test all objects in group, when callback always returns 0 */
- info.command = RET_ZERO;
- idx = 0;
- if ((ret = H5Literate2(file, H5_INDEX_NAME, H5_ITER_INC, &idx, liter_cb, &info)) > 0)
- TestErrPrintf("Group iteration function didn't return zero correctly!\n");
-
- /* Test all objects in group, when callback always returns 1 */
- /* This also tests the "restarting" ability, because the index changes */
- info.command = RET_TWO;
- i = 0;
- idx = 0;
- memset(info.name, 0, NAMELEN);
- while ((ret = H5Literate2(file, H5_INDEX_NAME, H5_ITER_INC, &idx, liter_cb, &info)) > 0) {
- /* Verify return value from iterator gets propagated correctly */
- VERIFY(ret, 2, "H5Literate2");
-
- /* Increment the number of times "2" is returned */
- i++;
-
- /* Verify that the index is the correct value */
- VERIFY(idx, (hsize_t)i, "H5Literate2");
- if (idx != (hsize_t)i)
- break;
- if (idx > (NDATASETS + 2))
- TestErrPrintf("Group iteration function walked too far!\n");
-
- /* Verify that the correct name is retrieved */
- if (HDstrncmp(info.name, lnames[(size_t)(idx - 1)], NAMELEN) != 0)
- TestErrPrintf(
- "Group iteration function didn't return name correctly for link - lnames[%u] = '%s'!\n",
- (unsigned)(idx - 1), lnames[(size_t)(idx - 1)]);
- } /* end while */
- VERIFY(ret, -1, "H5Literate2");
-
- if (i != (NDATASETS + 2))
- TestErrPrintf("%u: Group iteration function didn't perform multiple iterations correctly!\n",
- __LINE__);
-
- /* Test all objects in group, when callback changes return value */
- /* This also tests the "restarting" ability, because the index changes */
- info.command = new_format ? RET_CHANGE2 : RET_CHANGE;
- i = 0;
- idx = 0;
- memset(info.name, 0, NAMELEN);
- while ((ret = H5Literate2(file, H5_INDEX_NAME, H5_ITER_INC, &idx, liter_cb, &info)) >= 0) {
- /* Verify return value from iterator gets propagated correctly */
- VERIFY(ret, 1, "H5Literate2");
-
- /* Increment the number of times "1" is returned */
- i++;
-
- /* Verify that the index is the correct value */
- VERIFY(idx, (hsize_t)(i + 10), "H5Literate2");
- if (idx != (hsize_t)(i + 10))
- break;
- if (idx > (NDATASETS + 2))
- TestErrPrintf("Group iteration function walked too far!\n");
-
- /* Verify that the correct name is retrieved */
- if (HDstrncmp(info.name, lnames[(size_t)(idx - 1)], NAMELEN) != 0)
- TestErrPrintf(
- "Group iteration function didn't return name correctly for link - lnames[%u] = '%s'!\n",
- (unsigned)(idx - 1), lnames[(size_t)(idx - 1)]);
- } /* end while */
- VERIFY(ret, -1, "H5Literate2");
-
- if (i != 42 || idx != 52)
- TestErrPrintf("%u: Group iteration function didn't perform multiple iterations correctly!\n",
- __LINE__);
-
- ret = H5Fclose(file);
- CHECK(ret, FAIL, "H5Fclose");
-
- /* Free the dataset names */
- for (i = 0; i < (NDATASETS + 2); i++)
- HDfree(lnames[i]);
-#endif
} /* test_iter_group() */
/****************************************************************
@@ -427,7 +428,6 @@ aiter_cb(hid_t H5_ATTR_UNUSED group, const char *name, const H5A_info_t H5_ATTR_
static void
test_iter_attr(hid_t fapl, hbool_t new_format)
{
-#ifndef NO_ITERATION_RESTART
hid_t file; /* File ID */
hid_t dataset; /* Common Dataset ID */
hid_t filespace; /* Common dataspace ID */
@@ -438,161 +438,160 @@ test_iter_attr(hid_t fapl, hbool_t new_format)
char *anames[NATTR]; /* Names of the attributes created */
iter_info info; /* Custom iteration information */
herr_t ret; /* Generic return value */
-#else
- (void)fapl;
- (void)new_format;
-#endif
/* Output message about test being performed */
- MESSAGE(
- 5,
- ("Testing Attribute Iteration Functionality - SKIPPED for no due to no iteration restart support\n"));
-#ifndef NO_ITERATION_RESTART
- HDmemset(&info, 0, sizeof(iter_info));
-
- /* Create the test file with the datasets */
- file = H5Fcreate(DATAFILE, H5F_ACC_TRUNC, H5P_DEFAULT, fapl);
- CHECK(file, FAIL, "H5Fcreate");
-
- filespace = H5Screate(H5S_SCALAR);
- CHECK(filespace, FAIL, "H5Screate");
-
- dataset = H5Dcreate2(file, "Dataset", H5T_NATIVE_INT, filespace, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT);
- CHECK(dataset, FAIL, "H5Dcreate2");
-
- for (i = 0; i < NATTR; i++) {
- HDsnprintf(name, sizeof(name), "Attribute %02d", i);
- attribute = H5Acreate2(dataset, name, H5T_NATIVE_INT, filespace, H5P_DEFAULT, H5P_DEFAULT);
- CHECK(attribute, FAIL, "H5Acreate2");
+ MESSAGE(5, ("Testing Attribute Iteration Functionality\n"));
- /* Keep a copy of the attribute names around for later */
- anames[i] = HDstrdup(name);
- CHECK_PTR(anames[i], "strdup");
+ if ((vol_cap_flags_g & H5VL_CAP_FLAG_ITERATE) && (vol_cap_flags_g & H5VL_CAP_FLAG_FILE_BASIC) &&
+ (vol_cap_flags_g & H5VL_CAP_FLAG_DATASET_BASIC) && (vol_cap_flags_g & H5VL_CAP_FLAG_ATTR_BASIC)) {
+ HDmemset(&info, 0, sizeof(iter_info));
- ret = H5Aclose(attribute);
- CHECK(ret, FAIL, "H5Aclose");
- } /* end for */
+ /* Create the test file with the datasets */
+ file = H5Fcreate(DATAFILE, H5F_ACC_TRUNC, H5P_DEFAULT, fapl);
+ CHECK(file, FAIL, "H5Fcreate");
- /* Close everything up */
- ret = H5Dclose(dataset);
- CHECK(ret, FAIL, "H5Dclose");
+ filespace = H5Screate(H5S_SCALAR);
+ CHECK(filespace, FAIL, "H5Screate");
- ret = H5Sclose(filespace);
- CHECK(ret, FAIL, "H5Sclose");
-
- ret = H5Fclose(file);
- CHECK(ret, FAIL, "H5Fclose");
+ dataset =
+ H5Dcreate2(file, "Dataset", H5T_NATIVE_INT, filespace, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT);
+ CHECK(dataset, FAIL, "H5Dcreate2");
- /* Iterate through the attributes on the dataset in various ways */
- file = H5Fopen(DATAFILE, H5F_ACC_RDONLY, fapl);
- CHECK(file, FAIL, "H5Fopen");
+ for (i = 0; i < NATTR; i++) {
+ HDsnprintf(name, sizeof(name), "Attribute %02d", i);
+ attribute = H5Acreate2(dataset, name, H5T_NATIVE_INT, filespace, H5P_DEFAULT, H5P_DEFAULT);
+ CHECK(attribute, FAIL, "H5Acreate2");
- dataset = H5Dopen2(file, "Dataset", H5P_DEFAULT);
- CHECK(dataset, FAIL, "H5Dopen2");
+ /* Keep a copy of the attribute names around for later */
+ anames[i] = HDstrdup(name);
+ CHECK_PTR(anames[i], "strdup");
- /* Test invalid indices for starting iteration */
- info.command = RET_ZERO;
+ ret = H5Aclose(attribute);
+ CHECK(ret, FAIL, "H5Aclose");
+ } /* end for */
- /* Test skipping exactly as many attributes as there are */
- idx = NATTR;
- H5E_BEGIN_TRY
- {
- ret = H5Aiterate2(dataset, H5_INDEX_NAME, H5_ITER_INC, &idx, aiter_cb, &info);
- }
- H5E_END_TRY;
- VERIFY(ret, FAIL, "H5Aiterate2");
+ /* Close everything up */
+ ret = H5Dclose(dataset);
+ CHECK(ret, FAIL, "H5Dclose");
- /* Test skipping more attributes than there are */
- idx = NATTR + 1;
- H5E_BEGIN_TRY
- {
- ret = H5Aiterate2(dataset, H5_INDEX_NAME, H5_ITER_INC, &idx, aiter_cb, &info);
- }
- H5E_END_TRY;
- VERIFY(ret, FAIL, "H5Aiterate2");
-
- /* Test all attributes on dataset, when callback always returns 0 */
- info.command = RET_ZERO;
- idx = 0;
- if ((ret = H5Aiterate2(dataset, H5_INDEX_NAME, H5_ITER_INC, &idx, aiter_cb, &info)) > 0)
- TestErrPrintf("Attribute iteration function didn't return zero correctly!\n");
-
- /* Test all attributes on dataset, when callback always returns 2 */
- /* This also tests the "restarting" ability, because the index changes */
- info.command = RET_TWO;
- i = 0;
- idx = 0;
- while ((ret = H5Aiterate2(dataset, H5_INDEX_NAME, H5_ITER_INC, &idx, aiter_cb, &info)) > 0) {
- /* Verify return value from iterator gets propagated correctly */
- VERIFY(ret, 2, "H5Aiterate2");
-
- /* Increment the number of times "2" is returned */
- i++;
-
- /* Verify that the index is the correct value */
- VERIFY(idx, (unsigned)i, "H5Aiterate2");
-
- /* Don't check name when new format is used */
- if (!new_format) {
- /* Verify that the correct name is retrieved */
- if (idx > 0) {
- if (HDstrcmp(info.name, anames[(size_t)idx - 1]) != 0)
- TestErrPrintf("%u: Attribute iteration function didn't set names correctly, info.name = "
- "'%s', anames[%u] = '%s'!\n",
- __LINE__, info.name, (unsigned)(idx - 1), anames[(size_t)idx - 1]);
+ ret = H5Sclose(filespace);
+ CHECK(ret, FAIL, "H5Sclose");
+
+ ret = H5Fclose(file);
+ CHECK(ret, FAIL, "H5Fclose");
+
+ /* Iterate through the attributes on the dataset in various ways */
+ file = H5Fopen(DATAFILE, H5F_ACC_RDONLY, fapl);
+ CHECK(file, FAIL, "H5Fopen");
+
+ dataset = H5Dopen2(file, "Dataset", H5P_DEFAULT);
+ CHECK(dataset, FAIL, "H5Dopen2");
+
+ /* Test invalid indices for starting iteration */
+ info.command = RET_ZERO;
+
+ /* Test skipping exactly as many attributes as there are */
+ idx = NATTR;
+ H5E_BEGIN_TRY
+ {
+ ret = H5Aiterate2(dataset, H5_INDEX_NAME, H5_ITER_INC, &idx, aiter_cb, &info);
+ }
+ H5E_END_TRY;
+ VERIFY(ret, FAIL, "H5Aiterate2");
+
+ /* Test skipping more attributes than there are */
+ idx = NATTR + 1;
+ H5E_BEGIN_TRY
+ {
+ ret = H5Aiterate2(dataset, H5_INDEX_NAME, H5_ITER_INC, &idx, aiter_cb, &info);
+ }
+ H5E_END_TRY;
+ VERIFY(ret, FAIL, "H5Aiterate2");
+
+ /* Test all attributes on dataset, when callback always returns 0 */
+ info.command = RET_ZERO;
+ idx = 0;
+ if ((ret = H5Aiterate2(dataset, H5_INDEX_NAME, H5_ITER_INC, &idx, aiter_cb, &info)) > 0)
+ TestErrPrintf("Attribute iteration function didn't return zero correctly!\n");
+
+ /* Test all attributes on dataset, when callback always returns 2 */
+ /* This also tests the "restarting" ability, because the index changes */
+ info.command = RET_TWO;
+ i = 0;
+ idx = 0;
+ while ((ret = H5Aiterate2(dataset, H5_INDEX_NAME, H5_ITER_INC, &idx, aiter_cb, &info)) > 0) {
+ /* Verify return value from iterator gets propagated correctly */
+ VERIFY(ret, 2, "H5Aiterate2");
+
+ /* Increment the number of times "2" is returned */
+ i++;
+
+ /* Verify that the index is the correct value */
+ VERIFY(idx, (unsigned)i, "H5Aiterate2");
+
+ /* Don't check name when new format is used */
+ if (!new_format) {
+ /* Verify that the correct name is retrieved */
+ if (idx > 0) {
+ if (HDstrcmp(info.name, anames[(size_t)idx - 1]) != 0)
+ TestErrPrintf(
+ "%u: Attribute iteration function didn't set names correctly, info.name = "
+ "'%s', anames[%u] = '%s'!\n",
+ __LINE__, info.name, (unsigned)(idx - 1), anames[(size_t)idx - 1]);
+ } /* end if */
+ else
+ TestErrPrintf("%u: 'idx' was not set correctly!\n", __LINE__);
} /* end if */
- else
- TestErrPrintf("%u: 'idx' was not set correctly!\n", __LINE__);
- } /* end if */
- } /* end while */
- VERIFY(ret, -1, "H5Aiterate2");
- if (i != 50 || idx != 50)
- TestErrPrintf("%u: Attribute iteration function didn't perform multiple iterations correctly!\n",
- __LINE__);
-
- /* Test all attributes on dataset, when callback changes return value */
- /* This also tests the "restarting" ability, because the index changes */
- info.command = new_format ? RET_CHANGE2 : RET_CHANGE;
- i = 0;
- idx = 0;
- while ((ret = H5Aiterate2(dataset, H5_INDEX_NAME, H5_ITER_INC, &idx, aiter_cb, &info)) > 0) {
- /* Verify return value from iterator gets propagated correctly */
- VERIFY(ret, 1, "H5Aiterate2");
-
- /* Increment the number of times "1" is returned */
- i++;
-
- /* Verify that the index is the correct value */
- VERIFY(idx, (unsigned)i + 10, "H5Aiterate2");
-
- /* Don't check name when new format is used */
- if (!new_format) {
- /* Verify that the correct name is retrieved */
- if (idx > 0) {
- if (HDstrcmp(info.name, anames[(size_t)idx - 1]) != 0)
- TestErrPrintf("%u: Attribute iteration function didn't set names correctly, info.name = "
- "'%s', anames[%u] = '%s'!\n",
- __LINE__, info.name, (unsigned)(idx - 1), anames[(size_t)idx - 1]);
- }
- else
- TestErrPrintf("%u: 'idx' was not set correctly!\n", __LINE__);
- } /* end if */
- } /* end while */
- VERIFY(ret, -1, "H5Aiterate2");
- if (i != 40 || idx != 50)
- TestErrPrintf("%u: Attribute iteration function didn't perform multiple iterations correctly!\n",
- __LINE__);
+ } /* end while */
+ VERIFY(ret, -1, "H5Aiterate2");
+ if (i != 50 || idx != 50)
+ TestErrPrintf("%u: Attribute iteration function didn't perform multiple iterations correctly!\n",
+ __LINE__);
+
+ /* Test all attributes on dataset, when callback changes return value */
+ /* This also tests the "restarting" ability, because the index changes */
+ info.command = new_format ? RET_CHANGE2 : RET_CHANGE;
+ i = 0;
+ idx = 0;
+ while ((ret = H5Aiterate2(dataset, H5_INDEX_NAME, H5_ITER_INC, &idx, aiter_cb, &info)) > 0) {
+ /* Verify return value from iterator gets propagated correctly */
+ VERIFY(ret, 1, "H5Aiterate2");
+
+ /* Increment the number of times "1" is returned */
+ i++;
+
+ /* Verify that the index is the correct value */
+ VERIFY(idx, (unsigned)i + 10, "H5Aiterate2");
+
+ /* Don't check name when new format is used */
+ if (!new_format) {
+ /* Verify that the correct name is retrieved */
+ if (idx > 0) {
+ if (HDstrcmp(info.name, anames[(size_t)idx - 1]) != 0)
+ TestErrPrintf(
+ "%u: Attribute iteration function didn't set names correctly, info.name = "
+ "'%s', anames[%u] = '%s'!\n",
+ __LINE__, info.name, (unsigned)(idx - 1), anames[(size_t)idx - 1]);
+ }
+ else
+ TestErrPrintf("%u: 'idx' was not set correctly!\n", __LINE__);
+ } /* end if */
+ } /* end while */
+ VERIFY(ret, -1, "H5Aiterate2");
+ if (i != 40 || idx != 50)
+ TestErrPrintf("%u: Attribute iteration function didn't perform multiple iterations correctly!\n",
+ __LINE__);
- ret = H5Fclose(file);
- CHECK(ret, FAIL, "H5Fclose");
+ ret = H5Fclose(file);
+ CHECK(ret, FAIL, "H5Fclose");
- ret = H5Dclose(dataset);
- CHECK(ret, FAIL, "H5Dclose");
+ ret = H5Dclose(dataset);
+ CHECK(ret, FAIL, "H5Dclose");
- /* Free the attribute names */
- for (i = 0; i < NATTR; i++)
- HDfree(anames[i]);
-#endif
+ /* Free the attribute names */
+ for (i = 0; i < NATTR; i++)
+ HDfree(anames[i]);
+ }
} /* test_iter_attr() */
/****************************************************************
@@ -611,7 +610,6 @@ iter_strcmp2(const void *s1, const void *s2)
** liter_cb2(): Custom link iteration callback routine.
**
****************************************************************/
-#ifndef NO_ITERATION_RESTART
static herr_t
liter_cb2(hid_t loc_id, const char *name, const H5L_info2_t H5_ATTR_UNUSED *link_info, void *opdata)
{
@@ -619,6 +617,13 @@ liter_cb2(hid_t loc_id, const char *name, const H5L_info2_t H5_ATTR_UNUSED *link
H5O_info2_t oinfo;
herr_t ret; /* Generic return value */
+ if (!(vol_cap_flags_g & H5VL_CAP_FLAG_ITERATE) || !(vol_cap_flags_g & H5VL_CAP_FLAG_LINK_BASIC)) {
+ SKIPPED();
+ HDprintf(" API functions for iterate and basic links aren't "
+ "supported with this connector\n");
+ return 1;
+ }
+
if (HDstrcmp(name, test_info->name) != 0) {
TestErrPrintf("name = '%s', test_info = '%s'\n", name, test_info->name);
return (H5_ITER_ERROR);
@@ -637,7 +642,6 @@ liter_cb2(hid_t loc_id, const char *name, const H5L_info2_t H5_ATTR_UNUSED *link
return (H5_ITER_STOP);
} /* liter_cb2() */
-#endif
/****************************************************************
**
@@ -648,7 +652,6 @@ liter_cb2(hid_t loc_id, const char *name, const H5L_info2_t H5_ATTR_UNUSED *link
static void
test_iter_group_large(hid_t fapl)
{
-#ifndef NO_ITERATION_RESTART
hid_t file; /* HDF5 File IDs */
hid_t dataset; /* Dataset ID */
hid_t group; /* Group ID */
@@ -671,102 +674,102 @@ test_iter_group_large(hid_t fapl)
/* Allocate & initialize array */
names = (iter_info *)HDcalloc(sizeof(iter_info), (ITER_NGROUPS + 2));
CHECK_PTR(names, "HDcalloc");
-#else
- (void)fapl;
-#endif
- /* Output message about test being performed */
- MESSAGE(5, ("Testing Large Group Iteration Functionality - SKIPPED for now due to no iteration restart "
- "support\n"));
-#ifndef NO_ITERATION_RESTART
- /* Create file */
- file = H5Fcreate(DATAFILE, H5F_ACC_TRUNC, H5P_DEFAULT, fapl);
- CHECK(file, FAIL, "H5Fcreate");
-
- /* Create dataspace for datasets */
- sid = H5Screate_simple(SPACE1_RANK, dims, NULL);
- CHECK(sid, FAIL, "H5Screate_simple");
- /* Create a bunch of groups */
- for (i = 0; i < ITER_NGROUPS; i++) {
- HDsnprintf(gname, sizeof(gname), "Group_%d", i);
+ /* Output message about test being performed */
+ MESSAGE(5, ("Testing Large Group Iteration Functionality\n"));
+
+ if ((vol_cap_flags_g & H5VL_CAP_FLAG_ITERATE) && (vol_cap_flags_g & H5VL_CAP_FLAG_FILE_BASIC) &&
+ (vol_cap_flags_g & H5VL_CAP_FLAG_GROUP_BASIC) && (vol_cap_flags_g & H5VL_CAP_FLAG_DATASET_BASIC) &&
+ (vol_cap_flags_g & H5VL_CAP_FLAG_STORED_DATATYPES)) {
+ /* Create file */
+ file = H5Fcreate(DATAFILE, H5F_ACC_TRUNC, H5P_DEFAULT, fapl);
+ CHECK(file, FAIL, "H5Fcreate");
+
+ /* Create dataspace for datasets */
+ sid = H5Screate_simple(SPACE1_RANK, dims, NULL);
+ CHECK(sid, FAIL, "H5Screate_simple");
+
+ /* Create a bunch of groups */
+ for (i = 0; i < ITER_NGROUPS; i++) {
+ HDsnprintf(gname, sizeof(gname), "Group_%d", i);
+
+ /* Add the name to the list of objects in the root group */
+ HDstrcpy(names[i].name, gname);
+ names[i].type = H5O_TYPE_GROUP;
+
+ /* Create a group */
+ group = H5Gcreate2(file, gname, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT);
+ CHECK(group, FAIL, "H5Gcreate2");
+
+ /* Close a group */
+ ret = H5Gclose(group);
+ CHECK(ret, FAIL, "H5Gclose");
+ } /* end for */
+
+ /* Create a dataset */
+ dataset = H5Dcreate2(file, "Dataset1", H5T_STD_U32LE, sid, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT);
+ CHECK(dataset, FAIL, "H5Dcreate2");
/* Add the name to the list of objects in the root group */
- HDstrcpy(names[i].name, gname);
- names[i].type = H5O_TYPE_GROUP;
-
- /* Create a group */
- group = H5Gcreate2(file, gname, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT);
- CHECK(group, FAIL, "H5Gcreate2");
-
- /* Close a group */
- ret = H5Gclose(group);
- CHECK(ret, FAIL, "H5Gclose");
- } /* end for */
+ HDstrcpy(names[ITER_NGROUPS].name, "Dataset1");
+ names[ITER_NGROUPS].type = H5O_TYPE_DATASET;
- /* Create a dataset */
- dataset = H5Dcreate2(file, "Dataset1", H5T_STD_U32LE, sid, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT);
- CHECK(dataset, FAIL, "H5Dcreate2");
-
- /* Add the name to the list of objects in the root group */
- HDstrcpy(names[ITER_NGROUPS].name, "Dataset1");
- names[ITER_NGROUPS].type = H5O_TYPE_DATASET;
-
- /* Close Dataset */
- ret = H5Dclose(dataset);
- CHECK(ret, FAIL, "H5Dclose");
-
- /* Close Dataspace */
- ret = H5Sclose(sid);
- CHECK(ret, FAIL, "H5Sclose");
+ /* Close Dataset */
+ ret = H5Dclose(dataset);
+ CHECK(ret, FAIL, "H5Dclose");
- /* Create a datatype */
- tid = H5Tcreate(H5T_COMPOUND, sizeof(s1_t));
- CHECK(tid, FAIL, "H5Tcreate");
+ /* Close Dataspace */
+ ret = H5Sclose(sid);
+ CHECK(ret, FAIL, "H5Sclose");
- /* Insert fields */
- ret = H5Tinsert(tid, "a", HOFFSET(s1_t, a), H5T_NATIVE_INT);
- CHECK(ret, FAIL, "H5Tinsert");
+ /* Create a datatype */
+ tid = H5Tcreate(H5T_COMPOUND, sizeof(s1_t));
+ CHECK(tid, FAIL, "H5Tcreate");
- ret = H5Tinsert(tid, "b", HOFFSET(s1_t, b), H5T_NATIVE_INT);
- CHECK(ret, FAIL, "H5Tinsert");
+ /* Insert fields */
+ ret = H5Tinsert(tid, "a", HOFFSET(s1_t, a), H5T_NATIVE_INT);
+ CHECK(ret, FAIL, "H5Tinsert");
- ret = H5Tinsert(tid, "c", HOFFSET(s1_t, c), H5T_NATIVE_FLOAT);
- CHECK(ret, FAIL, "H5Tinsert");
+ ret = H5Tinsert(tid, "b", HOFFSET(s1_t, b), H5T_NATIVE_INT);
+ CHECK(ret, FAIL, "H5Tinsert");
- /* Save datatype for later */
- ret = H5Tcommit2(file, "Datatype1", tid, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT);
- CHECK(ret, FAIL, "H5Tcommit2");
+ ret = H5Tinsert(tid, "c", HOFFSET(s1_t, c), H5T_NATIVE_FLOAT);
+ CHECK(ret, FAIL, "H5Tinsert");
- /* Add the name to the list of objects in the root group */
- HDstrcpy(names[ITER_NGROUPS + 1].name, "Datatype1");
- names[ITER_NGROUPS + 1].type = H5O_TYPE_NAMED_DATATYPE;
+ /* Save datatype for later */
+ ret = H5Tcommit2(file, "Datatype1", tid, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT);
+ CHECK(ret, FAIL, "H5Tcommit2");
- /* Close datatype */
- ret = H5Tclose(tid);
- CHECK(ret, FAIL, "H5Tclose");
+ /* Add the name to the list of objects in the root group */
+ HDstrcpy(names[ITER_NGROUPS + 1].name, "Datatype1");
+ names[ITER_NGROUPS + 1].type = H5O_TYPE_NAMED_DATATYPE;
- /* Need to sort the names in the root group, cause that's what the library does */
- HDqsort(names, (size_t)(ITER_NGROUPS + 2), sizeof(iter_info), iter_strcmp2);
+ /* Close datatype */
+ ret = H5Tclose(tid);
+ CHECK(ret, FAIL, "H5Tclose");
- /* Iterate through the file to see members of the root group */
- curr_name = &names[0];
- ret = H5Literate2(file, H5_INDEX_NAME, H5_ITER_INC, NULL, liter_cb2, curr_name);
- CHECK(ret, FAIL, "H5Literate2");
- for (i = 1; i < 100; i++) {
- hsize_t idx = (hsize_t)i;
+ /* Need to sort the names in the root group, cause that's what the library does */
+ HDqsort(names, (size_t)(ITER_NGROUPS + 2), sizeof(iter_info), iter_strcmp2);
- curr_name = &names[i];
- ret = H5Literate2(file, H5_INDEX_NAME, H5_ITER_INC, &idx, liter_cb2, curr_name);
+ /* Iterate through the file to see members of the root group */
+ curr_name = &names[0];
+ ret = H5Literate2(file, H5_INDEX_NAME, H5_ITER_INC, NULL, liter_cb2, curr_name);
CHECK(ret, FAIL, "H5Literate2");
- } /* end for */
+ for (i = 1; i < 100; i++) {
+ hsize_t idx = (hsize_t)i;
- /* Close file */
- ret = H5Fclose(file);
- CHECK(ret, FAIL, "H5Fclose");
+ curr_name = &names[i];
+ ret = H5Literate2(file, H5_INDEX_NAME, H5_ITER_INC, &idx, liter_cb2, curr_name);
+ CHECK(ret, FAIL, "H5Literate2");
+ } /* end for */
- /* Release memory */
- HDfree(names);
-#endif
+ /* Close file */
+ ret = H5Fclose(file);
+ CHECK(ret, FAIL, "H5Fclose");
+
+ /* Release memory */
+ HDfree(names);
+ }
} /* test_iterate_group_large() */
/****************************************************************
diff --git a/test/API/tmisc.c b/test/API/tmisc.c
index 9013422..6e323e1 100644
--- a/test/API/tmisc.c
+++ b/test/API/tmisc.c
@@ -4175,15 +4175,11 @@ test_misc23(void)
hsize_t dims[] = {10};
hid_t file_id = 0, group_id = 0, type_id = 0, space_id = 0, tmp_id = 0, create_id = H5P_DEFAULT,
access_id = H5P_DEFAULT;
-#ifndef NO_OBJECT_GET_NAME
- char objname[MISC23_NAME_BUF_SIZE]; /* Name of object */
-#endif
+ char objname[MISC23_NAME_BUF_SIZE]; /* Name of object */
H5O_info2_t oinfo;
htri_t tri_status;
-#ifndef NO_OBJECT_GET_NAME
- ssize_t namelen;
-#endif
- herr_t status;
+ ssize_t namelen;
+ herr_t status;
/* Output message about test being performed */
MESSAGE(5, ("Testing intermediate group creation\n"));
@@ -4269,12 +4265,12 @@ test_misc23(void)
tmp_id = H5Gcreate2(file_id, "/A/B01/grp", create_id, H5P_DEFAULT, access_id);
CHECK(tmp_id, FAIL, "H5Gcreate2");
-#ifndef NO_OBJECT_GET_NAME
+
/* Query that the name of the new group is correct */
namelen = H5Iget_name(tmp_id, objname, (size_t)MISC23_NAME_BUF_SIZE);
CHECK(namelen, FAIL, "H5Iget_name");
VERIFY_STR(objname, "/A/B01/grp", "H5Iget_name");
-#endif
+
status = H5Gclose(tmp_id);
CHECK(status, FAIL, "H5Gclose");
@@ -4484,24 +4480,29 @@ test_misc23(void)
/**********************************************************************
* test H5Lcreate_external()
**********************************************************************/
-#ifndef NO_EXTERNAL_LINKS
- status = H5Lcreate_external("fake_filename", "fake_path", file_id, "/A/B20/grp", create_id, access_id);
- CHECK(status, FAIL, "H5Lcreate_external");
- tri_status = H5Lexists(file_id, "/A/B20/grp", access_id);
- VERIFY(tri_status, TRUE, "H5Lexists");
-#endif
+ if (vol_cap_flags_g & H5VL_CAP_FLAG_EXTERNAL_LINKS) {
+ status =
+ H5Lcreate_external("fake_filename", "fake_path", file_id, "/A/B20/grp", create_id, access_id);
+ CHECK(status, FAIL, "H5Lcreate_external");
+
+ tri_status = H5Lexists(file_id, "/A/B20/grp", access_id);
+ VERIFY(tri_status, TRUE, "H5Lexists");
+ }
+
/**********************************************************************
* test H5Lcreate_ud()
**********************************************************************/
-#ifndef NO_USER_DEFINED_LINKS
- status =
- H5Lcreate_ud(file_id, "/A/B21/grp", H5L_TYPE_EXTERNAL, "file\0obj", (size_t)9, create_id, access_id);
- CHECK(status, FAIL, "H5Lcreate_ud");
- tri_status = H5Lexists(file_id, "/A/B21/grp", access_id);
- VERIFY(tri_status, TRUE, "H5Lexists");
-#endif
+ if (vol_cap_flags_g & H5VL_CAP_FLAG_UD_LINKS) {
+ status = H5Lcreate_ud(file_id, "/A/B21/grp", H5L_TYPE_EXTERNAL, "file\0obj", (size_t)9, create_id,
+ access_id);
+ CHECK(status, FAIL, "H5Lcreate_ud");
+
+ tri_status = H5Lexists(file_id, "/A/B21/grp", access_id);
+ VERIFY(tri_status, TRUE, "H5Lexists");
+ }
+
/**********************************************************************
* close
**********************************************************************/
diff --git a/test/API/trefer.c b/test/API/trefer.c
index af0b11b..c09b586 100644
--- a/test/API/trefer.c
+++ b/test/API/trefer.c
@@ -2018,7 +2018,6 @@ test_reference_region_1D(H5F_libver_t libver_low, H5F_libver_t libver_high)
static void
test_reference_obj_deleted(void)
{
-#ifndef NO_REFERENCE_TO_DELETED
hid_t fid1; /* HDF5 File IDs */
hid_t dataset, /* Dataset ID */
dset2; /* Dereferenced dataset ID */
@@ -2026,88 +2025,90 @@ test_reference_obj_deleted(void)
H5R_ref_t oref; /* Object Reference to test */
H5O_type_t obj_type; /* Object type */
herr_t ret; /* Generic return value */
-#endif
- MESSAGE(5, ("Testing References to Deleted Objects - SKIPPED for now due to no support\n"));
-#ifndef NO_REFERENCE_TO_DELETED
- /* Create file */
- fid1 = H5Fcreate(FILE_REF_OBJ_DEL, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT);
- CHECK(fid1, H5I_INVALID_HID, "H5Fcreate");
- /* Create scalar dataspace for datasets */
- sid1 = H5Screate_simple(0, NULL, NULL);
- CHECK(sid1, H5I_INVALID_HID, "H5Screate_simple");
+ MESSAGE(5, ("Testing References to Deleted Objects\n"));
- /* Create a dataset to reference (deleted later) */
- dataset = H5Dcreate2(fid1, "Dataset1", H5T_NATIVE_INT, sid1, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT);
- CHECK(dataset, H5I_INVALID_HID, "H5Dcreate2");
+ if ((vol_cap_flags_g & H5VL_CAP_FLAG_REF_BASIC) && (vol_cap_flags_g & H5VL_CAP_FLAG_FILE_BASIC) &&
+ (vol_cap_flags_g & H5VL_CAP_FLAG_DATASET_BASIC) && (vol_cap_flags_g & H5VL_CAP_FLAG_LINK_BASIC)) {
+ /* Create file */
+ fid1 = H5Fcreate(FILE_REF_OBJ_DEL, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT);
+ CHECK(fid1, H5I_INVALID_HID, "H5Fcreate");
- /* Close Dataset */
- ret = H5Dclose(dataset);
- CHECK(ret, FAIL, "H5Dclose");
+ /* Create scalar dataspace for datasets */
+ sid1 = H5Screate_simple(0, NULL, NULL);
+ CHECK(sid1, H5I_INVALID_HID, "H5Screate_simple");
- /* Create a dataset */
- dataset = H5Dcreate2(fid1, "Dataset2", H5T_STD_REF, sid1, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT);
- CHECK(dataset, H5I_INVALID_HID, "H5Dcreate2");
+ /* Create a dataset to reference (deleted later) */
+ dataset = H5Dcreate2(fid1, "Dataset1", H5T_NATIVE_INT, sid1, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT);
+ CHECK(dataset, H5I_INVALID_HID, "H5Dcreate2");
- /* Create reference to dataset */
- ret = H5Rcreate_object(fid1, "/Dataset1", H5P_DEFAULT, &oref);
- CHECK(ret, FAIL, "H5Rcreate_object");
- ret = H5Rget_obj_type3(&oref, H5P_DEFAULT, &obj_type);
- CHECK(ret, FAIL, "H5Rget_obj_type3");
- VERIFY(obj_type, H5O_TYPE_DATASET, "H5Rget_obj_type3");
+ /* Close Dataset */
+ ret = H5Dclose(dataset);
+ CHECK(ret, FAIL, "H5Dclose");
- /* Write selection to disk */
- ret = H5Dwrite(dataset, H5T_STD_REF, H5S_ALL, H5S_ALL, H5P_DEFAULT, &oref);
- CHECK(ret, FAIL, "H5Dwrite");
+ /* Create a dataset */
+ dataset = H5Dcreate2(fid1, "Dataset2", H5T_STD_REF, sid1, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT);
+ CHECK(dataset, H5I_INVALID_HID, "H5Dcreate2");
- /* Close Dataset */
- ret = H5Dclose(dataset);
- CHECK(ret, FAIL, "H5Dclose");
+ /* Create reference to dataset */
+ ret = H5Rcreate_object(fid1, "/Dataset1", H5P_DEFAULT, &oref);
+ CHECK(ret, FAIL, "H5Rcreate_object");
+ ret = H5Rget_obj_type3(&oref, H5P_DEFAULT, &obj_type);
+ CHECK(ret, FAIL, "H5Rget_obj_type3");
+ VERIFY(obj_type, H5O_TYPE_DATASET, "H5Rget_obj_type3");
- /* Delete referenced dataset */
- ret = H5Ldelete(fid1, "/Dataset1", H5P_DEFAULT);
- CHECK(ret, FAIL, "H5Ldelete");
+ /* Write selection to disk */
+ ret = H5Dwrite(dataset, H5T_STD_REF, H5S_ALL, H5S_ALL, H5P_DEFAULT, &oref);
+ CHECK(ret, FAIL, "H5Dwrite");
- /* Close disk dataspace */
- ret = H5Sclose(sid1);
- CHECK(ret, FAIL, "H5Sclose");
+ /* Close Dataset */
+ ret = H5Dclose(dataset);
+ CHECK(ret, FAIL, "H5Dclose");
- /* Close file */
- ret = H5Fclose(fid1);
- CHECK(ret, FAIL, "H5Fclose");
+ /* Delete referenced dataset */
+ ret = H5Ldelete(fid1, "/Dataset1", H5P_DEFAULT);
+ CHECK(ret, FAIL, "H5Ldelete");
- /* Destroy reference */
- ret = H5Rdestroy(&oref);
- CHECK(ret, FAIL, "H5Rdestroy");
+ /* Close disk dataspace */
+ ret = H5Sclose(sid1);
+ CHECK(ret, FAIL, "H5Sclose");
- /* Re-open the file */
- fid1 = H5Fopen(FILE_REF_OBJ_DEL, H5F_ACC_RDWR, H5P_DEFAULT);
- CHECK(fid1, H5I_INVALID_HID, "H5Fopen");
+ /* Close file */
+ ret = H5Fclose(fid1);
+ CHECK(ret, FAIL, "H5Fclose");
- /* Open the dataset */
- dataset = H5Dopen2(fid1, "/Dataset2", H5P_DEFAULT);
- CHECK(ret, H5I_INVALID_HID, "H5Dopen2");
+ /* Destroy reference */
+ ret = H5Rdestroy(&oref);
+ CHECK(ret, FAIL, "H5Rdestroy");
- /* Read selection from disk */
- ret = H5Dread(dataset, H5T_STD_REF, H5S_ALL, H5S_ALL, H5P_DEFAULT, &oref);
- CHECK(ret, FAIL, "H5Dread");
+ /* Re-open the file */
+ fid1 = H5Fopen(FILE_REF_OBJ_DEL, H5F_ACC_RDWR, H5P_DEFAULT);
+ CHECK(fid1, H5I_INVALID_HID, "H5Fopen");
- /* Open deleted dataset object */
- dset2 = H5Ropen_object(&oref, H5P_DEFAULT, H5P_DEFAULT);
- VERIFY(dset2, H5I_INVALID_HID, "H5Ropen_object");
+ /* Open the dataset */
+ dataset = H5Dopen2(fid1, "/Dataset2", H5P_DEFAULT);
+ CHECK(ret, H5I_INVALID_HID, "H5Dopen2");
- /* Close Dataset */
- ret = H5Dclose(dataset);
- CHECK(ret, FAIL, "H5Dclose");
+ /* Read selection from disk */
+ ret = H5Dread(dataset, H5T_STD_REF, H5S_ALL, H5S_ALL, H5P_DEFAULT, &oref);
+ CHECK(ret, FAIL, "H5Dread");
- /* Close file */
- ret = H5Fclose(fid1);
- CHECK(ret, FAIL, "H5Fclose");
+ /* Open deleted dataset object */
+ dset2 = H5Ropen_object(&oref, H5P_DEFAULT, H5P_DEFAULT);
+ VERIFY(dset2, H5I_INVALID_HID, "H5Ropen_object");
- /* Destroy reference */
- ret = H5Rdestroy(&oref);
- CHECK(ret, FAIL, "H5Rdestroy");
-#endif
+ /* Close Dataset */
+ ret = H5Dclose(dataset);
+ CHECK(ret, FAIL, "H5Dclose");
+
+ /* Close file */
+ ret = H5Fclose(fid1);
+ CHECK(ret, FAIL, "H5Fclose");
+
+ /* Destroy reference */
+ ret = H5Rdestroy(&oref);
+ CHECK(ret, FAIL, "H5Rdestroy");
+ }
} /* test_reference_obj_deleted() */
/****************************************************************
diff --git a/test/API/tvlstr.c b/test/API/tvlstr.c
index b05ff66..35d5358 100644
--- a/test/API/tvlstr.c
+++ b/test/API/tvlstr.c
@@ -871,7 +871,6 @@ test_vl_rewrite(void)
static void
test_write_same_element(void)
{
-#ifndef NO_WRITE_SAME_ELEMENT_TWICE
hid_t file1, dataset1;
hid_t mspace, fspace, dtype;
hsize_t fdim[] = {SPACE1_DIM1};
@@ -880,86 +879,84 @@ test_write_same_element(void)
hsize_t marray[] = {NUMP};
hsize_t coord[SPACE1_RANK][NUMP];
herr_t ret;
-#endif
- MESSAGE(
- 5,
- ("Testing writing to same element of VL string dataset twice - SKIPPED for now due to no support\n"));
-#ifndef NO_WRITE_SAME_ELEMENT_TWICE
- file1 = H5Fcreate(DATAFILE3, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT);
- CHECK(file1, FAIL, "H5Fcreate");
+ MESSAGE(5, ("Testing writing to same element of VL string dataset twice\n"));
- dtype = H5Tcopy(H5T_C_S1);
- CHECK(dtype, FAIL, "H5Tcopy");
+ if ((vol_cap_flags_g & H5VL_CAP_FLAG_DATASET_BASIC) && (vol_cap_flags_g & H5VL_CAP_FLAG_FILE_BASIC)) {
+ file1 = H5Fcreate(DATAFILE3, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT);
+ CHECK(file1, FAIL, "H5Fcreate");
- ret = H5Tset_size(dtype, H5T_VARIABLE);
- CHECK(ret, FAIL, "H5Tset_size");
+ dtype = H5Tcopy(H5T_C_S1);
+ CHECK(dtype, FAIL, "H5Tcopy");
- fspace = H5Screate_simple(SPACE1_RANK, fdim, NULL);
- CHECK(fspace, FAIL, "H5Screate_simple");
+ ret = H5Tset_size(dtype, H5T_VARIABLE);
+ CHECK(ret, FAIL, "H5Tset_size");
- dataset1 = H5Dcreate2(file1, DATASET, dtype, fspace, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT);
- CHECK(dataset1, FAIL, "H5Dcreate");
+ fspace = H5Screate_simple(SPACE1_RANK, fdim, NULL);
+ CHECK(fspace, FAIL, "H5Screate_simple");
- ret = H5Dwrite(dataset1, dtype, H5S_ALL, H5S_ALL, H5P_DEFAULT, wdata);
- CHECK(ret, FAIL, "H5Dwrite");
+ dataset1 = H5Dcreate2(file1, DATASET, dtype, fspace, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT);
+ CHECK(dataset1, FAIL, "H5Dcreate");
- ret = H5Dclose(dataset1);
- CHECK(ret, FAIL, "H5Dclose");
+ ret = H5Dwrite(dataset1, dtype, H5S_ALL, H5S_ALL, H5P_DEFAULT, wdata);
+ CHECK(ret, FAIL, "H5Dwrite");
- ret = H5Tclose(dtype);
- CHECK(ret, FAIL, "H5Tclose");
+ ret = H5Dclose(dataset1);
+ CHECK(ret, FAIL, "H5Dclose");
- ret = H5Sclose(fspace);
- CHECK(ret, FAIL, "H5Sclose");
+ ret = H5Tclose(dtype);
+ CHECK(ret, FAIL, "H5Tclose");
- ret = H5Fclose(file1);
- CHECK(ret, FAIL, "H5Fclose");
+ ret = H5Sclose(fspace);
+ CHECK(ret, FAIL, "H5Sclose");
- /*
- * Open the file. Select the same points, write values to those point locations.
- */
- file1 = H5Fopen(DATAFILE3, H5F_ACC_RDWR, H5P_DEFAULT);
- CHECK(file1, FAIL, "H5Fopen");
+ ret = H5Fclose(file1);
+ CHECK(ret, FAIL, "H5Fclose");
- dataset1 = H5Dopen2(file1, DATASET, H5P_DEFAULT);
- CHECK(dataset1, FAIL, "H5Dopen");
+ /*
+ * Open the file. Select the same points, write values to those point locations.
+ */
+ file1 = H5Fopen(DATAFILE3, H5F_ACC_RDWR, H5P_DEFAULT);
+ CHECK(file1, FAIL, "H5Fopen");
- fspace = H5Dget_space(dataset1);
- CHECK(fspace, FAIL, "H5Dget_space");
+ dataset1 = H5Dopen2(file1, DATASET, H5P_DEFAULT);
+ CHECK(dataset1, FAIL, "H5Dopen");
- dtype = H5Dget_type(dataset1);
- CHECK(dtype, FAIL, "H5Dget_type");
+ fspace = H5Dget_space(dataset1);
+ CHECK(fspace, FAIL, "H5Dget_space");
- mspace = H5Screate_simple(1, marray, NULL);
- CHECK(mspace, FAIL, "H5Screate_simple");
+ dtype = H5Dget_type(dataset1);
+ CHECK(dtype, FAIL, "H5Dget_type");
- coord[0][0] = 0;
- coord[0][1] = 2;
- coord[0][2] = 2;
- coord[0][3] = 0;
+ mspace = H5Screate_simple(1, marray, NULL);
+ CHECK(mspace, FAIL, "H5Screate_simple");
- ret = H5Sselect_elements(fspace, H5S_SELECT_SET, NUMP, (const hsize_t *)&coord);
- CHECK(ret, FAIL, "H5Sselect_elements");
+ coord[0][0] = 0;
+ coord[0][1] = 2;
+ coord[0][2] = 2;
+ coord[0][3] = 0;
- ret = H5Dwrite(dataset1, dtype, mspace, fspace, H5P_DEFAULT, val);
- CHECK(ret, FAIL, "H5Dwrite");
+ ret = H5Sselect_elements(fspace, H5S_SELECT_SET, NUMP, (const hsize_t *)&coord);
+ CHECK(ret, FAIL, "H5Sselect_elements");
- ret = H5Tclose(dtype);
- CHECK(ret, FAIL, "H5Tclose");
+ ret = H5Dwrite(dataset1, dtype, mspace, fspace, H5P_DEFAULT, val);
+ CHECK(ret, FAIL, "H5Dwrite");
- ret = H5Dclose(dataset1);
- CHECK(ret, FAIL, "H5Dclose");
+ ret = H5Tclose(dtype);
+ CHECK(ret, FAIL, "H5Tclose");
- ret = H5Sclose(fspace);
- CHECK(ret, FAIL, "H5Dclose");
+ ret = H5Dclose(dataset1);
+ CHECK(ret, FAIL, "H5Dclose");
- ret = H5Sclose(mspace);
- CHECK(ret, FAIL, "H5Sclose");
+ ret = H5Sclose(fspace);
+ CHECK(ret, FAIL, "H5Dclose");
- ret = H5Fclose(file1);
- CHECK(ret, FAIL, "H5Fclose");
-#endif
+ ret = H5Sclose(mspace);
+ CHECK(ret, FAIL, "H5Sclose");
+
+ ret = H5Fclose(file1);
+ CHECK(ret, FAIL, "H5Fclose");
+ }
} /* test_write_same_element */
/****************************************************************