Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [svn-r20255] Bug 2115 - add H5_VERSION_GE and H5_VERSION_LE macros. I added ↵ | Raymond Lu | 2011-03-15 | 1 | -1/+68 |
| | | | | | | a new test case to show how to use them. Tested on jam and amani. | ||||
* | [svn-r20254] Description: | Jonathan Kim | 2011-03-15 | 3 | -6/+6 |
| | | | | | | | | | h5ls is used to verify for the result, so change the two tests not to run h5diff like others. This is related to the previous checkin SVN r18398 for Bug#1733. Tested: jam (linux32-LE), amani (linux64-LE), heiwa (linuxppc64-BE), cmake (jam) | ||||
* | [svn-r20252] Add comment that indicates a "2" in the resultcode param means ↵ | Allen Byrne | 2011-03-15 | 1 | -0/+1 |
| | | | | "skip h5diff" component of test | ||||
* | [svn-r20251] Correct expected fail tests to check a result code of NOT 0 | Allen Byrne | 2011-03-15 | 1 | -2/+2 |
| | |||||
* | [svn-r20250] Enable memcheck of h5stat and h5diff tools | Allen Byrne | 2011-03-15 | 1 | -147/+0 |
| | |||||
* | [svn-r20249] Add test properties to H5LS for expected fail | Allen Byrne | 2011-03-15 | 3 | -27/+45 |
| | | | | Add SKIPPED to test name if test skipped, also do not run skipped tests if doing memcheck | ||||
* | [svn-r20247] Change name of new VLEN function from H5Tdetect_vlen_str to ↵ | Allen Byrne | 2011-03-14 | 4 | -10/+20 |
| | | | | | | | | h5tools_detect_vlen_str to match other functions in tools lib. Added back test for H5Tdetect_class of H5T_VLEN after each instance of above function to catch all VLEN types in h5dump. Tested: local linux | ||||
* | [svn-r20243] Update CMake version to 2.8.4 | Allen Byrne | 2011-03-14 | 1 | -1/+1 |
| | |||||
* | [svn-r20241] Corrected an error in the comments for H5Oget_comment(_by_name) ↵ | Raymond Lu | 2011-03-14 | 2 | -3/+3 |
| | | | | | | | | and H5G_loc_get_comment_cb: the return value is the size of the comment excluding NULL terminator. No test is needed. | ||||
* | [svn-r20239] Add HDFGroup to PACKAGE_NAME, as parent folder name for CPack ↵ | Allen Byrne | 2011-03-14 | 1 | -1/+1 |
| | | | | installation configuration. | ||||
* | [svn-r20231] Purpose: | Jonathan Kim | 2011-03-11 | 7 | -6/+32 |
| | | | | | | | | | | Fixed Bug 1904 - h5ls : usage of '-a' option is not clear to display expected output Description: Fixed incorrect content and improved help page for -a option of h5ls. Tested: jam (linux32-LE), amani (linux64-LE), heiwa (linuxppc64-BE), tejeda (mac32-LE), Cmake (jam) | ||||
* | [svn-r20228] Add tools bin folder to installation variables | Allen Byrne | 2011-03-10 | 1 | -0/+1 |
| | |||||
* | [svn-r20226] Entered known problem of --with-mpe does not work with mpich2. | Albert Cheng | 2011-03-10 | 1 | -0/+2 |
| | |||||
* | [svn-r20224] Add enable-error-stack option to new features-tools section. | Allen Byrne | 2011-03-10 | 2 | -258/+17 |
| | | | | Enable h5stat tests for valgrind testing. | ||||
* | [svn-r20223] Adding notes for fixing h5dump bug on -y -o options. | Peter Cao | 2011-03-10 | 1 | -0/+3 |
| | |||||
* | [svn-r20222] Correct mistake by declaring indexing variable removed from for ↵ | Allen Byrne | 2011-03-10 | 1 | -0/+1 |
| | | | | at top of function. | ||||
* | [svn-r20221] Remove rougue 'int' inside for loop (cut-paste error) - windows ↵ | Allen Byrne | 2011-03-10 | 1 | -1/+1 |
| | | | | complained. | ||||
* | [svn-r20219] Description: | Quincey Koziol | 2011-03-10 | 3 | -7/+7 |
| | | | | | | | | | | | | | | | | | Tell the VFL flush call that the file will be closing, allowing the VFDs to avoid sync'ing the file (particularly valuable in parallel). Tested on: FreeBSD/32 6.3 (duty) in debug mode FreeBSD/64 6.3 (liberty) 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 (amani) 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 Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in debug mode | ||||
* | [svn-r20218] Valgrind fix for memory leak in print_datatype which used an ↵ | Allen Byrne | 2011-03-09 | 1 | -1/+3 |
| | | | | | | allocation function in a printf(). Tested: local linux and valgrind | ||||
* | [svn-r20217] Valgrind indicated error in reading past end of buffer. | Allen Byrne | 2011-03-09 | 1 | -1/+4 |
| | | | | Tested: local linux and valgrind | ||||
* | [svn-r20216] Valgrind fix for memory leak in h5tools_dump_xxx which is fixed ↵ | Allen Byrne | 2011-03-09 | 4 | -4/+90 |
| | | | | | | | | by adding a new function; htri_t H5Tdetect_vlen_str(hid_t tid) to h5tools. This needs to be called before any H5Aread/H5Dread and if TRUE, then call vlen_reclaim function after the corresponding h5tools_dump_xxx(). Tested: local linux and valgrind | ||||
* | [svn-r20211] Valgrind indicated error in writing past buffer. Contary to ref ↵ | Allen Byrne | 2011-03-09 | 1 | -1/+1 |
| | | | | | | man H5O_get_comment does not return null char in size. Tested: local linux and valgrind | ||||
* | [svn-r20209] add test case for -y -o for h5dump | Peter Cao | 2011-03-09 | 1 | -0/+6 |
| | |||||
* | [svn-r20208] Valgrind fix for memory leak in free_tables - 2nd malloc was ↵ | Allen Byrne | 2011-03-09 | 1 | -0/+4 |
| | | | | | | freed by free_table calls but not the first malloc. Added HDfree('table') after each free_table() call. Tested: local linux and valgrind | ||||
* | [svn-r20207] removed duplicate line. | Peter Cao | 2011-03-09 | 1 | -1/+0 |
| | |||||
* | [svn-r20206] Updated manifest and source code for fixing h5dump -y -o problem | Peter Cao | 2011-03-09 | 3 | -9/+13 |
| | |||||
* | [svn-r20205] Add tall-6.ddl from previous commit r20204. | Jonathan Kim | 2011-03-08 | 1 | -0/+1 |
| | | | | Test file for Bug 2183 - h5dump -y -o prints out attribute values | ||||
* | [svn-r20204] Add test case for check -y -o options | Peter Cao | 2011-03-08 | 1 | -0/+27 |
| | |||||
* | [svn-r20203] Purpose: | Jonathan Kim | 2011-03-08 | 5 | -9/+60 |
| | | | | | | | | | | | | | Fix Bug 2120 - h5copy: improve to copy an object into same HDF file Description: Before the fix users can't copy an object (dataset or group) with different name if input file (-i) and output file (-o) is same. This feature would be useful to clone any object with different name and reuse contents. Tested: jam (linux32-LE), amani (linux64-LE), heiwa (linuxppc64-BE), tejeda (mac32-LE), linew (solaris-BE), Cmake (jam) | ||||
* | [svn-r20202] Correct order of tests DEPENDS | Allen Byrne | 2011-03-08 | 1 | -7/+3 |
| | |||||
* | [svn-r20201] Order fflush tests - fflush2 DEPENDS on fflush1 | Allen Byrne | 2011-03-08 | 1 | -0/+1 |
| | |||||
* | [svn-r20200] Add expected fail condition to memcheck alternate tests. | Allen Byrne | 2011-03-08 | 2 | -0/+18 |
| | |||||
* | [svn-r20197] Change test macro to allow control of infile and outfile parameters | Allen Byrne | 2011-03-08 | 1 | -4/+8 |
| | |||||
* | [svn-r20195] Description: Fixed memory leaks (valgrind detected) in ↵ | Scot Breitenfeld | 2011-03-07 | 2 | -5/+9 |
| | | | | | | field_info and make tables routines. Tested: jam (gnu and intel compilers) | ||||
* | [svn-r20192] Description: Bug 1939: h5tbget_field_info_f | Scot Breitenfeld | 2011-03-06 | 4 | -1173/+1203 |
| | | | | | | | | | | | | | | | | | * Fixed error in passing an array of characters with different length field names for h5tbmake_table. * Fixed error in h5tget_field_info_f with packing the C strings into a fortran array of strings. * Added optional arguement to h5tbget_field_info_f called maxlen which returns the maximum string character length in a field name element. * Uncommented out test for h5tbget_field_info_f in the test program and added additional checks for the output. Tested: jam (intel and gnu compilers) | ||||
* | [svn-r20188] Purpose: | Jonathan Kim | 2011-03-04 | 2 | -2/+18 |
| | | | | | | | | | | | | Fixing Bug 2161 - GMQS: h5dump - only on Windows, skip displaying a data value every a certain lines in array type dataset Description: Fixed h5dump for skipping some values for long array type dataset on Windows. This issue only occurred on Windows due to the different return behavior from _vsnprintf() funtion. Tested: Windows, jam (linux32-LE), amani (linux64-LE), heiwa (linuxppc64-BE), tejeda (mac32-LE), linew (solaris-BE) | ||||
* | [svn-r20186] Verify/cleanup code due to debugging changes | Allen Byrne | 2011-03-04 | 3 | -9/+10 |
| | | | | Tested: local linux | ||||
* | [svn-r20184] Enable h5dump tests in valgrind | Allen Byrne | 2011-03-04 | 2 | -195/+223 |
| | |||||
* | [svn-r20180] I added 2 public macros to the H5public.h - H5_VERSION_GE and ↵ | Raymond Lu | 2011-03-02 | 2 | -0/+60 |
| | | | | | | H5_VERSION_LE - and put some test cases in tfile.c. Tested on jam, heiwa, and amani. | ||||
* | [svn-r20172] Add h5mkgrp utility to package list | Allen Byrne | 2011-03-01 | 1 | -1/+1 |
| | |||||
* | [svn-r20171] Add HDF5_USING_MEMCHECKER guards around script mode ADD_TEST. ↵ | Allen Byrne | 2011-03-01 | 9 | -222/+253 |
| | | | | | | This will replace the list of ignore tests in CTestCustom.cmake file. Tested: local linux | ||||
* | [svn-r20170] Correct name of tool from hdf2gif to h52gif. | Allen Byrne | 2011-03-01 | 1 | -4/+4 |
| | |||||
* | [svn-r20168] BZ2048: Add -E --enable-error-stack option to h5dump. | Allen Byrne | 2011-02-28 | 8 | -4/+122 |
| | | | | Tested: local linux, heiwa, windows | ||||
* | [svn-r20161] Correct test properties for test order | Allen Byrne | 2011-02-25 | 1 | -3/+7 |
| | | | | Tested: local linux | ||||
* | [svn-r20156] Update macros to correct errors found on windows | Allen Byrne | 2011-02-25 | 1 | -2/+10 |
| | |||||
* | [svn-r20155] Change macros - do not need URL parameter | Allen Byrne | 2011-02-24 | 2 | -11/+11 |
| | |||||
* | [svn-r20154] Update error in szip ext project macro | Allen Byrne | 2011-02-24 | 1 | -2/+2 |
| | |||||
* | [svn-r20153] Move ext lib handling for ext project building to a common ↵ | Allen Byrne | 2011-02-24 | 29 | -345/+419 |
| | | | | | | macro. Update HDF5 project to use HDFMacros.cmake file. Add test properties for test ordering. Tested: local linux, windows | ||||
* | [svn-r20151] On windows the name of static zlib library is dependent on the ↵ | Allen Byrne | 2011-02-24 | 1 | -6/+6 |
| | | | | use of HDF_LEGACY_NAMING value when built from SVN/TGZ source. | ||||
* | [svn-r20149] Change Name of Legacy naming option | Allen Byrne | 2011-02-23 | 2 | -10/+10 |
| |