summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* [svn-r19803] Description:Mike McGreevy2010-11-171-2/+5
| | | | | | | | Update ACKNOWLEDGMENTS file Tested: none. documentation update only.
* [svn-r19799] Update valgrind ignore tests.Allen Byrne2010-11-172-15/+35
|
* [svn-r19798] Purpose:Mike McGreevy2010-11-174-1/+27
| | | | | | | | | | | | | | | | | | | | | | | | | Add additional error checking to catch erroneous user input. Description: Attempting to retrieve a links's name by index in the case where the link is external and the file that the object is located in doesn't exist was causing a segmentation fault (in production) and an assertion failure (in debug). The segfault wasn't occuring until the metadata accumulator attempted a write, so I've added error checking higher in the pipeline in H5O_protect (where there was previously just an assert) to catch this. I've also added additional asserts in the H5F layer where there were none. Additionally, I added another case to the links.c test to test that this fails gracefully instead of segfaulting or asserting out. Tested: h5committest and gandalf (mac os x)
* [svn-r19796] Bug 2091: remove all Metraowerks compiler code bracheted by ↵Albert Cheng2010-11-1610-110/+26
| | | | | | | | __MWERKS__. Metraowerks compiler is no more. Make the code cleaner. Tested: H5committest plus jam serial.
* [svn-r19795] Cleaned up some part of the code. It now works on all Unix and ↵Albert Cheng2010-11-161-36/+26
| | | | | | Windows 7 platforms.
* [svn-r19792] Revised the valgrind ignore list, added simple execute command ↵Allen Byrne2010-11-165-436/+495
| | | | tests for when doing a valgrind test of tools that only use a cmake script for testing.
* [svn-r19790] CMake: Correct Error tests. Add Deprecated Symbols option.Allen Byrne2010-11-164-23/+67
| | | | Tested: local linux
* [svn-r19787] Check for CMAKE_BUILD_TYPE set if not WIN32 in library prefix ↵Allen Byrne2010-11-161-2/+8
| | | | naming. Unset needs prefix to be lib.
* [svn-r19785] Bug 1917: Disabled an incorrect condition that whether STDIO ↵Albert Cheng2010-11-151-0/+2
| | | | | | | | | VFD supports larger than 32bits I/O depends on the support of fseeko. Windows does not use that. Instead, it uses _fseeki64 to support larger than 32bits I/O. Tested: jam (linus) and bangan (windows)
* [svn-r19783] Fix to the checkin for bug #1930.Vailin Choi2010-11-151-1/+6
|
* [svn-r19782] Fix CMake testing for links_env test which requires an ↵Allen Byrne2010-11-155-4/+58
| | | | | | | | environment variable at test run-time. Modified runTest.cmake file to allow optional ENV_VAR and ENV_VALUE to be passed. runTest.cmake requires a reference file, added links_env.out to testfiles folder. Also updated root CMakeLists.txt to output a message when unsopported options are configured with the PARALLEL option. CMake will still generate files. Tested: windows and local linux
* [svn-r19781] Fix for bug #1930:Vailin Choi2010-11-159-119/+267
| | | | | | 1) Move the test for H5D_EXT_PREFIX in links.c to a separate file: links_env.c 2) links_env.c will be used by testlinks_env.sh to test for the environmental variable H5D_EXT_PREFIX in searching for the external linked file.
* [svn-r19779] Comment out H5_SIZEOF_PTRDIFF_T define to fix Windows errors.Allen Byrne2010-11-131-1/+1
|
* [svn-r19776] Corrected handling of largefile and linux_lfs handling.Allen Byrne2010-11-124-11/+49
| | | | | Synched cmake version of H5pubconf.h.in Added another variation of H5detect warning to ignore list.
* [svn-r19769] Correct comment about VS defines and next releaseAllen Byrne2010-11-121-1/+1
|
* [svn-r19767] Problem:Albert Cheng2010-11-111-1/+1
| | | | | | | | The parallel test ran out of memory because 32bit binary default to use less memory. Changed RUNPARALLEL to use larger memory (LDR_CNTRL=MAXDATA=0x2000 0000@DSA). Tested: BP parallel.
* [svn-r19764] Updated NPROCS default value from 3 to 6.Albert Cheng2010-11-114-126/+228
|
* [svn-r19759] Purpose:Jonathan Kim2010-11-111-4/+12
| | | | | | | | | | | | | | | | | | Fix compile error for Windows from previous checkin r19757. Description: Previous log: Improve h5diff performance. The following changes for improving h5diff performance: 1) use HDmemcmp() before comparing each elements (memcmp() is very fast at both linew and jam) 2) replace the expensive H5Tequals() calls 3) retrieve datatype information at dataset level not each element level for compound datasets Tested: jam (linux32-LE), Windows
* [svn-r19757] Purpose:Jonathan Kim2010-11-113-36/+136
| | | | | | | | | | | | | | | | Improve h5diff performance. Description: The following changes for improving h5diff performance: 1) use HDmemcmp() before comparing each elements (memcmp() is very fast at both linew and jam) 2) replace the expensive H5Tequals() calls 3) retrieve datatype information at dataset level not each element level for compound datasets Tested: jam (linux32-LE), amani (linux64-LE), heiwa (linuxppc64-BE), tejeda (mac32-LE), linew (solaris-BE)
* [svn-r19753] Added flush2 to list of memcheck ignore - flush2 needs flush1 ↵Allen Byrne2010-11-101-0/+1
| | | | to generate files
* [svn-r19751] Purpose:Jonathan Kim2010-11-099-2/+99
| | | | | | | | | | | | | | Fixed Bug# 1979 Output from h5ls -rdlS on nested compound datatypes is difficult to parse. Description: Update to add curly brackets for the nested compound members, when S (--simple) option is used with -l (--label), so user can tell which members blong to which compound type. Tested: jam (linux32-LE), amani (linux64-LE), heiwa (linuxppc64-BE), tejeda (mac32)
* [svn-r19744] Description:Quincey Koziol2010-11-081-38/+46
| | | | | | | Clean up compiler warnings and neaten up code a bit. Tested on: Linxu/64 2.6.32 (ember) w/parallel
* [svn-r19743] Description:Quincey Koziol2010-11-082-194/+42
| | | | | | | | | Correct tests to use native datatypes consistently, and also to use "normal" methods for performing collective I/O. Also, minor cleanups for zeroing out buffers, etc. Tested on: AIX/64 6.? (bp) w/parallel
* [svn-r19740] Snapshot version 1.9 release 79HDF Tester2010-11-0714-29/+29
|
* [svn-r19737] Added another version of H5detect warning to ignore listAllen Byrne2010-11-051-0/+3
| | | | | | Added H5convert warning to ignore list Added flush1 to list of memcheck ignore - design precludes valgrind correctness
* [svn-r19731] Purpose:Jonathan Kim2010-11-051-1/+1
| | | | | | | | | | | | | Fix the test script from the previous checkin r19729. expect output is under misc/testfiles/ in srcdir. Previous Log: [BZ2072]Add compare output to expected test for help and version options of mkgrp. Tested: jam (linux32-LE), amani (linux64-LE), heiwa (linuxppc64-BE)
* [svn-r19729] Purpose:Jonathan Kim2010-11-041-3/+3
| | | | | | | | | | | | | Fix the test script from the previous checkin r19726 due to contiguous build system failure. Previous Log: [BZ2072]Add compare output to expected test for help and version options of mkgrp. Tested: jam (linux32-LE), amani (linux64-LE), heiwa (linuxppc64-BE)
* [svn-r19726] [BZ2072]Add compare output to expected test for help and ↵Allen Byrne2010-11-046-6/+80
| | | | | | version options of mkgrp. Tested: local linux
* [svn-r19725] Description:Quincey Koziol2010-11-042-1/+4
| | | | | | | | | | Add a little bit of extra info to the output from h5debug when displaying global heaps, and make it dump the file's superblock again when an address is not given on the command line. Tested on: FreeBSD/32 6.3 (duty) w/debug (too minor to require h5committest)
* [svn-r19722] Bug fix for failure in the round robin metadata write ojbect headerJohn Mainzer2010-11-031-0/+3
| | | | | | | metadata confusion test that appeared after Albert modified the test. Cursory commit test. No test on Abe as that system is down, the fix is very minor, and it seems to work in the 1.8.6 branch
* [svn-r19721] Correct CDash project nameAllen Byrne2010-11-031-2/+2
|
* [svn-r19717] Correct external lib handling for WindowsAllen Byrne2010-11-021-8/+10
|
* [svn-r19712] Purpose:Jonathan Kim2010-11-028-30/+411
| | | | | | | | | | | | | | | Fixed h5diff to handle variable-length strings in a compound dataset correctly. Also variable-length string array in a compound dataset. Bug #1989. Description: Garbage values were displayed when h5diff compared variable-length strings (or string array) in a compound type dataset. Tested: jam (linux32-LE), amani (linux64-LE), heiwa (linuxppc64-BE), tejeda (Mac32)
* [svn-r19709] Updated Dashboard Timeout settingAllen Byrne2010-11-021-12/+13
|
* [svn-r19706] Added VFD test options.Allen Byrne2010-11-016-7/+204
| | | | Bring r19705 from branch
* [svn-r19702] Removed special fheap timeout - replaced by timeout set in ↵Allen Byrne2010-11-013-10/+441
| | | | | | | CTestConfig.ctest Added MemCheck Ignore tests for repeated tools tests Added Debug flag for windows
* [svn-r19701] Snapshot version 1.9 release 78HDF Tester2010-10-3114-29/+29
|
* [svn-r19697] Description:Quincey Koziol2010-10-291-0/+129
| | | | | | | | | Add another test for shutting down open object IDs without using the standard "close" routines. Tested on: Mac OS X/32 10.6.4 (amazon) w/debug & production (too minor to require h5committest)
* [svn-r19696] Bug 2008 - IBM Power6 Linux uses special conversion algorithms ↵Raymond Lu2010-10-284-0/+399
| | | | | | | | | | | to convert some values from long double to (unsigned) long and from (unsigned) long to long double. I added tests in configure.in to detect these algorithms. Before I can figure out them, I disable the tests in dt_arith.c. There are property changes to tools/misc, config, and Makefile.am when I brought the fix from 1.8. Tested on jam, heiwa, amani, IBM Power6 Linux machine in Holland (huygens.sara.nl).
* [svn-r19694] Changed the default NPROCS from 3 to 6 for MPI tests.Albert Cheng2010-10-282-12/+12
| | | | | Tested: in jam only since that is that only parallel tests h5committest would have done.
* [svn-r19691] Added new h5copy testAllen Byrne2010-10-281-7/+44
| | | | Tested: local linux
* [svn-r19686] Spelling mistake in TARGET_WIN_PROPERTIES broke cmake configurationAllen Byrne2010-10-281-1/+1
|
* [svn-r19682] Bug 2054: Round Robin code caused H5FFlush to corrupt a file.Albert Cheng2010-10-282-113/+493
| | | | | | | | | John Mainzer fixed the bug and added a test which wrote file and flush a few time; close the file then open it by serial and read simple structure. I changed the test to two parallel running parts of ..._writer and ..._reader and have the reader verify the file after every flush by the writer. Tested: parallel in Jam and Amani.
* [svn-r19679] Added h5mkgrp testsAllen Byrne2010-10-273-1/+93
| | | | | | Added valgrind test variables and increased Tested: Local linux
* [svn-r19674] MPI_ checks were failing due to wrong #include of mpi.h in ↵Allen Byrne2010-10-271-2/+1
| | | | | | cmake setup From Community
* [svn-r19668] Description:Quincey Koziol2010-10-262-7/+28
| | | | | | | | | | Do some extra range-checking on H5Pset_elink_acc_flags() calls. Clean up some minor compiler warnings also. Tested on: Mac OS X/32 10.6.4 (amazon) w/debug & production (too minor to require h5committest)
* [svn-r19666] Snapshot version 1.9 release 77HDF Tester2010-10-2414-28/+28
|
* [svn-r19664] Add warnings to CDash ignore listAllen Byrne2010-10-221-2/+4
|
* [svn-r19660] Add tab char to regex for warningsAllen Byrne2010-10-221-2/+2
|
* [svn-r19656] Description:Quincey Koziol2010-10-211-4/+5
| | | | | | | | | Move B-tree sanity checking down below revised node unprotect calls in H5B_insert(). Tested on: Mac OS X/32 10.6.4 (amazon) w/debug=all (too obscure to require h5committest)