summaryrefslogtreecommitdiffstats
path: root/src/H5C.c
diff options
context:
space:
mode:
authormainzer <mainzer#hdfgroup.org>2019-01-16 05:28:03 (GMT)
committermainzer <mainzer#hdfgroup.org>2019-01-16 05:28:03 (GMT)
commit5aebfb4f39fdf323d4d125813af7b49d322d1f80 (patch)
tree715093875cc2c8f192be5fb872297c18e2495580 /src/H5C.c
parent52c5092a634811043e45906219684dc3aba06d38 (diff)
downloadhdf5-5aebfb4f39fdf323d4d125813af7b49d322d1f80.zip
hdf5-5aebfb4f39fdf323d4d125813af7b49d322d1f80.tar.gz
hdf5-5aebfb4f39fdf323d4d125813af7b49d322d1f80.tar.bz2
Commented out some test code that resulted spurious failures
in un-related tests (i.e. earray, fheap, etc.). On jelly and charis, vfd_swmr now passes. testvfdswmr.sh displas the following failures: 1) occasionally ccan't open the metadata file. This shows up more on jelly than charis. 2) occasional complaints about incorrect raw data 3) occasional complaints from Quincey's evict tagged entries code that it can't evict all the tagged entries. 4) Numerous filter failures. At a guess, this is an artifact of raw data not making it to file in sync with the metadata. I didn't see this on charis, as I don't have compression configured. 5) An assertion failure in the page buffer in which a sanity check is failing in the code to update the replacement policy. This is worrying --- I'll need to look into it on my return.
Diffstat (limited to 'src/H5C.c')
-rw-r--r--src/H5C.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/H5C.c b/src/H5C.c
index 7bdbc1b..36e09ac 100644
--- a/src/H5C.c
+++ b/src/H5C.c
@@ -7356,7 +7356,7 @@ H5C_load_entry(H5F_t * f,
/* Check for too many tries */
if ( tries == 0 ) {
-
+#if 0 /* JRM */
haddr_t eoa;
int64_t page = (int64_t)(addr / f->shared->cache->page_size);
@@ -7369,6 +7369,7 @@ H5C_load_entry(H5F_t * f,
HDfprintf(stderr, "page = %lld, index_len = %d\n",
page, f->shared->mdf_idx_entries_used);
H5FD_vfd_swmr_dump_status(f->shared->lf, page);
+#endif /* JRM */
HGOTO_ERROR(H5E_CACHE, H5E_READERROR, NULL, \
"incorrect metadatda checksum after all read attempts")
}