summaryrefslogtreecommitdiffstats
path: root/test/h5test.c
diff options
context:
space:
mode:
authorjhendersonHDF <jhenderson@hdfgroup.org>2023-05-03 21:58:37 (GMT)
committerGitHub <noreply@github.com>2023-05-03 21:58:37 (GMT)
commit43e7790f0e0b055433df089255b271c8291ca8ec (patch)
tree1d58d88179d4587d71df1378f747ef189881c5fd /test/h5test.c
parent75d64819b050bb30b2a2751d9ba55651f9a1af79 (diff)
parent3fbdd700cb68b4a7f6f9ac44eebcf677bb71fd0a (diff)
downloadhdf5-43e7790f0e0b055433df089255b271c8291ca8ec.zip
hdf5-43e7790f0e0b055433df089255b271c8291ca8ec.tar.gz
hdf5-43e7790f0e0b055433df089255b271c8291ca8ec.tar.bz2
Merge pull request #2887 from jhendersonHDF/1_14_develop_sync
Sync with develop
Diffstat (limited to 'test/h5test.c')
-rw-r--r--test/h5test.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/h5test.c b/test/h5test.c
index 1797df9..856de4b 100644
--- a/test/h5test.c
+++ b/test/h5test.c
@@ -115,6 +115,13 @@ const char *LIBVER_NAMES[] = {"earliest", /* H5F_LIBVER_EARLIEST = 0 */
/* Previous error reporting function */
static H5E_auto2_t err_func = NULL;
+/* Global variables for testing */
+size_t n_tests_run_g = 0;
+size_t n_tests_passed_g = 0;
+size_t n_tests_failed_g = 0;
+size_t n_tests_skipped_g = 0;
+uint64_t vol_cap_flags_g = H5VL_CAP_FLAG_NONE;
+
static herr_t h5_errors(hid_t estack, void *client_data);
static char *h5_fixname_real(const char *base_name, hid_t fapl, const char *_suffix, char *fullname,
size_t size, hbool_t nest_printf, hbool_t subst_for_superblock);