summaryrefslogtreecommitdiffstats
path: root/tools
Commit message (Collapse)AuthorAgeFilesLines
* [svn-r2394] Removed h5dumptst from PROGS=...Albert Cheng2000-06-191-1/+1
| | | | | | | | | h5dumptst is not a user tool. It is used to generate the test files for tools tests. It is useless for HDF5 users and may do harm since it just creates a bunch of *.h5 files which may wipe out users' files that have the same name. The more correct fix would be to create a PUB_PROGS that contains tools to be installed, just like PUB_HDR and PUB_LIBS.
* [svn-r2360] made the same changes I made to the dev branch. decided to add ↵Patrick Lu2000-06-074-46/+79
| | | | | | | to the release branch after all since the changes will not affect the release branch. the changes have a conditional compile statement around some of it so it shouldnt break anything
* [svn-r2347] Regenerated since h5dumptst.c has been changed.Albert Cheng2000-06-0616-37/+33
|
* [svn-r2346] Changed the generation of the nested compound types routine.Albert Cheng2000-06-061-34/+31
| | | | | | | | It now uses the standard data for the file type. Also, C char is actually an integer type. The old code treated it as a null terminated String was a potential error. Changed the file type for that case to STD_I8BE for now. May come back later to really make that field as string type.
* [svn-r2314] This commit was manufactured by cvs2svn to create branch 'hdf5_1_2'.cvs2svn2000-05-312-0/+26
|
* [svn-r2313] added a function to create the bitfields test file.Patrick Lu2000-05-311-0/+48
| | | | taken from the dset test file
* [svn-r2312] made the dumper print out the bitfield data using the tools libPatrick Lu2000-05-311-4/+1
|
* [svn-r2303] made the ddl reflect the current output format for the compound ↵Patrick Lu2000-05-301-30/+30
| | | | types
* [svn-r2302] fixed the output of the nested compound types so the closing ↵Patrick Lu2000-05-301-1/+3
| | | | | | curly brace is aligned with the opening brace.
* [svn-r2301] removed the -xml option from the usage statementPatrick Lu2000-05-301-2/+1
|
* [svn-r2282] the same changes that were made for the dev branchPatrick Lu2000-05-192-29/+72
|
* [svn-r2281] same changes i just made for devPatrick Lu2000-05-191-38/+74
|
* [svn-r2260] Updated all these dependant files.Albert Cheng2000-05-171-0/+211
|
* [svn-r2255] added an extra conditional to the the for loop in the ↵Patrick Lu2000-05-161-4/+6
| | | | | | | | h5dump_simple_mem function. it was entering the loop even when the ndims and i were equal to 0 which shouldnt have happened(only in dangermouse). didnt know how else to fix it
* [svn-r2254] checked in an older version of this file before by accident.Patrick Lu2000-05-151-2/+2
| | | | this one has semicolons after the opaque data.
* [svn-r2250] new files for the release branch. taken from dev branchPatrick Lu2000-05-121-2/+2
|
* [svn-r2249] This commit was manufactured by cvs2svn to create branch 'hdf5_1_2'.cvs2svn2000-05-124-0/+90
|
* [svn-r2248] more update testfiles. come from the dev branchPatrick Lu2000-05-1222-456/+455
|
* [svn-r2247] these are new testfiles and ddl files. to correspond with the ↵Patrick Lu2000-05-1214-410/+294
| | | | new merged tools lib
* [svn-r2246] needed to add new hdf files to match with the changes done to ↵Patrick Lu2000-05-122-0/+0
| | | | the dump output
* [svn-r2244] Put in the missing ';' for H5T_OPAQUE printing.Albert Cheng2000-05-111-2/+2
|
* [svn-r2241] Removed h5dumputil.c. Its functions have been migrated to ↵Albert Cheng2000-05-112-149/+3
| | | | h5tools.c.
* [svn-r2240] Removed h5findshd.c. Its routines have been moved to libh5tools.c.Albert Cheng2000-05-111-574/+0
|
* [svn-r2239] Folded all the changes done in version 1.3 into this 1.2 branchAlbert Cheng2000-05-1111-1603/+1654
| | | | | so that all the added features and bug fixes are included in the release branch. (Patrick did most of the work.)
* [svn-r2185] ./src/tools/h5tools.cRobb Matzke2000-04-212-9/+7
| | | | | | | Added hyphen to version printf format. ./src/tools/h5ls.c Calls print_version() instead of doing it by hand.
* [svn-r2037] put the changes from the development branch that fixed the error ↵Patrick Lu2000-03-191-33/+28
| | | | | | | with the committed types. the error was that committed types were not being printed in the dump output.
* [svn-r2000] Purpose:Albert Cheng2000-03-061-2/+171
| | | | | | | | | | | | | | | | | | | | | Bug fix. Description: Failed on T3E in which int32 is typedef to a short (4 bytes) but the converter just used H5T_NATIVE_INT for conversion of a STD_INT32. Int in a T3E is actually 64bit big. Solution: Recoded the h5type to h4type matching algorithm by making sure the size of the H4 type used is equal to the size of the H5 native type. Remark: current implementation is not efficient--it does all the sizes checking repeatedly. Should have done the type mapping once at the beginning as initialization. Old code are still retain via the macro NEWWAY. Need to verify the correctness of the converter in more platforms before finalized on the code. Platforms tested: Baldric (Solaris 2.6), arabica (Solaris 2.7) T3E
* [svn-r1987] same changes that i made to the development release. fixed the ↵Patrick Lu2000-02-231-18/+50
| | | | | | error with the meory alignments.
* [svn-r1869] h5dump.c:Albert Cheng1999-12-103-2/+22
| | | | | | | | Added -V option for displaying version information. h5tools.c: Added print_version routine to display version information. h5tools.h: Added print_version prototype.
* [svn-r1866] getting rid of the changes i just made.Patrick Lu1999-12-101-3/+35
|
* [svn-r1865] fixed the commited datatype errorPatrick Lu1999-12-101-35/+3
|
* [svn-r1862] The old way of testing **argv against NULL would cause coredump inAlbert Cheng1999-12-091-19/+23
| | | | | some machines. Changed it to use argc to control the looping. Still need to clean some more.
* [svn-r1803] [folded in changes made to v.1.3.]Albert Cheng1999-11-021-11/+31
| | | | | | | | | | | | | | Purpose: Bug fix. Description: If the H4DUMP (hdp) is not executable for some reasons (e.g., not in $PATH), it produced zero sized files. The test script did not detect the abnormality but compared the zero sized files the same and concluded the test passed. Solution: Test if H4DUMP can produce valid output. If not, print warning messages. Also check the size of output files to make sure they are reasonably valid.
* [svn-r1692] removed the last warnings from these files.Patrick Lu1999-09-293-5/+5
|
* [svn-r1681] Did some cleanup.Albert Cheng1999-09-281-18/+4
|
* [svn-r1669] got rid of more warnings with this filePatrick Lu1999-09-271-7/+7
| | | | | changed the type on the variable in the for loops from hsize_t to int and just casted it to hsize_t when we need to do the comparison
* [svn-r1666] fixed a fwe warnings. most of them just needed a cast to an intPatrick Lu1999-09-273-6/+6
| | | | for the parameter to isdigit or isprintf functions
* [svn-r1662] file wouldn't compile. needed an #include <fcntl.h> for some macrosPatrick Lu1999-09-251-1/+1
| | | | it didn't know about.(O_EXCL, O_RDWR, etc)
* [svn-r1660] remved some(not all) of the warningsPatrick Lu1999-09-251-14/+14
|
* [svn-r1658] removed some of the warningsPatrick Lu1999-09-251-11/+13
|
* [svn-r1652] Removed unneeded sys/fcntl.h include line, which was causing the ↵Quincey Koziol1999-09-241-1/+0
| | | | J90 problems.
* [svn-r1605] ./tools/h5ls.c [1.2, 1.3]Robb Matzke1999-08-261-0/+1
| | | | | | | | | | Fixed a bug where the `Data:' tag didn't get printed for attributes that have more than five values. ./src/H5O.c [1.2, 1.3] Initialzed the padding area between the end of a message and the end of the space allocated for that message. This hopefully fixes an UMR error found by Quincey and prevents the file from containing unwanted data.
* [svn-r1520] Forgot to change the arguments for the $diff command when I changedAlbert Cheng1999-07-201-2/+2
| | | | | them for $cmp the last time. Updated it. now it works for --srcdir option too.
* [svn-r1518] Updated the expected output according to the changes Patrick justAlbert Cheng1999-07-201-79/+79
| | | | made.
* [svn-r1511] new version of this file. has the string after the arrayPatrick Lu1999-07-191-0/+0
|
* [svn-r1510] Patrick Lu1999-07-191-1/+1
| | | | | reordered the struct for the tstr.h5 file. now the array prints out before the string in the dumper.
* [svn-r1501] Updated ddl files for new h5dump outputQuincey Koziol1999-07-173-81/+81
|
* [svn-r1497] Updated the expected output file since h5dumptst has changed theAlbert Cheng1999-07-161-0/+0
| | | | content of the corresponding h5 file.
* [svn-r1490] Patrick Lu1999-07-161-1/+1
| | | | fixed one small typo
* [svn-r1489] Patrick Lu1999-07-161-160/+8
| | | | | removed a function that was not being compiled and put in a preliminary check in case the indentation is more than the number of columns.