summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorDavid Young <dyoung@hdfgroup.org>2020-05-13 16:46:30 (GMT)
committerDavid Young <dyoung@hdfgroup.org>2020-05-13 16:46:30 (GMT)
commit89bf6de17ff87d8b70f673b623b1f1929a72ac60 (patch)
treea7465a789348d672adb0c4b2abdcd7e3685cbd69 /test
parentb4813b0c54f017ffd59dd0e7dd68a5fdbbc799a2 (diff)
downloadhdf5-89bf6de17ff87d8b70f673b623b1f1929a72ac60.zip
hdf5-89bf6de17ff87d8b70f673b623b1f1929a72ac60.tar.gz
hdf5-89bf6de17ff87d8b70f673b623b1f1929a72ac60.tar.bz2
This test doesn't need to log/modify traps in the global heap, so don't
provide a H5HG_trap() routine.
Diffstat (limited to 'test')
-rw-r--r--test/vfd_swmr_zoo_writer.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/test/vfd_swmr_zoo_writer.c b/test/vfd_swmr_zoo_writer.c
index a58098a..51ec3c6 100644
--- a/test/vfd_swmr_zoo_writer.c
+++ b/test/vfd_swmr_zoo_writer.c
@@ -57,7 +57,6 @@ typedef struct _tick_stats {
static H5F_vfd_swmr_config_t swmr_config;
static tick_stats_t *tick_stats = NULL;
static const hid_t badhid = H5I_INVALID_HID;
-static bool caught_out_of_bounds = false;
static bool writer;
static void
@@ -98,16 +97,6 @@ usage(const char *progname)
}
bool
-H5HG_trap(const char *reason)
-{
- if (strcmp(reason, "out of bounds") == 0) {
- caught_out_of_bounds = true;
- return false;
- }
- return true;
-}
-
-bool
vfd_swmr_writer_may_increase_tick_to(uint64_t new_tick, bool wait_for_reader)
{
static int fd = -1;