summaryrefslogtreecommitdiffstats
path: root/tools
Commit message (Collapse)AuthorAgeFilesLines
* [svn-r7418] Purpose:Albert Cheng2003-08-271-1/+5
| | | | | | | | | | | | | | | | | | bug fix Description: h5diff would incur a segmentation fault in Alpha clusters when the percentage option is used. This was due to memory aliagment issue when the options variable is declared as a local variable in main(). Moved the declaration to a global declaration. Platforms tested: "h5committested" And tested at cluster QT of SNL. Misc. update:
* [svn-r7401] Purpose:Quincey Koziol2003-08-2512-341/+452
| | | | | | | | | | | | | | | | | | Code cleanup Description: Remove various "fixtype" routines which duplicate (and actually pre-date) the functionality in H5Tget_native_type in favor of having the tools call H5Tget_native_type(). This provides the same functionality (actually better functionality, since the old "fixtype" routines didn't handle alignment of compound fields correctly) and reduces the amount of code to maintain. Add additional tests to dump out a "complex" compound datatype which exercises more code in the library for aligning compound fields correctly. Platforms tested: FreeBSD 4.8 (sleipnir) h5committest
* [svn-r7389] Purpose:Quincey Koziol2003-08-221-1/+1
| | | | | | | | | | | Code cleanup Description: Return -1 for failed group iteration instead of 1 Platforms tested: FreeBSD 4.8 (sleipnir) h5committest
* [svn-r7361] Description:Albert Cheng2003-08-148-11/+17
| | | | | | | | | | | | Updated the copyright notice--mostly by rearranging some text to make them consistent. Solution: Platforms tested: "h5committested"--sol is down, so, no SUn test. Misc. update:
* [svn-r7352] Purpose:Quincey Koziol2003-08-137-43/+65
| | | | | | | Updated dependencies Platforms tested: h5committested
* [svn-r7334] Purpose:Quincey Koziol2003-08-111-3/+2
| | | | | | | | | | | | | | Bug fix Description: Object references were not getting written out correctly to the file, with recent changes to their memory structure. Solution: Convert the object references correctly. Platforms tested: h5committested
* [svn-r7329] Purpose:Quincey Koziol2003-08-0856-333/+334
| | | | | | | | | | Refactored test output Description: Chase new output format of 'objno' in DDL and XML schema output Platforms tested: h5committested
* [svn-r7328] Purpose:Quincey Koziol2003-08-081-83/+1
| | | | | | | | | | | Code cleanup Description: Remove recent changes which duplicated code from config/conclude.in, now that the output of XML schema XID's is portable. Platforms tested: h5committested
* [svn-r7327] Purpose:Quincey Koziol2003-08-083-24/+19
| | | | | | | | | | Refactored code Description: Chase changes of 'objno' and 'fileno' fields in H5G_stat_t structure. Platforms tested: h5committested
* [svn-r7326] Purpose:Quincey Koziol2003-08-081-15/+11
| | | | | | | | | | | Refactored code Description: Chased 'objno' and 'fileno' changes in H5G_stat_t structure, including updating the addresses displayed. Platforms tested: h5committested
* [svn-r7325] Purpose:Quincey Koziol2003-08-081-1/+1
| | | | | | | | | | Code cleanup Description: Changed parameter from "<number>:<number>" form to "<number>" Platforms tested: h5committested
* [svn-r7324] Purpose:Quincey Koziol2003-08-081-186/+89
| | | | | | | | | | | | | | | | | | | Code cleanups & bug fixes Description: Lots of changes to chase 'objno' and 'fileno' changes in H5G_stat_t struct, including changing the output of object IDs from "<number>:<number>" to just "<number>". Same change to XML schema XIDs from "xid_<number>-<number>" to just "xid_<number>" Cleaned up a number of memory leaks Use the H5_PRINTF_HADDR_FMT macro for printing 'haddr_t's Platforms tested: h5committested
* [svn-r7323] Purpose:Quincey Koziol2003-08-081-4/+6
| | | | | | | | | | | Refactored code Description: Added 'unsigned flags[2]' field and changed 'objno' field from 'unsigned long[2]' to 'haddr_t' (to reflect changes in H5G_stat_t) Platforms tested: h5committested
* [svn-r7322] Purpose:Quincey Koziol2003-08-081-27/+69
| | | | | | | | | | | | | | | Refactored code Description: Use H5E_BEGIN_TRY/H5E_END_TRY macros around blocks where errors shouldn't be printed, instead of managing 'automatic error' information. Use new 'flags' field in table objects where appropriate Chase changes to 'fileno' and 'objno' fields of H5G_stat_t Platforms tested: h5committested
* [svn-r7321] Purpose:Quincey Koziol2003-08-081-21/+14
| | | | | | | | | | | | | | Code cleanup & refactoring Description: Use H5E_BEGIN_TRY/H5E_END_TRY macros around blocks where errors shouldn't be printed, instead of managing 'automatic error' information. Changes to use new 'flags' fields in the table of objects, since the 'objno' field can't be [ab]used any longer. Platforms tested: h5committested
* [svn-r7312] Purpose:Quincey Koziol2003-08-081-22/+14
| | | | | | | | | | | | Code cleanup Description: Use H5E_BEGIN_TRY/H5E_END_TRY macros around code which shouldn't display the error stack on failure, instead of setting and resetting the automatic error printing routines. Platforms tested: h5committested
* [svn-r7286] Purpose:MuQun Yang2003-08-081-4/+1
| | | | | | | | | | | | | | | | | | | | bug fix Description: 1. function rindex is not recognized by windows. Using strrchr instead. Thereafer strings.h is not necessary. 2. Variable p_type is defined as "hid_t" type at one function; but it is never used. At the end of that function, H5Tclose(p_type) is assigned. It may cause problems. So erase two lines. Solution: See above Platforms tested: windows 2000, linux 2.4, sol 2.7, AIX 5.1. Misc. update:
* [svn-r7278] Purpose:Bill Wendling2003-07-301-0/+3
| | | | | | | | | | | | | | | | Bug Fix Description: pmake failed during make of h5dump because of some undefined variables. Solution: Defined the variables. Platforms tested: Modi4 (small change and only Irix specific) Misc. update:
* [svn-r7276] Purpose:Robert E. McGrath2003-07-2958-5088/+8435
| | | | | | | | | | | | | | | | | | | This is an omibus update to the h5dump program. 1. Fixes bug 888 2. updates XML output to 1.6 Description: Solution: Platforms tested: verbena, arabica, copper (64) Misc. update: MANIFEST updated Need to do release notes.
* [svn-r7265] *** empty log message ***Raymond Lu2003-07-265-27/+27
|
* [svn-r7257] Purpose:Pedro Vicente Nunes2003-07-231-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | bug fix Description: if the user incorrectly put the option -n20 (instead of -n 20) as the last argument h5diff tried to parse the 20 as an extra argument, causing a failure if ('-' !=argv[i+1][0] ) Solution: add an extra test for the case that option is the last argument if ( i<argc-1 && '-' !=argv[i+1][0] ) Platforms tested: linux . this is too trivial for all platforms test Misc. update:
* [svn-r7211] Purpose:Quincey Koziol2003-07-111-1/+1
| | | | | | | | | | | Code cleanup Description: Various code cleanups suggested by lint tool Platforms tested: FreeBSD 4.8 (sleipnir) h5committest
* [svn-r7192] Purpose:Quincey Koziol2003-07-091-1/+1
| | | | | | | | | | | Code cleanup Description: Clean up various minor warnings in the library. Platforms tested: FreeBSD 4.8 (sleipnir) too small to need h5committest
* [svn-r7191] Purpose:Quincey Koziol2003-07-092-21/+21
| | | | | | | | | | Code cleanup Description: Track new "debug" modules for library. Platforms tested: h5committested
* [svn-r7124] Bill Wendling2003-06-301-3/+3
| | | | | | | | | | | | | | | | Purpose: Bug Fix Description: LIBTOOLS macro was being used but not defined. Solution: Removed the LIBTOOLS macro as it wasn't necessary Platforms tested: Modi4 (small fix) Misc. update:
* [svn-r7123] Purpose:Bill Wendling2003-06-308-9/+1
| | | | | | | | | | | | | | | | | Bug Fix Description: The SUBDIRS macro is now defined as "" in the config/commence.in file. We shouldn't have definitions of this macro before the inclusion of config/commence.in. Solution: Placed all definitions of SUBDIRS after config/commence.in inclusion. Platforms tested: Modi4 (Small fix yet again). Misc. update:
* [svn-r7121] Bill Wendling2003-06-301-21/+47
| | | | | | | | | | | | | | | | | | Purpose: Bug Fix Description: Changes needed to make "pmake" work on Modi4. Solution: Needed to add some null macro defines in the commence.in files. Needed to remove a dependence on LIBH5TEST in the fortran make since LIBH5TEST isn't used in the fortran stuff. Platforms tested: Modi4 (small change) Misc. update:
* [svn-r7109] Purpose:Quincey Koziol2003-06-264-14/+11
| | | | | | | | | | | Code cleanup Description: Clean up varios compiler warnings flagged by SGI compiler and gcc 3.3 Platforms tested: FreeBSD 4.8 (sleipnir) h5committest
* [svn-r7021] Purpose: bug fixRaymond Lu2003-06-101-3/+3
| | | | | | | | Description: H5Tget_native_type fails for multiple kinds of datatype on Cray; it fails fix-length string type, too. Platforms tested: Cray, h5committest
* [svn-r7010] Purpose:Albert Cheng2003-06-091-2/+5
| | | | | | | | | | | | | | | Bug fix Description: h5cc was removed prematurely in "make clean". Moved it to be removed in "make distclean" only. Solution: Platforms tested: COpper. Misc. update:
* [svn-r7006] Purpose:Quincey Koziol2003-06-094-26/+45
| | | | | | | | | | | | | | | | | | Bug fix/new feature Description: Teach h5dump/h5ls to display variable-length datatypes correctly. Change "raw byte" output of array elements from "0xde8141b1a818" to "de:81:41:b1:a8:18" so that it's easier for users to read. Platforms tested: FreeBSD 4.8 (sleipnir) h5committest Misc. update: Patch provided by Robb Matzke (matzke@llnl.gov)
* [svn-r7005] Purpose:Quincey Koziol2003-06-091-2/+2
| | | | | | | | | | | | Bug fix Description: The output from the modification time is highly system dependent, so remove it from the h5ls output before comparing file with diff. Platforms tested: FreeBSD 4.8 (sleipnir) h5committest
* [svn-r7004] Purpose:Quincey Koziol2003-06-091-1/+1
| | | | | | | | | | | | Bug fix Description: The output from the modification time is highly system dependent, so remove it from the h5ls output before comparing file with diff. Platforms tested: FreeBSD 4.8 (sleipnir) h5committest
* [svn-r7003] Purpose:Quincey Koziol2003-06-091-175/+146
| | | | | | | | | | | | | | | | | | | Code cleanup/new features. Description: Clean up whitespace & formatting. Make the -S (simple) output display a dataset's modification time in UTC rather than local timezone. Display variable-length datatype information. Simplified & enhanced bitfield datatype information displayed. Platforms tested: FreeBSD 4.8 (sleipnir) h5committest
* [svn-r7002] Purpose:Quincey Koziol2003-06-092-7/+13
| | | | | | | | | | | Code cleanup Description: Clean up warnings about unused stuff... Platforms tested: FreeBSD 4.8 (sleipnir) h5committest
* [svn-r6991] Purpose:Albert Cheng2003-06-081-1/+1
| | | | | | | | | | | | | Cleanup Description: h5dumpgentest is already included in TEST_PROGS. Removed its old entry in PROGS. Platforms tested: Only in Copper since this is trivial. Misc. update:
* [svn-r6984] Purpose:Bill Wendling2003-06-051-1/+1
| | | | | | | | | | | | | | Update Description: Added h5c++ script to h5redeploy Platforms tested: Verbena (Fortran & C++) Arabica (Fortran & C++) Modi4 (Fortran & Parallel) Misc. update:
* [svn-r6962] Purpose:Quincey Koziol2003-06-042-15/+21
| | | | | | | | | | Code cleanup Description: Update dependencies and tracing information Platforms tested: h5committested
* [svn-r6960] Purpose:Pedro Vicente Nunes2003-06-041-53/+905
| | | | | | | | | | | | | | | | | | | added writing more attributes to one test file Description: added the writing of 3D attributes to one test file of h5ls Solution: Platforms tested: Windows 2000 (octopus) Linux 2.4 (rockaway) SunOS 5.7 (arabica) IRIX 6.5 (modi4) Misc. update:
* [svn-r6959] Bill Wendling2003-06-041-1/+8
| | | | | | | | | | | | | | | | | Purpose: Bug Fix Description: The flags for the linker on MacOS X were invalid. Solution: If this is a darwin platform (MacOS X), then don't specify the runtime linker flags. Platforms tested: MacOSX (since it only affects it...) Misc. update:
* [svn-r6949] Purpose:Robert E. McGrath2003-06-031-12/+20
| | | | | | | | | | | | | | | | Minor corrections to match the man pages. Code provided by Pankaj. Description: * do not accept more than 30 file names * corrected error messages. Solution: Platforms tested: Tested on verbena. Already tested on several platforms before integration. Misc. update:
* [svn-r6947] Purpose:Pedro Vicente Nunes2003-06-031-26/+26
| | | | | | | | | | | | | added some comments Description: Solution: Platforms tested: linux Misc. update:
* [svn-r6946] Purpose:Albert Cheng2003-06-021-12/+14
| | | | | | | | | | | | | | | | | | | | | | | Bug fix Description: This would sometimes coredump in machines like PSC Alpha cluster or linux icc if -g is not used. Solution: The real problem was because char string arrays were declared without including space for the null terminator. E.g., char s[5][2]={ "s1", "s2", ...} is not correct. Increased the size and also need to change the H5S... definitions too. Platforms tested: "h5committested"--the h5dumpgentest passed without problem though it failed in Fortran but that is a current known problem. Tested in verbena using icc and also in PSC's cluster. Misc. update: Can't find this error in the v1.5 know problem list.
* [svn-r6943] Purpose:Pedro Vicente Nunes2003-06-029-17/+43
| | | | | | | | | | | | | | | | | | | | | | bug fix Description: unsigned integers were not printed out correctly Solution: added %u and %lu to the list of formats Platforms tested: Windows 2000 (octopus) Linux 2.4 (rockaway) SunOS 5.7 (arabica) IRIX 6.5 (modi4) Misc. update:
* [svn-r6928] Purpose:Pedro Vicente Nunes2003-05-3010-60/+638
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | h5diff support for long_long Description: added h5diff support for long_long; No automatic test was added because it seems that the printf format of long_long is slightly different in Linux and IRIX(modi4), because the diff command complained about a difference in the 2 test files for long_long; visually, it seems that in IRIX an extra space is added after the print (or maybe it is just me that is seeing extra spaces :=) this test is test 5.8, commented in testh5diff.sh Platforms tested: Windows 2000 (octopus) Linux 2.4 (rockaway) SunOS 5.7 (arabica) IRIX 6.5 (modi4) Misc. update:
* [svn-r6926] Purpose:Bill Wendling2003-05-291-34/+33
| | | | | | | | | | | | | | | | | | | | Bug Fix Description: The order the libraries are included in the compilation line is very important. Solution: Need to specify the libraries in the order that they are given. If we're building the application staticly, then use the static HDF5 library. Platforms tested: Modi4 Verbena Arabica Misc. update:
* [svn-r6925] Purpose:Pedro Vicente Nunes2003-05-2911-75/+188
| | | | | | | | | | | | | | | | | | | | | | | | bug fix Description: the signed / unsigned comparison was not properly handled. the fixtype function sets the sign for the memory type the same sign as found on disk and the array_diff function only handled signed cases Solution: addded for each INTEGER size type an OR condition with the unsigned version if the datatypes have different signs , comparison is NOT supported Platforms tested: Windows 2000 (octopus) Linux 2.4 (rockaway) SunOS 5.7 (arabica) IRIX 6.5 (modi4) Misc. update:
* [svn-r6922] Purpose:Albert Cheng2003-05-291-4/+3
| | | | | | | | | | | | | bug fix Description: Not all echo commands honors the '-n' option. In those cases, the output look weired though recognizable. Solution: Eliminated the use of -n option. A better fix would be having configure to set the proper use of the echo command. Platforms tested: only on sasn100 (a sun frontend of Janus). No committest since this is just a simple shell script change.
* [svn-r6919] Purpose:Bill Wendling2003-05-281-2/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bug Fix Description: Two things: - static libraries may depend upon the HDF5 library. We should put them before the HDF5 library on the commandline instead of afterwards to avoid conflict. - the CFLAGS weren't being used during linking. This was causing problems on Arabica where the flags are important to distinguish between building a 32-bit and 64-bit application. Solution: - Added logic so that it catches the static libraries and puts them before the hdf5 library on the command line. WARNING: This may not work in all situations...but it should be okay for the good majority. - added the CFLAGS macro to the commandline... Platforms tested: LInux (Colonelk) Arabica Modi4 (Parallel) (Small changes so doesn't need full h5committesting...) Misc. update:
* [svn-r6915] Elena Pourmal2003-05-221-5/+5
| | | | | | | | | | | | | | | Purpose: bug fix for Tru64 and test of the latest szip library. Description: h5diff uses basename function that also is defined in the system string.h file. That caused compilation to fail. Solution: renamed basename to h5diff_basename Platforms tested: verbena, arabica, arabica-64, and PSC Compaq machine. Misc. update: