summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2015-06-29 15:19:34 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2015-06-29 15:19:34 (GMT)
commit89115b11b0ed2f51c6d80305301a60c7cba8c916 (patch)
tree114c6377c5cfd835d9abf86b62e143c9fb4dd79b /test
parent8e94745298c2ceacf80b21f0d16e887217527916 (diff)
downloadhdf5-89115b11b0ed2f51c6d80305301a60c7cba8c916.zip
hdf5-89115b11b0ed2f51c6d80305301a60c7cba8c916.tar.gz
hdf5-89115b11b0ed2f51c6d80305301a60c7cba8c916.tar.bz2
[svn-r27294] Description:
Clean up parameters to H5C__flush_single_entry: accept cache entry instead of address, and make new flag for deleting entry from skiplist on destroy instead of a separate parameter to the routine. Tested on: MacOSX/64 10.10.3 (amazon) w/serial & parallel Linux/32 2.6.x (jam) w/serial & parallel
Diffstat (limited to 'test')
-rw-r--r--test/cache.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/cache.c b/test/cache.c
index 8e8f36a..26f7250 100644
--- a/test/cache.c
+++ b/test/cache.c
@@ -34878,8 +34878,8 @@ check_stats__smoke_check_1(H5F_t * file_ptr)
if ( ( cache_ptr->total_ht_insertions != 33 ) ||
( cache_ptr->total_ht_deletions != 1 ) ||
- ( cache_ptr->successful_ht_searches != 65 ) ||
- ( cache_ptr->total_successful_ht_search_depth != 195 ) ||
+ ( cache_ptr->successful_ht_searches != 32 ) ||
+ ( cache_ptr->total_successful_ht_search_depth != 96 ) ||
( cache_ptr->failed_ht_searches != 33 ) ||
( cache_ptr->total_failed_ht_search_depth != 52 ) ||
( cache_ptr->max_index_len != 32 ) ||
@@ -34989,8 +34989,8 @@ check_stats__smoke_check_1(H5F_t * file_ptr)
if ( ( cache_ptr->total_ht_insertions != 33 ) ||
( cache_ptr->total_ht_deletions != 33 ) ||
- ( cache_ptr->successful_ht_searches != 98 ) ||
- ( cache_ptr->total_successful_ht_search_depth != 198 ) ||
+ ( cache_ptr->successful_ht_searches != 33 ) ||
+ ( cache_ptr->total_successful_ht_search_depth != 99 ) ||
( cache_ptr->failed_ht_searches != 33 ) ||
( cache_ptr->total_failed_ht_search_depth != 52 ) ||
( cache_ptr->max_index_len != 32 ) ||