summaryrefslogtreecommitdiffstats
path: root/test/testhdf5.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2002-01-23 21:30:34 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2002-01-23 21:30:34 (GMT)
commit406492e3d24382735c4963e65ef0ce6911a1b78b (patch)
treefd86ee9825a131f6c382aa3ffe8513a328c02e8c /test/testhdf5.c
parent9627cb625db48ace93542ec136cfa85a28d1448e (diff)
downloadhdf5-406492e3d24382735c4963e65ef0ce6911a1b78b.zip
hdf5-406492e3d24382735c4963e65ef0ce6911a1b78b.tar.gz
hdf5-406492e3d24382735c4963e65ef0ce6911a1b78b.tar.bz2
[svn-r4853] Purpose:
Bug Fix Description: When file space was returned to the file space free-list for reuse, occasionally raw data allocations which used space from the free-list would overlap with the metadata accumulator and get over-written with the cached information in the accumulator, corrupting the data. Solution: Check if the space about to be recycled on the free-list is going to be used for raw data and also overlaps with the metadata accumulator cache, avoiding using space that fits those criteria. This fixes bug #701 Platforms tested: FreeBSD 4.5 (sleipnir)
Diffstat (limited to 'test/testhdf5.c')
-rw-r--r--test/testhdf5.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/testhdf5.c b/test/testhdf5.c
index 798c3ee..8f3e879f 100644
--- a/test/testhdf5.c
+++ b/test/testhdf5.c
@@ -170,6 +170,7 @@ main(int argc, char *argv[])
InitTest("iterate", test_iterate, cleanup_iterate, "Group & Attribute Iteration");
InitTest("array", test_array, cleanup_array, "Array Datatypes");
InitTest("genprop", test_genprop, cleanup_genprop, "Generic Properties");
+ InitTest("misc", test_misc, cleanup_misc, "Miscellaneous");
Verbosity = 4; /* Default Verbosity is Low */
H5get_libversion(&major, &minor, &release);