summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* [svn-r21309] Add NSIS silent install optionAllen Byrne2011-08-251-0/+10
|
* [svn-r21299] Add fortran library depends to test fortran library buildAllen Byrne2011-08-231-2/+6
|
* [svn-r21297] Move all tests into DEPENDS structure so that clear-all-objects ↵Allen Byrne2011-08-231-310/+317
| | | | | | is first. Also preface all tests with H5REPACK.
* [svn-r21293] Moved Tools recent fixes (HDFFV-7649 and HDFFV-7659) ↵Jonathan Kim2011-08-221-4/+6
| | | | descriptions to correct section.
* [svn-r21291] I moved 2 items from the new feature of parallel library ↵Raymond Lu2011-08-221-4/+4
| | | | | | | category to the new feature of library category, which is an appropriate place. No test is needed.
* [svn-r21287] I added a new file H5HGquery.c.Raymond Lu2011-08-221-1/+1
| | | | Not tested yet.
* [svn-r21284] I added a new file H5Fcwfs.c.Raymond Lu2011-08-221-1/+1
| | | | Not tested yet.
* [svn-r21281] Correct IF/ENDIF argumentsAllen Byrne2011-08-221-2/+2
|
* [svn-r21278] Document fix for bug HDFFV-7641.Albert Cheng2011-08-221-0/+2
|
* [svn-r21277] Bug fix: HDFFV-7641Albert Cheng2011-08-221-2/+2
| | | | | | | Corrected mismatched function name typo of h5pget_dxpl_mpio_c and h5pfill_value_defined_c. Tested: Jam. (Note: Allen has fixed trunk version of these already.)
* [svn-r21276] Snapshot version 1.8 release 8 (snap10)HDF Tester2011-08-227-23/+23
|
* [svn-r21264] Purpose:Jonathan Kim2011-08-1911-61/+306
| | | | | | | | | | | | | | | | | | | | | Work for: HDFFV-7515 - GMQS: h5unjam - incorrect help page and should display when no file is given. and HDFFV-5941 - h5jam: specifying a user block file with a proper HDF5 magic number will result in a corrupted HDF5 file. Description: - Merged from HDF5 trunk r21236, - Revised command help pages of h5jam and h5unjam. The descriptions were not up to date and some were missing. (HDFFV-7515) - Fixed h5jam not to allow specifying an HDF5 formatted file as input file for -u (user block file) option, because the original HDF5 file will not be accessible if allows. (HDFFV-5941) Tested: jam (linux32-LE), koala (linux64-LE), heiwa (linuxppc64-BE), tejeda (mac32-LE), linew (solaris-BE), cmake (jam, win)
* [svn-r21255] Issue 7674 - clang compiler reported an error with line 334:Raymond Lu2011-08-181-1/+1
| | | | | | | | | temp_point->l = (unsigned long long)((i * 100 + j * 1000) * n); The value can overflow the signed int before being converted to unsigned long long. So I changed it to temp_point->l = (unsigned long long)((i * 40 + j * 400) * n); to keep it under the maximal value. Tested on jam. Simple change.
* [svn-r21250] I skipped two test cases (in two functions ↵Raymond Lu2011-08-181-0/+2
| | | | | | test_delete_obj_named and test_delete_obj_named_fileid) for VMS using the macro H5_CANNOT_OPEN_TWICE because they open the same file twice. Tested on jam.
* [svn-r21239] Description:Jonathan Kim2011-08-176-6/+69
| | | | | | | | | Merged from HDF5 trunk r21237. Add test cases for HDFFV-7656 - "--delta=something" considers two NaN of the same type are different. The fix was added (r21105) before but test cases were incorrectly added and missing for cmake script. Tested: jam (linux32-LE), koala (linux64-LE), tejeda (mac32-LE), cmake (jam)
* [svn-r21226] Snapshot version 1.8 release 8 (snap9)HDF Tester2011-08-157-23/+23
|
* [svn-r21221] The original code Raymond Lu2011-08-121-1/+12
| | | | | | | | | i_mask = ~((unsigned)~0 << (precision[0] + offset[0])) & ((unsigned)~0 << offset[0]); in line 3680 left shifted a 32-bit integer for 32-bit. The result is undefined by C language. A user discovered it using clang compiler with -fcatch-undefined-behavior option (see Issue 7674 in Jira). So I changed it in a funny way to avoid it. Tested on jam. But I tested the same change for the trunk with h5committest.
* [svn-r21218] Corrected cmake installed library build indicator.Allen Byrne2011-08-103-6/+12
| | | | Added COMPILE_FLAGS for windows fortran builds
* [svn-r21217] Change CTEST_NAME to HDF5 - the project nameAllen Byrne2011-08-105-41/+29
| | | | | | | Implement InitOnceExecuteOnce - HDFFV-5929 Change command to generate output source files Tested: local linux, windows
* [svn-r21216] Alter clear-objects tests to mate with test that generates ↵Allen Byrne2011-08-103-60/+128
| | | | | | object file. Tested: local linux
* [svn-r21215] Correct location of xml schema files. JIRA HDFFV-7688Allen Byrne2011-08-101-0/+7
|
* [svn-r21213] Merged comment commit from trunk: 21209Dana Robinson2011-08-101-0/+6
|
* [svn-r21211] Correct location of xml schema files. JIRA HDFFV-7688Allen Byrne2011-08-1062-66/+66
|
* [svn-r21199] Change default fortran compiler to gfortranAllen Byrne2011-08-092-4/+7
| | | | Tested: cygwin
* [svn-r21186] Snapshot version 1.8 release 8 (snap8)HDF Tester2011-08-087-23/+23
|
* [svn-r21183] Description: unset the executable permissions for source files:Scot Breitenfeld2011-08-072-0/+0
| | | | | | tstimage.f90 and tsttable.f90. Tested: none.
* [svn-r21182] Desciption: brought revision 21157 from the trunk to the ↵Scot Breitenfeld2011-08-072-13/+25
| | | | | | | | branch. Fixes hl bug HDFFV-7673 -- DS library segfaults when retrieveing length of the dimension label that was not set Tested: jam (gnu 4.5 compiler)
* [svn-r21165] Remove subfolder in library installAllen Byrne2011-08-011-6/+6
| | | | Tested: local linux
* [svn-r21164] Remove test library from export listAllen Byrne2011-08-011-1/+0
| | | | Tested: local linux
* [svn-r21159] Snapshot version 1.8 release 8 (snap7)HDF Tester2011-08-017-23/+23
|
* [svn-r21153] Description:Quincey Koziol2011-07-286-0/+205
| | | | | | | | | | | | | | Bring r21152 from trunk to 1.8 branch: Further patches for Jira 7638, to ensure that H5D/Aget_type will be attached to the correct top file. (This change to the library should reverted when Jira 7638 is finally finished) Tested on: FreeBSD/32 8.2 (loyalty) w/gcc4.6, w/C++ & FORTRAN, in debug mode Linux/32 2.6 (jam) w/PGI compilers, w/default API=1.8.x, w/C++ & FORTRAN, w/threadsafe, in debug mode (h5committested on trunk)
* [svn-r21151] Description:Jonathan Kim2011-07-269-94/+136
| | | | | | | | | | | | | Merged from HDF5 trunk r21105 Fixed two bugs: - h5repack: h5repack failed to copy dataset if the layout is changed from c hunked with unlimited dims to contiguous. (PC -- 2011/07/15) - h5diff: "--delta" option considers two NaN of the same type are different , which is wrong based on http://www.hdfgroup.org/HDF5/doc/RM/Tools.html#Tools-Diff. (PC -- 2011/07/15) Tested: jam (linux32-LE), koala (linux64-LE), heiwa (linuxppc64-BE), tejeda (mac32-LE), linew (solaris-BE)
* [svn-r21150] Snapshot version 1.8 release 8 (snap6)HDF Tester2011-07-257-23/+23
|
* [svn-r21147] Removed Absoft Fortran compiler from Platforms Tested section.Larry Knox2011-07-231-1/+0
| | | | No test - doc file only.
* [svn-r21145] Updated RELEASE.txtLarry Knox2011-07-231-14/+6
| | | | | | | | - removed g95 and f95 from Platforms tested section - replaced amani with koala - removed NCSA abe No test - doc file only.
* [svn-r21144] No access to any AIX system any more.Albert Cheng2011-07-231-8/+0
| | | | Removed entries of AIX as tested platform.
* [svn-r21138] Description:Quincey Koziol2011-07-211-2/+2
| | | | | | | | | | Bring r21137 from trunk to 1.8 branch: Tiny change to reduce code coupling w/H5F package. Tested on: FreeBSD/32 8.2 (loyalty) w/debug (too minor to require h5committest)
* [svn-r21136] Description:Quincey Koziol2011-07-218-120/+438
| | | | | | | | | | Bring r21135 from trunk to 1.8 branch: More code cleanups to reduce coupling with the H5F package. Tested on: FreeBSD/32 8.2 (loyalty) w/gcc4.6, w/C++ & FORTRAN, in debug mode (h5committested on trunk)
* [svn-r21134] Description:Quincey Koziol2011-07-2019-225/+668
| | | | | | | | | | | | | | | | | | Bring r21133 from trunk to 1.8 branch: More code cleanups to reduce coupling between packages that use the H5F internal routines, but really aren't part of the H5F "package". Tested on: FreeBSD/32 8.2 (loyalty) w/gcc4.6, w/C++ & FORTRAN, in debug mode FreeBSD/64 8.2 (freedom) w/gcc4.6, w/C++ & FORTRAN, in debug mode Linux/32 2.6 (jam) w/PGI compilers, w/default API=1.8.x, w/C++ & FORTRAN, w/threadsafe, in debug mode Linux/64-amd64 2.6 (koala) w/Intel compilers, w/default API=1.6.x, w/C++ & FORTRAN, in production mode Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN, w/szip filter, w/threadsafe, in production mode Linux/PPC 2.6 (heiwa) w/C++ & FORTRAN, w/threadsafe, in debug mode
* [svn-r21132] Description:Quincey Koziol2011-07-201-3/+16
| | | | | | | | | | | | | Bring r21131 from trunk to 1.8 branch: Disable some test code that isn't going to work correctly again until we've completely resolved Jira issue #7638. Tested on: FreeBSD/32 8.2 (loyalty) w/gcc4.6, w/C++ & FORTRAN, in debug mode Linux/64-amd64 2.6 (koala) w/Intel compilers, w/default API=1.6.x, w/C++ & FORTRAN, in production mode (h5committested on trunk)
* [svn-r21130] Description:Quincey Koziol2011-07-2015-160/+501
| | | | | | | | | | | | | | | | Bring r21126 from trunk to 1.8 branch: Clean up some compiler warnings, but mainly an interim checkin on the path of reducing code coupling in the library by removing most of the places which were accessing H5F package definitions. Tested on: Mac OS X/32 10.6.8 (amazon) w/debug FreeBSD/32 8.2 (loyalty) w/debug FreeBSD/64 8.2 (freedom) w/debug Linux/32 2.6 (jam) w/debug Linux/64 2.6 (koala) w/debug Linux/64 2.6 (heiwa) w/debug
* [svn-r21129] Description:Quincey Koziol2011-07-201-6/+6
| | | | | | | | | | Bring half of r21125 from trunk to 1.8 branch: Correct char arrays that were too small for strings defined. Tested on: FreeBSD/32 8.2 (loyalty) w/debug (h5committested on trunk)
* [svn-r21128] Description:Quincey Koziol2011-07-201-4/+4
| | | | | | | | | | | Bring r21127 from trunk to 1.8 branch: Correct to use correct FAPL, to fix error when running 'make check-vfd' Tested on: Linux/64 2.6 (koala) w/make check-vfd FreeBSD/32 8.2 (loyalty) w/debug (h5committested on trunk)
* [svn-r21122] Description:Quincey Koziol2011-07-185-6/+218
| | | | | | | | | | | | | Bring r21120 from trunk to 1.8 branch: Check in ugly version of fix for Jira #7638. I'm going to leave the issue open in Jira and when the library has been refactored to use shared file pointers (instead of top file pointers) for file operations, I'll uncomment the check in src/H5Oshared.c Tested on: Mac OS X/32 10.6.8 (amazon) w/debug (too small for h5committest)
* [svn-r21114] Description:Jonathan Kim2011-07-182-2/+2
| | | | | | | | | | | | | | | | Revert the previous makefile change as release snapshot test failed with MANIFEST check. Don't clean 'testfiles' dir via 'make distclean' for the case of build&test in source dir. In regular daily testings, we build&test in seperate dir from source dir, so no issues occurred. However for the release snapshot test, it seems that we build&test in source dir. The previous change can remove testfiles in source dir if build&test is done in source dir becasue currently the dir name 'testfiles' is same in source dir and test dir. Other task (7602) may need to change to use different name for the test directory, so 'make distclean' can do its job without interrupting MANIFEST.
* [svn-r21111] Renamed test files to more descriptive nameAllen Byrne2011-07-1838-299/+289
| | | | Tested: local linux
* [svn-r21094] Add section on updating paths in VS2010Allen Byrne2011-07-123-5/+35
|
* [svn-r21092] Needed to remove the "echo Expected Results" section due to ↵Allen Byrne2011-07-114-84/+68
| | | | removal from reference files
* [svn-r21089] Add dependicies for tests to address issues when run in parallelAllen Byrne2011-07-111-0/+10
|
* [svn-r21087] Add new clear-objects tests to valgrind ignore listAllen Byrne2011-07-111-0/+8
|