summaryrefslogtreecommitdiffstats
path: root/test/vol.c
diff options
context:
space:
mode:
authorraylu-hdf <60487644+raylu-hdf@users.noreply.github.com>2023-02-21 16:38:00 (GMT)
committerGitHub <noreply@github.com>2023-02-21 16:38:00 (GMT)
commitea5b3952f71ae613830ece0a4416656ecacf070d (patch)
tree2c5208e01de82143144d37a9d1a77c070f64d683 /test/vol.c
parent7ff3eac6672de87d83bc75896c5f69f50cef1077 (diff)
downloadhdf5-ea5b3952f71ae613830ece0a4416656ecacf070d.zip
hdf5-ea5b3952f71ae613830ece0a4416656ecacf070d.tar.gz
hdf5-ea5b3952f71ae613830ece0a4416656ecacf070d.tar.bz2
HDFFV-10368 (OESS-319): Making two useful macros (H5L_EXT_FLAGS_ALL and H5L_EXT_VERSION) public (#2386)
* HDFFV-10368 (OESS-319): Move two useful macros (H5L_EXT_FLAGS_ALL and H5L_EXT_VERSION) from H5Lpkg.h to H5Lpublic.h for public usage. The test in vol.c only envokes H5Lcreate_external using the passthru VOL. To test if the macros are public, one can use them in the link creation of the passthru VOL, such as printing out their values. * Committing clang-format changes * Moved the test for the external link public macros (H5L_EXT_FLAGS_ALL and H5L_EXT_VERSION) from vol.c to links.c. * Committing clang-format changes * Minor change: changed a pointer variable to an integer. * Committing clang-format changes * Moved two macros (H5L_EXT_VERSION and H5L_EXT_FLAGS_ALL) to H5Ldevelop.h for only developers to use. --------- Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
Diffstat (limited to 'test/vol.c')
-rw-r--r--test/vol.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/vol.c b/test/vol.c
index 4cfb3de..776248b 100644
--- a/test/vol.c
+++ b/test/vol.c
@@ -28,7 +28,7 @@
#include "H5VLpkg.h" /* Virtual Object Layer */
/* Filename */
-const char *FILENAME[] = {"native_vol_test", NULL};
+const char *FILENAME[] = {"vol_test_file", NULL};
#define NATIVE_VOL_TEST_GROUP_NAME "test_group"
#define NATIVE_VOL_TEST_DATASET_NAME "test_dataset"
@@ -2285,7 +2285,7 @@ error:
H5E_END_TRY;
return FAIL;
-} /* end test_vol_cap_flags() */
+} /* end test_get_vol_name() */
/*-------------------------------------------------------------------------
* Function: test_wrap_register()