diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2006-12-08 19:44:20 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2006-12-08 19:44:20 (GMT) |
commit | 978c9c9d93fc51ea64c83256a97d72d51656bc3a (patch) | |
tree | 0f4064defe6e857fbcce12f26084aee7d8122645 /test | |
parent | 8f5f04bff27812dde0a888fceadaf1a3dc17cc8e (diff) | |
download | hdf5-978c9c9d93fc51ea64c83256a97d72d51656bc3a.zip hdf5-978c9c9d93fc51ea64c83256a97d72d51656bc3a.tar.gz hdf5-978c9c9d93fc51ea64c83256a97d72d51656bc3a.tar.bz2 |
[svn-r13034] Description:
Take out separate memory type in the file for SOHM objects and create
aliases for existing memory types for SOHM use.
Tested on:
FreeBSD/32 4.11 (sleipnir)
Diffstat (limited to 'test')
-rw-r--r-- | test/h5test.c | 3 | ||||
-rw-r--r-- | test/tsohm.c | 4 |
2 files changed, 3 insertions, 4 deletions
diff --git a/test/h5test.c b/test/h5test.c index bae9da2..086e812 100644 --- a/test/h5test.c +++ b/test/h5test.c @@ -86,9 +86,8 @@ MPI_Info h5_io_info_g=MPI_INFO_NULL;/* MPI INFO object for IO */ * g: Global heap * l: local heap (object names) * o: object headers - * h: shared object header message structures */ -static const char *multi_letters = "msbrgloh"; +static const char *multi_letters = "msbrglo"; static herr_t h5_errors(void *client_data); diff --git a/test/tsohm.c b/test/tsohm.c index e82ddb6..77a475f 100644 --- a/test/tsohm.c +++ b/test/tsohm.c @@ -2187,7 +2187,7 @@ static void test_sohm_size2(int close_reopen) */ if(btree_index.attrs1 > list_index_small.attrs1) VERIFY(0, 1, "h5_get_file_size"); - if(btree_index.attrs1 > list_index_med.attrs1) + if(btree_index.attrs1 > list_index_med.attrs1 * OVERHEAD_ALLOWED) VERIFY(0, 1, "h5_get_file_size"); if(list_index_med.attrs1 > btree_index.attrs1 * OVERHEAD_ALLOWED) VERIFY(0, 1, "h5_get_file_size"); @@ -2224,7 +2224,7 @@ static void test_sohm_size2(int close_reopen) VERIFY(0, 1, "h5_get_file_size"); if(list_index_small.attrs2 > btree_index.attrs2 * OVERHEAD_ALLOWED) VERIFY(0, 1, "h5_get_file_size"); - if(btree_index.attrs2 > list_index_med.attrs2) + if(btree_index.attrs2 > list_index_med.attrs2 * OVERHEAD_ALLOWED) VERIFY(0, 1, "h5_get_file_size"); if(list_index_med.attrs2 > btree_index.attrs2 * OVERHEAD_ALLOWED) VERIFY(0, 1, "h5_get_file_size"); |