summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* [svn-r22646] Description:Quincey Koziol2012-08-0833-109/+168
| | | | | | | | | Changes resulting from Klocwork static analysis tool, from Mark Miller @ LLNL (miller86@llnl.gov). Tested on: Mac OS X/64 10.7.4 (amazon) w/debug, C++ & FORTRAN, using gcc 4.7.x (too minor to require h5committest)
* [svn-r22642] Correct check for filters in tools testAllen Byrne2012-08-082-8/+29
|
* [svn-r22637] Remove legacy command to kill MPI processes on obj to obj testing.Allen Byrne2012-08-061-18/+9
| | | | Tested: Windows, jam, koala
* [svn-r22633] Correct packaing infoAllen Byrne2012-08-061-5/+6
|
* [svn-r22631] Move executable statement to after declarationsAllen Byrne2012-08-061-2/+2
|
* [svn-r22629] Snapshot version 1.9 release 124Larry Knox2012-08-0514-30/+30
|
* [svn-r22627] Description:Quincey Koziol2012-08-0317-95/+179
| | | | | | | | | Merge some of the changes on the plist_encode_decode branch back to the trunk. Tested on: Mac OSX/64 10.7.4 (amazon) w/debug (Too minor to require h5committest)
* [svn-r22625] HDFFV-8111: h5diff compare file to itself - removed path shortcutAllen Byrne2012-08-0310-464/+217
|
* [svn-r22624] The cmake folder needed a local variable to not include a "." ↵Allen Byrne2012-08-031-5/+7
| | | | as one of the path components on windows.
* [svn-r22622] Windows config is up one levelAllen Byrne2012-08-021-1/+3
|
* [svn-r22620] Add ${CMAKE_RUNTIME_OUTPUT_DIRECTORY} to default include_dirsAllen Byrne2012-08-022-23/+3
| | | | Correct cmake packaging names
* [svn-r22618] Jonathan Kim2012-08-013-16/+5
| | | | | | | | | | | | | | Purpose: HDFFV-8003 - ph5diff (parallel h5diff): daily test failure on ember intermittently during non comparable test file comparison HDFFV-7755 - parallel h5diff : hanging on koala intermittently during non comparable test file comparison Description: non-comparable test intermittently hung on koala and ember, but not on jam. it didn't occur until -np reaches 4 or bigger. it occurred once out of many repeated attempts of the same test. There was a incorrectly (mistakenly?) duplicated code in MPI section which caused such hang in a certain condition. The test used more processes than other tests, which increased chance to trigger more undone processes, and such process could enter the incorrect code section and wait for wrong pair of send. it explains why it occurred intermittently according to machine condition and using a certain feature. Removed incorrect code which blocked correct code. Tested: some manually repeated test performed jam (linux32-LE), koala (linux64-LE), ostrich (linuxppc64-BE)
* [svn-r22617] Purpose:Jonathan Kim2012-08-0111-61/+174
| | | | | | | | | | | | | | | Fix for HDFFV-8107 testh5diff will fail if build/test in HDF5 source tree Description: This is sub-task for "HDFFV-8105 testh5diff.sh uses the wrong operator (-a) in an if statement." From the HDFFV-8105's update, h5diff test failed if build&test is performed in HDF5 source tree because 'cp' try to copy test files to self dir. It's addressed by skipping if cp's src dir and dest dir is same. Also this applied for all other tools under src/tools dir. No change to the CMakeLists.txt files because CMake cautions/demands that in-source builds be avoided. Tested: jam (linux32-LE), koala (linux64-LE), ostrich (linuxppc64-BE), tejeda (mac32-LE), linew (solaris-BE), some manual tests as well
* [svn-r22614] Revert heading of summary.Allen Byrne2012-07-301-1/+1
|
* [svn-r22611] Fixed: HDFFV-8013 H5LTget_attribute_string appears to not ↵Scot Breitenfeld2012-07-271-2/+7
| | | | | | close an object identifier Tested: gnu and intel (jam)
* [svn-r22610] HDFFV-8055 H5TBdelete_record destroys data after the deleted rowScot Breitenfeld2012-07-272-2/+125
| | | | | | Added fix and test case. Tested: gnu and intel (jam)
* [svn-r22608] Description:Quincey Koziol2012-07-2647-488/+689
| | | | | | | | | | | | | | | Switch propert list/class iteration from internal to external form of iteration, cleaning up and simplifying the code a bit. Bring other general improvements from plist_encode_decode branch back to trunk. Clean up many warnings. Tested on: Mac OSX/64 10.7.4 (amazon) w/gcc 4.7, debug and C++ & FORTRAN (too minor to require h5committest)
* [svn-r22606] Correct typo from cut/pasteAllen Byrne2012-07-261-5/+4
|
* [svn-r22605] Skip test that require h5diff to compress when the DEFALTE ↵Allen Byrne2012-07-262-4/+42
| | | | filter is unavailable
* [svn-r22604] cast void* to char* for calculationAllen Byrne2012-07-261-6/+6
| | | | Issue on windows
* [svn-r22602] Allen Byrne2012-07-2513-729/+705
|
* [svn-r22601] Purpose: Fix HDFFV-5853Neil Fortner2012-07-2516-31/+155
| | | | | | | | | | | | | | Description: When jumping out from between H5_BEGIN_TAG and H5_END_TAG macros using HGOTO_ERROR or HGOTO_DONE, the previous metadata tag is not reset on the dxpl. This could cause problems when, for example, calling H5Ocopy within an H5Literate callback. Added new HGOTO_ERROR_TAG and HGOTO_DONE_TAG macros which must be used in place of the above between H5_BEGIN_TAG and H5_END_TAG. Tested: jam, koala, ostrich (h5committest), durandal
* [svn-r22599] FinHDF5 should be generated during build.Allen Byrne2012-07-242-1/+86
|
* [svn-r22598] BE machines have a different offset in STORAGE_LAYOUT then the ↵Allen Byrne2012-07-232-1/+24
| | | | | | | | LE machines. Use h5diff with -r to not report warnings. Tested: local with CMake and ostrich with shell script
* [svn-r22594] Bug fix: HDFFV-8105Albert Cheng2012-07-222-4/+5
| | | | | | | | | | | | | | | Description: The test command in COPY_TESTFILES_TO_TESTDIR used the wrong operator -a which means and. It is not sufficient to test mere existence as $tstfile could have been a directory or other non-file things. If the file is not readable, the $CP command would fail but its return code was not checked. Solution: Get rid of the test command and go ahead to $CP it and then check its returned code and report errors if detected. Tested; committested. (note that ostrick still failed on errors committed by other staff).
* [svn-r22590] correct reference file location in runTest commandAllen Byrne2012-07-201-1/+1
|
* [svn-r22589] Change strto functions to the HD prefix versions.Allen Byrne2012-07-201-5/+5
| | | | Tested: local
* [svn-r22588] HDFFV-721: h5dump supplies input for h5importAllen Byrne2012-07-1916-321/+2062
| | | | | Tested: local linux with cmake jam with configure
* [svn-r22582] Description:Quincey Koziol2012-07-1623-475/+742
| | | | | | | | | Refactor ID class registration to be more like how other "class"s in the library are registered, and clean up compiler warnings. Tested on: Mac OSX/64 10.7.4 (amazon) w/debug (Too minor to require h5comittest)
* [svn-r22581] HDFFV-588: hdump restrictions on filename for split files. ↵Allen Byrne2012-07-1610-54/+181
| | | | | | Added text and example to usage. Tested: local linux
* [svn-r22577] Windows compilers require declarations at top of routine.Allen Byrne2012-07-161-6/+5
|
* [svn-r22575] Issue 8068 - A user reported some random data in the padding of ↵Raymond Lu2012-07-131-2/+2
| | | | | | fill value. The problem happened in H5P_get_fill_value. I believe it's because the background buffer wasn't big enough. So I corrected it in this checkin. Tested on jam and koala - simple change.
* [svn-r22570] Correct name of error reference fileAllen Byrne2012-07-131-2/+2
|
* [svn-r22569] On windows read/write error reference file just like reference ↵Allen Byrne2012-07-131-0/+5
| | | | file before comparision. This will set the line endings.
* [svn-r22568] fix another typo - due to wrong edit state!Allen Byrne2012-07-121-1/+1
|
* [svn-r22567] HDFFV-7784: add attributes to the list of file contents option ↵Allen Byrne2012-07-1217-77/+224
| | | | | | | | for h5dump. This is accomplished by adding an optional value to the option (-n) Created test and reference files. Tested: local linux with cmake
* [svn-r22566] correct typo of new files namesAllen Byrne2012-07-121-2/+2
|
* [svn-r22564] HDFFV-8095: index order of links wrongAllen Byrne2012-07-124-0/+154
| | | | | | | | Create setters for indexing options in h5trav.c to be set before the obj table is created. Revert h5trav_print to remove now duplicated parameters. Added test and testfiles. Tested: local linux with cmake
* [svn-r22563] HDFFV-8095: index order of links wrongAllen Byrne2012-07-127-6/+44
| | | | | | | | Create setters for indexing options in h5trav.c to be set before the obj table is created. Revert h5trav_print to remove now duplicated parameters. Added test and testfiles. Tested: local linux with cmake
* [svn-r22562] tattr-3err file missing from list in cmakeAllen Byrne2012-07-121-0/+1
|
* [svn-r22561] Add errfile to list.Allen Byrne2012-07-124-33/+36
| | | | Create missing errfile, edit ddl file for test only on linux (not using cmake).
* [svn-r22560] Changes to allow tests to compare error files!Allen Byrne2012-07-121-3/+28
|
* [svn-r22557] Add missing test fileAllen Byrne2012-07-111-0/+1
|
* [svn-r22556] HDFFV-7936: added error files in h5dump folder and adjusted ↵Allen Byrne2012-07-1144-330/+1370
| | | | | | | scripts to compare error files. Tested: local linux with cmake, jam with make check
* [svn-r22552] update commentAllen Byrne2012-07-111-1/+1
|
* [svn-r22550] Correct datatypes in generator and update files for test.Allen Byrne2012-07-113-72/+72
| | | | Tested: local linux with cmake
* [svn-r22548] added test for "-w0" optionAllen Byrne2012-07-104-0/+140
| | | | Tested: local linux
* [svn-r22547] Remove clear-objects from ignore list (like h5import)Allen Byrne2012-07-101-3/+0
|
* [svn-r22546] Correct generation of testfileAllen Byrne2012-07-103-43/+47
|
* [svn-r22545] Enable H5IMPORT-clear-objects for valgrindAllen Byrne2012-07-101-1/+1
| | | | Tested: local linux