summaryrefslogtreecommitdiffstats
path: root/release_docs
Commit message (Collapse)AuthorAgeFilesLines
* [svn-r18748] Snapshot version 1.8 release 4 (snap21)HDF Tester2010-05-101-1/+1
|
* [svn-r18710] Purpose:Mike McGreevy2010-05-051-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | Improve configure's large-file support control. Description: Modified configure to now attempt to add defines necessary for supporting largefiles on all systems, instead of solely on linux. This is in response to user requests to enable largefile support on Solaris by default, as well as to give extra control on AIX (instead of just jamming the necessary flag into the config files). The old --enable-linux-lfs flag is being deprecated in favor of the --enable-largefile flag (enabled by default), which can be used on all platforms. --disable-linux-lfs can still be used to disable largefile support (on linux) when the --enable-largefile flag is not specified. On systems where large files cannot be supported in this manner, configure will report as such. Tested: h5committest AIX (NCSA's blue_print machine) duty, liberty, and linew.
* [svn-r18707] I added an item in the Known Problems for the compiler's ↵Raymond Lu2010-05-051-0/+5
| | | | | | | rounding problem on Cygwin running on Windows XP. It happens in dt_arith.c when converting from unsigned long long to long double (see bug #1813).
* [svn-r18688] Snapshot version 1.8 release 4 (snap20)HDF Tester2010-05-031-1/+1
|
* [svn-r18591] Snapshot version 1.8 release 4 (snap19)HDF Tester2010-04-191-1/+1
|
* [svn-r18580] Purpose:Mike McGreevy2010-04-151-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Autotool Upgrade / Libtool Bug Fix Description: Updated autotools referenced in bin/reconfigure as follows: Autoconf 2.64 --> Autoconf 2.65 Automake 1.11 --> Automake 1.11.1 Libtool 2.2.6a --> Libtool 2.2.6b-mcg The referenced libtool version is a custom version of 2.2.6b. It has been tweaked to fix a bug in libtool that occurs when using PGI 10.0 compilers. A check incorrectly categorizes the C++ compiler as version 1.0 instead of 10.0, and the link line is subsequently set up incorrectly and fails to compile. A patch has been made available and will be included in the next release of libtool, but in the meantime I've applied the patch to a custom installation as indicated above. This bin/reconfigure now references the custom installation, and the resulting configure script will correctly categorize the PGI 10.0 C++ compiler. Ran bin/reconfigure to regenerate configure and makefiles. Tested: jam and amani with PGI 10.0 compilers. h5committest
* [svn-r18546] Snapshot version 1.8 release 4 (snap18)HDF Tester2010-04-121-1/+1
|
* [svn-r18536] Purpose: Fix bug 1815Neil Fortner2010-04-081-0/+2
| | | | | | | | | | | Description: Attempting to copy an object with NULL references (all bytes zero) with the H5O_COPY_EXPAND_REFERENCE_FLAG flag set would cause a failure or an assertion (depending on whether it was in debug mode). Changed copy routine to detect NULL references (object and region) and avoid attempting to expand the reference in this case. Tested: jam, linew, amani (h5committest)
* [svn-r18507] Purpose:Mike McGreevy2010-04-021-0/+6
| | | | | | | | | | | | | | | | | | | | Fix Bug 1730 (in 1.8) Description: This is a fix for Bug 1730. Note that this fix is only going into 1.8, as there is a more desired fix prepared for the trunk, but we don't want that one in 1.8 for compatibility reasons. This change adds a mechanism to the H5I interface to save returned ID structures for immediate re-use if needed. This addresses a potential performance issue by delaying the case when the next ID to be registered has grown so large that it wraps around and needs to be checked to see if it is available for distribution again. Tested: h5committest, and manually on jam, amani, liberty, others.
* [svn-r18467] Snapshot version 1.8 release 4 (snap17)HDF Tester2010-03-291-1/+1
|
* [svn-r18446] Purpose: Fix bug 1637Neil Fortner2010-03-241-0/+2
| | | | | | | | | | Description: Modified algorithm for extending a dataset with early allocation so it only deals with the new chunks. Formerly, it would loop over all chunks, checking to see if each existed in cache and on disk, causing major performance issues with large numbers of chunks. Tested: jam, linew, amani (h5committest)
* [svn-r18434] Snapshot version 1.8 release 4 (snap16)HDF Tester2010-03-221-1/+1
|
* [svn-r18408] Snapshot version 1.8 release 4 (snap15)HDF Tester2010-03-151-1/+1
|
* [svn-r18396] Purpose: Fix links.c failureNeil Fortner2010-03-091-0/+2
| | | | | | | | | | | | | | | | Description: The core file driver previously matched files only based on the name used to open them, even when a backing store is used. This caused problems in the failing test when it traversed an external link to itself, and did not recognize that it was the same file. Similar tests in links.c were skipped when the core file driver was used. The failure was previously masked by inappropriate file flushes caused by external link traversal. Added code to the core file driver to keep track of low level file information of the backings store to allow for accurate recognition of duplicate files. Also re-enabled all links.c tests for the core file driver. Tested: Fedora (core and sec2 drivers; no time for full commit test, will monitor daily tests)
* [svn-r18377] Purpose: Fix bug 1733Neil Fortner2010-03-051-0/+3
| | | | | | | | | Description: Support for expanding external links was not implemented in H5Ocopy, even though a flag existed for H5Pset_copy_object to enable this. This patch implements this feature. Tested: jam, amani, linew (h5committest); Fedora
* [svn-r18375] Purpose: Fix bugs involving external linksNeil Fortner2010-03-051-0/+2
| | | | | | | | | | | | Description: Previously, the library would reopen the source file when traversing an external link if unable to find the target file otherwise. This has been corrected. Also moved the call to H5F_flush from H5F_try_close to H5F_dest, so the file is only flushed when the last identifier for the file is closed. This prevernts situations where the library could attempt to flush a file with protected metadata. Tested: jam, amani, linew (h5committest); Fedora
* [svn-r18351] Snapshot version 1.8 release 4 (snap14)HDF Tester2010-02-281-1/+1
|
* [svn-r18309] Description:Quincey Koziol2010-02-231-1/+4
| | | | Added information to the release notes for fixing Bz#1755.
* [svn-r18307] Snapshot version 1.8 release 4 (snap13)HDF Tester2010-02-221-1/+1
|
* [svn-r18279] Purpose:Jonathan Kim2010-02-191-0/+6
| | | | | | | | | | Work for bugzilla 1754: h5diff: support comparing through links. Description: merged from hdf5 trunk (18164, 18165, 18166, 18167, 18170, 18266, 18273) Tested: h5committest (jam, amani and linew)
* [svn-r18263] Purpose: Fix bug in b-tree codeNeil Fortner2010-02-161-0/+3
| | | | | | | | | | | | Description: In certain cases, removal of an object in a v1 b-tree would cause the leftmost key in the right neighbor to be overwritten. While this did not pose a problem for group b-trees, with chunked datasets it would overwrite the offset value of the neighbor's leftmost child, causing corruption. Reworked the code to differentiate between b-trees whose children are fundamentally associated with their left key and those who are associated with their right key. Tested: jam, linew, amani (h5committest)
* [svn-r18255] Snapshot version 1.8 release 4 (snap12)HDF Tester2010-02-141-1/+1
|
* [svn-r18234] Snapshot version 1.8 release 4 (snap11)HDF Tester2010-02-121-1/+1
|
* [svn-r18219] Snapshot version 1.8 release 4 (snap10)HDF Tester2010-02-081-1/+1
|
* [svn-r18203] Snapshot version 1.8 release 4 (snap9)HDF Tester2010-02-021-1/+1
|
* [svn-r18202] I added a known problem item. Please see bug report #1279.Raymond Lu2010-02-021-0/+9
| | | | No test is needed.
* [svn-r18201] Snapshot version 1.8 release 4 (snap8)HDF Tester2010-02-011-1/+1
|
* [svn-r18161] Snapshot version 1.8 release 4 (snap7)HDF Tester2010-01-251-1/+1
|
* [svn-r18121] Snapshot version 1.8 release 4 (snap6)HDF Tester2010-01-171-1/+1
|
* [svn-r18101] SnapshotHDF Tester2010-01-101-1/+1
|
* [svn-r18062] SnapshotHDF Tester2010-01-041-1/+1
|
* [svn-r18058] SnapshotHDF Tester2009-12-271-1/+1
|
* [svn-r18049] SnapshotHDF Tester2009-12-211-1/+1
|
* [svn-r18014] SnapshotHDF Tester2009-12-141-1/+1
|
* [svn-r17990] Tested MinGW environment on XP32 with latest environment and ↵Allen Byrne2009-12-112-35/+32
| | | | | | gcc 4.4.0 tools. Tested: Windows XP 32bit
* [svn-r17984] I put the bug fix info for #1584. No test is needed.Raymond Lu2009-12-101-0/+3
|
* [svn-r17975] SnapshotHDF Tester2009-12-071-1/+1
|
* [svn-r17941] Description:Quincey Koziol2009-12-011-1/+3
| | | | | | | | | | | | Bring r17939 from trunk to 1.8 branch: Handle external links from symlinked files by adding another check to look for "child" files for links from the actual location of the "parent" file, instead of from the location of the symlink. Tested on: FreeBSD/32 6.3 (duty) (h5committested on trunk)
* [svn-r17935] Updated AIX compilers information.Albert Cheng2009-11-271-3/+3
|
* [svn-r17933] Updated with new ibm compiler configure changes.Albert Cheng2009-11-261-1/+4
|
* [svn-r17921] Purpose:Jonathan Kim2009-11-201-0/+2
| | | | | | | | | | | | | | | | Fix Bug1672 - Display garbage value on LE machine for BE data. Description: Casuing by calling diff_dataset twice when -r or no option was given. Change to call it once which fix the problem. It also improves the performance. (diffing time in half) According further test, it also occurred on BE machine as well and it seems occruing only with the BE data attached to Bugzilla. Don't know how the file was created. Anyway this fix will prevent from diffing with garbage values in similiar potential case. Tested on: linux32 (jam) , linux64 (almani), solaris (linew)
* [svn-r17872] Maintenance: Added 1.8.4 release information to the branch ↵Elena Pourmal2009-11-121-1/+492
| | | | history file.
* [svn-r17868] Maintenance: Added information about gfortran to the list of ↵Elena Pourmal2009-11-101-7/+12
| | | | | | the compilers used for testing.
* [svn-r17833] Maintenance: Fixed C++ compiler information while checking it ↵Elena Pourmal2009-11-041-2/+2
| | | | for 1.8.4 release
* [svn-r17829] Updated the part of IBM SP to make it clearer why single ↵Albert Cheng2009-11-041-6/+10
| | | | | | process is needed during the build part.
* [svn-r17827] Updated information concerning Red Storm Qual.Albert Cheng2009-11-041-2/+2
|
* [svn-r17822] Removed entried of Spirit which has retired.Albert Cheng2009-11-041-6/+1
| | | | Updated OS information of Glory.
* [svn-r17820] Purpose:Mike McGreevy2009-11-041-10/+7
| | | | | | | | | | | | Updating RELEASE.txt Description: Clarifying explanation of --enable-static-exec behavior. Tested: Doc only, none needed.
* [svn-r17817] Removed Zeus and ubgl entries since they were not tested any more.Albert Cheng2009-11-041-9/+4
| | | | Added AIX known problem of testcheck_version.sh failure.
* [svn-r17812] Update RELEASE.txt for fractal heap filtering changes (r17807)Neil Fortner2009-11-031-1/+4
|