diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2006-08-11 18:47:44 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2006-08-11 18:47:44 (GMT) |
commit | 67eba917e2ae0c97015dbcc116a582da73ceb389 (patch) | |
tree | a134c186b829248d999ffdea4927c4da939e0042 /test/fheap.c | |
parent | b648c14f13498349a743e9ef925399a8e6b592de (diff) | |
download | hdf5-67eba917e2ae0c97015dbcc116a582da73ceb389.zip hdf5-67eba917e2ae0c97015dbcc116a582da73ceb389.tar.gz hdf5-67eba917e2ae0c97015dbcc116a582da73ceb389.tar.bz2 |
[svn-r12565] Description:
Move metadata cache address rename for fractal heap indirect block
immediately after reallocing the storage on disk - to prevent another
routine in the library from confusing the cache by allocating more storage
and attempting to insert it in metadata cache at the old block's location.
Gotta like those monte carlo/random insert & delete tests, which exposed
this... :-)
Tested:
Solaris 2.9 (shanti)
Not failing on other machines
Diffstat (limited to 'test/fheap.c')
-rw-r--r-- | test/fheap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/fheap.c b/test/fheap.c index 1afda73..b6d9aa2 100644 --- a/test/fheap.c +++ b/test/fheap.c @@ -11075,7 +11075,7 @@ test_man_random_pow2(hsize_t size_limit, hid_t fapl, H5HF_create_t *cparam, fhea /* Choose random # seed */ seed = (unsigned long)HDtime(NULL); #ifdef QAK -seed = (unsigned long)1154963939; +seed = (unsigned long)1155181717; HDfprintf(stderr, "Random # seed was: %lu\n", seed); #endif /* QAK */ HDsrandom(seed); |