From cb73324ce58e4bd326534d7b908fbcbaf54bea87 Mon Sep 17 00:00:00 2001 From: David Young Date: Thu, 28 May 2020 15:31:51 -0500 Subject: Disable the error-stack printing around the H5Gopen() call that we know will sometimes fail. --- test/vfd_swmr_group_writer.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/vfd_swmr_group_writer.c b/test/vfd_swmr_group_writer.c index ae70cf1..9e36876 100644 --- a/test/vfd_swmr_group_writer.c +++ b/test/vfd_swmr_group_writer.c @@ -167,12 +167,15 @@ verify_group(state_t *s, unsigned int which) { char name[sizeof("/group-9999999999")]; hid_t g; + estack_state_t es; assert(which < s->nsteps); esnprintf(name, sizeof(name), "/group-%d", which); + es = disable_estack(); g = H5Gopen(s->file, name, H5P_DEFAULT); + restore_estack(es); if (g < 0) return false; -- cgit v0.12