summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* [svn-r16025] For scalar string datasets print the character position when a ↵Pedro Vicente Nunes2008-11-044-602/+745
| | | | | | difference is found instead of a non-existing array position Tested: windows
* [svn-r16023] Maintenance: Changed version to hdf5-1.8.2-pre1 before creating ↵Elena Pourmal2008-11-038-21/+21
| | | | | | a tar ball for remote testing.
* [svn-r16021] Purpose: Fix behaviour of H5OvisitNeil Fortner2008-11-033-0/+92
| | | | | | | Description: H5Ovisit and H5Ovisit by name will now check for a positive return value from the first callback. Test added for this case. Tested: kagiso
* [svn-r16019] Purpose: Fix Windows definition of H5ftruncate for VS.NETScott Wegner2008-11-031-3/+1
| | | | | | | | Description: On Windows/Visual Studio, there is no function ftruncate. As a result, we have redefined the H5ftruncate macro to use _chsize_s. However, this function also doesn't exist on Visual Studio prior to 2005. Previously we had an #ifdef to support VS 6.0 with the lesser chsize function. This checkin changes the #ifdef to also include VS.NET, since we still support it for HDF5 1.8 branch. Tested: VS.NET on WinXP
* [svn-r16017] Correct Fortran compiler version for mercury.Larry Knox2008-11-011-1/+1
|
* [svn-r16015] Update Platforms Tested and Supported Configuration Features ↵Larry Knox2008-11-011-70/+78
| | | | summary sections for November 2008 release.
* [svn-r16011] Bug fixPedro Vicente Nunes2008-10-311-5/+9
| | | | | | | When -b was requested and no -o (file name) binary output was made to stdout Had a check after command line parsing to verify if -o is present, otherwise exit Tested: windows, linux
* [svn-r16008] Maintenance: Updated compilers and system information for Mac ↵Elena Pourmal2008-10-312-21/+24
| | | | | | | | | | Intel in RELEASE.txt Modified config file to disable shared libraries only when Fortran is enabled. Platforms tested: pahra (Mac Intel 10.5.4)
* [svn-r16007] Description:Binh-Minh Ribler2008-10-311-2/+28
| | | | | Added info to C++ API sections, about dereference wrappers and the fix of bugzilla 1068, which involved the rearrangement of the class hierarchy.
* [svn-r16005] Modify the commit of r15936 for H5_USE_16_API. Let H5version.h ↵Raymond Lu2008-10-306-12/+25
| | | | | | check if H5_USE_16_API_DEFAULT is defined by the configure. Then define H5_USE_16_API and use it throughout. Tested on kagiso - supposed to be simple.
* [svn-r16003] h5import: TEXTFPE (scientific format) was deprecated. Use TEXTFP Pedro Vicente Nunes2008-10-301-0/+2
| | | | + instead (PVN - 2008/10/30)
* [svn-r16002] h5diff: return 1 for file differences when both file graphs ↵Pedro Vicente Nunes2008-10-301-0/+3
| | | | | | differ by any object. + Error return code was changed to 2 from -1. (PVN - 2008/10/30)
* [svn-r15999] h5dump: binary default to NATIVE.Pedro Vicente Nunes2008-10-301-1/+2
|
* [svn-r15998] Description:Binh-Minh Ribler2008-10-3039-152/+155
| | | | | | | Fixed various comments/headers to update the C++ reference manual. Platforms tested: Linux 2.6 (kagiso) - to make certain no typo introduced
* [svn-r15996] Added a definition of HDftruncate for windows to compile with ↵Pedro Vicente Nunes2008-10-301-0/+6
| | | | | | VC6 and later versions Tested: windows
* [svn-r15995] remove mention to h5diff -cPedro Vicente Nunes2008-10-301-2/+0
|
* [svn-r15985] reorganized the code to deal with deprecated -i -o for in/out ↵Pedro Vicente Nunes2008-10-291-186/+45
| | | | | | | | files to avoid duplicated code tested: windows, linu x
* [svn-r15982] Description:Quincey Koziol2008-10-282-4/+4
| | | | | | | Remove redundant check for 1.6 default API. Tested on: Eyeballed - very trivial
* [svn-r15981] added the version from rev 15974, this AM, before any changes ↵Pedro Vicente Nunes2008-10-281-402/+416
| | | | made today
* [svn-r15980] add mention to h5diff long doublePedro Vicente Nunes2008-10-281-414/+402
|
* [svn-r15976] remove mention to h5diff -cPedro Vicente Nunes2008-10-281-2/+0
|
* [svn-r15974] Bug fix:Elena Pourmal2008-10-281-1/+1
| | | | | | | | | | | Compilation on all daily test platforms fails due to missing "("; fixed. Platforms tested: co-login kagiso with --with-default-api-version=v16 and --with-default-api-version=v16 --disable-deprecated-symbols compilation flags.
* [svn-r15973] make -b accept both MEMORY and NATIVEPedro Vicente Nunes2008-10-281-1/+4
| | | | tested: windows, linux
* [svn-r15970] Purpose: Update Windows h5dump test scriptScott Wegner2008-10-271-3/+10
| | | | | | | | Description: The h5dump test script was recently updated to add the new -b syntax. This update also adds and modifies the neccessary tests for Windows. Tested: VS2005 on WinXP
* [svn-r15969] Pedro Vicente Nunes2008-10-274-30/+67
| | | | | | | | | | | | | | | Introduced a new feature in the tools library regarding command line parsing In the definition of arguments, an "*" means that the switch can or can not have an optional argument. This "*" is put in the code regarding the letter definition, and it is transparent to the user (e.g b* instead of the previous b: ), where ":" notes a required argument after the letter (and no ":" or "*" notes no argument, mandatory) Used for the h5dump binary option -b It can be now 1) -b (defaults to NATIVE) 2) - b NATIVE 3) - b FILE 4) -b LE 5) -b BE Note: the keyword NATIVE replaces MEMORY This feature (-b with no argument) was tested with the sequence of h5dump to binary (NATIVE) then h5import to generate an HDF5 file from the binary file and h5diff to compare the 2 HDF5 files Tested: windows, linux
* [svn-r15967] regarding the return value of h5diff (0, no difference in ↵Pedro Vicente Nunes2008-10-271-4/+18
| | | | | | | | | files, 1 difference ) objects with the same name must be of the same type tested: windows, linux
* [svn-r15964] Purpose: Mention Windows bugfix in release documentScott Wegner2008-10-271-0/+3
| | | | | Description: In June, we discovered a bug in Windows which only affected specific timezones with the mtime test. This bug was promptly fixed, but never documented. This checkin adds a note to the release document.
* [svn-r15963] Purpose: Minor h5repack test updateScott Wegner2008-10-271-1/+1
| | | | | | | | Description: Change the Windows h5repack test script so that the h5diff format matches the latest changes. In particular, don't send the -c option. Tested: None, very minor
* [svn-r15962] Description:Binh-Minh Ribler2008-10-271-19/+11
| | | | | | | Fixed some typos and replaced free/HDfree and malloc/HDmalloc. Platforms tested: Linux 2.6 (kagiso) - very minor
* [svn-r15960] Description:Binh-Minh Ribler2008-10-2712-100/+263
| | | | | | | Oops, I accidentally only did "svn commit" instead of "svn commit -m" as instructed. "ported revisions 15958 to 15959 (Added missing wrappers for H5Rdereference) from trunk."
* [svn-r15958] Snapshot version 1.8 release 1 (snap7)HDF Tester2008-10-267-22/+22
|
* [svn-r15956] Revised the help page of h5perf.Christian Chilan2008-10-261-27/+49
| | | | Tested on kagiso.
* [svn-r15951] Fix Bug 1300.Albert Cheng2008-10-261-26/+21
| | | | | | | Removed duplicated information due to previous incompleted changes. Also rearranged the entries to a more logical combinations. Tested: h5committest.
* [svn-r15949] Purpose: DocumentationMike McGreevy2008-10-241-1/+6
| | | | | | Description: Updating RELEASE.txt with changes for release. Tested: docwork only, none needed
* [svn-r15948] Purpose: Bug FixMike McGreevy2008-10-242-4/+14
| | | | | | | | | | Description: Adding the SZIP path to LD_LIBRARY_PATH within configure was inadvertently blowing away anything already in LD_LIBRARY_PATH. This fixes that, which solves, among other things, the problem where configure failed to learn how to print 'long long' on cobalt. Tested: full make check install: kagiso, smirom configure / make / h5ls test only : cobalt, linew
* [svn-r15946] A follow-up checkin for the last-round commit(r15936). Added a ↵Raymond Lu2008-10-241-0/+1
| | | | | | | | | test in this script file to check whether the macros H5_USE_16_API works properly. There used to be a problem to compile if H5_USE_16_API is defined in the application program (see bug #1264). Tested on kagiso - simple change.
* [svn-r15945] redo thePedro Vicente Nunes2008-10-241-1/+1
| | | | | | | | | | | | use of H5_PRINTF_LL_WIDTH in the definition of #define HSIZE_T_FORMAT "%"H5_PRINTF_LL_WIDTH"u" the printing of "unknow u" in tg-login3. for unsigned long long was a configure bug fixed by rev 15942 tested: tg-login3
* [svn-r15940] Purpose: Close bug 1305.Neil Fortner2008-10-243-6/+350
| | | | | | | | | Description: Added a new function, H5O_alloc_shrink_chunk, which removes all null messages from a chunk and shrinks the chunk appropriately. Modified H5O_merge_null to call this function when a null message is created with a size >= 64k. Tests added for this functionality. Tested: kagiso, linew, smirom (h5committest)
* [svn-r15939] Description:Quincey Koziol2008-10-231-45/+46
| | | | | | | | | | | | | | | | | | | | | | | | Bring r15937 back from trunk to 1.8 branch: Correct error in metadata accumulator code which wasn't expanding the metadata accumulator when adjoining (but not overlapping) I/O writes occurred. Tested on: Mac OS X/32 10.5.5 (amazon) in debug mode Mac OS X/32 10.5.5 (amazon) w/C++ & FORTRAN, w/threadsafe, in production mode FreeBSD/32 6.3 (duty) in debug mode FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode Linux/32 2.6 (kagiso) w/PGI compilers, w/C++ & FORTRAN, w/threadsafe, in debug mode Linux/64-amd64 2.6 (smirom) 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, in production mode Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN, in production mode Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in production mode Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in production mode
* [svn-r15938] Pedro Vicente Nunes2008-10-233-51/+10
| | | | | | | | for some reason , the use of H5_PRINTF_LL_WIDTH to convert to a unsigned long long format, is not working in ia64 linux (tg-login3) extra characters are printed, this time in h5ls hardcoded the format defined in HSIZE_T_FORMAT to "%llu" tested: windows, linux (kagiso), solaris, ia64 linux (tg-login3)
* [svn-r15936] Changed the library's macros H5_USE_16_API to ↵Raymond Lu2008-10-239-22/+22
| | | | | | | | H5_USE_16_API_DEFAULT avoid possible conflict with user's definition of H5_USE_16_API. The H5_USE_16_API_DEFAULT is defined through configure with the flag --with-default-api-version=v16. Tested with h5committest.
* [svn-r15933] for some reason , the use of H5_PRINTF_LL_WIDTH to convert to a ↵Pedro Vicente Nunes2008-10-223-33/+8
| | | | | | | | | unsigned long long format is not working in ia64 linux (tg-login3) hardcoded the format to "%llu" tested: windows, linux (kagiso), solaris, ia64 linux (tg-login3)
* [svn-r15923] The printf call with the format "%"H5_PRINTF_LL_WIDTH"u" prints ↵Pedro Vicente Nunes2008-10-211-2/+5
| | | | | | some garbage in linux ia64 unless we pass to the function a temporary pointer variable Tested: windows, linux (kagiso), solaris, linux ia64 (tg-login3)
* [svn-r15919] Updated with the information of the removal of ↵Albert Cheng2008-10-211-0/+2
| | | | libhdf5_fortran.settings.
* [svn-r15917] Bug fix: #933Albert Cheng2008-10-211-18/+0
| | | | | | This file is no longer needed since it is not installed any more. Tested: kagiso with fortran and C++.
* [svn-r15912] Bug fix: #933Albert Cheng2008-10-215-53/+17
| | | | | | | The information of libhdf5_fortran.settings are all included in libhdf5.settings now. Remove it from the source. Tested: kagiso with fortran and C++.
* [svn-r15909] Purpose: Various Windows test script updatesScott Wegner2008-10-203-11/+65
| | | | | | | | Description: This checkin includes updates to Windows test scripts for h5copy, h5diff, and h5dump tools. Each represents minor changes to syntax which emulates the updates made to the general-platform test scripts. Tested: VS2005 on WinXP
* [svn-r15901] undo some changes in the list of parameters of ↵Pedro Vicente Nunes2008-10-183-38/+32
| | | | | | parse_command_line (forgot that this function is called both on serial and parallel) tested: linux
* [svn-r15900] Make the h5copy test that renames a group to return 1 on the ↵Pedro Vicente Nunes2008-10-1720-42/+71
| | | | | | | | h5diff call and assume 1 is the correct result Drop the -c flag for h5diff Tested: linux
* [svn-r15899] Extend the -c flag for ignore graph differences to ignore ↵Pedro Vicente Nunes2008-10-174-32/+60
| | | | | | | | different group names This is used in the h5copy test that compares renaming of groups Tested: linux