summaryrefslogtreecommitdiffstats
path: root/testpar
diff options
context:
space:
mode:
authorMohamad Chaarawi <chaarawi@hdfgroup.org>2015-08-25 15:55:57 (GMT)
committerMohamad Chaarawi <chaarawi@hdfgroup.org>2015-08-25 15:55:57 (GMT)
commit0286bb12de563c6aeb1b9d0c5be4afe717305477 (patch)
tree782744aa52a38c597b18f91d113c80a0936dfa5b /testpar
parente8dc2c232da25eb914ea41303bd15fe81e45564f (diff)
downloadhdf5-0286bb12de563c6aeb1b9d0c5be4afe717305477.zip
hdf5-0286bb12de563c6aeb1b9d0c5be4afe717305477.tar.gz
hdf5-0286bb12de563c6aeb1b9d0c5be4afe717305477.tar.bz2
[svn-r27576] - mark the entry as indepndent when expunged.
- disable the metadata coll hint for smoke checks 1 & 2.
Diffstat (limited to 'testpar')
-rw-r--r--testpar/t_cache.c24
1 files changed, 2 insertions, 22 deletions
diff --git a/testpar/t_cache.c b/testpar/t_cache.c
index 8072215..191cd87 100644
--- a/testpar/t_cache.c
+++ b/testpar/t_cache.c
@@ -7561,14 +7561,6 @@ main(int argc, char **argv)
world_mpi_rank, FUNC);
}
}
- if ( H5Pset_coll_metadata_read(fapl, 1) < 0 ) {
-
- nerrors++;
- if ( verbose ) {
- HDfprintf(stdout, "%d:%s: H5Pset_coll_metadata_read() failed 1.\n",
- world_mpi_rank, FUNC);
- }
- }
}
setup_rand();
@@ -7599,18 +7591,6 @@ main(int argc, char **argv)
smoke_check_2(H5AC_METADATA_WRITE_STRATEGY__PROCESS_0_ONLY);
smoke_check_2(H5AC_METADATA_WRITE_STRATEGY__DISTRIBUTED);
#endif
- /* MSC - smoke check 3 and 4 do independent reads, so we disable
- the collective metadata read property here */
- if ( world_mpi_rank != world_server_mpi_rank ) {
- if ( H5Pset_coll_metadata_read(fapl, 0) < 0 ) {
-
- nerrors++;
- if ( verbose ) {
- HDfprintf(stdout, "%d:%s: H5Pset_coll_metadata_read() failed 1.\n",
- world_mpi_rank, FUNC);
- }
- }
- }
#if 1
smoke_check_3(H5AC_METADATA_WRITE_STRATEGY__PROCESS_0_ONLY);
smoke_check_3(H5AC_METADATA_WRITE_STRATEGY__DISTRIBUTED);
@@ -7619,9 +7599,9 @@ main(int argc, char **argv)
smoke_check_4(H5AC_METADATA_WRITE_STRATEGY__PROCESS_0_ONLY);
smoke_check_4(H5AC_METADATA_WRITE_STRATEGY__DISTRIBUTED);
#endif
- /* re-enable the collective metadata read property */
+ /* enable the collective metadata read property */
if ( world_mpi_rank != world_server_mpi_rank ) {
- if ( H5Pset_coll_metadata_read(fapl, 0) < 0 ) {
+ if ( H5Pset_coll_metadata_read(fapl, 1) < 0 ) {
nerrors++;
if ( verbose ) {