diff options
author | mainzer <mainzer#hdfgroup.org> | 2019-01-16 05:28:03 (GMT) |
---|---|---|
committer | mainzer <mainzer#hdfgroup.org> | 2019-01-16 05:28:03 (GMT) |
commit | 5aebfb4f39fdf323d4d125813af7b49d322d1f80 (patch) | |
tree | 715093875cc2c8f192be5fb872297c18e2495580 /src/H5C.c | |
parent | 52c5092a634811043e45906219684dc3aba06d38 (diff) | |
download | hdf5-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.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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") } |