summaryrefslogtreecommitdiffstats
path: root/tools/h5dump/h5dump_ddl.c
Commit message (Collapse)AuthorAgeFilesLines
* [svn-r29186] HDFFV-9654: add VDS options to h5dumpAllen Byrne2016-02-231-134/+172
| | | | includes new data files
* [svn-r29179] Revert of 29177 which breaks the autotools build.Dana Robinson2016-02-221-172/+134
| | | | | Tested on: 64-bit Ubuntu 15.10 (Linux 4.2.0 x86_64) gcc 5.2.1 autotools serial
* [svn-r29177] HDFFV-9654: add VDS options to h5dumpAllen Byrne2016-02-221-134/+172
|
* [svn-r27801] Minor warning fixes in the tools.Dana Robinson2015-09-161-6/+7
| | | | Tested on: jam (too minor for h5committest)
* [svn-r27626] Various minor warning fixes before major SWMR and VDS merges.Dana Robinson2015-08-311-0/+17
| | | | | | | | | | | gcc 4.9.2 was used to create the warning list - implicit casts - shadowed variables - various enum issues - other minor fixes (comments, unused macros, etc.) Tested on: h5committest
* [svn-r27133] - Add a new attribute function characterstic for format:Mohamad Chaarawi2015-06-011-9/+9
| | | | | | | | * H5_ATTR_FORMAT(X,Y,Z) __attribute__((format(X, Y, Z))) - Rename UNUSED attribute characterstic to H5_ATTR_UNUSED. - Rename NORETURN attribute characterstic to H5_ATTR_NORETURN tested with h5committest.
* [svn-r24864] Description:Quincey Koziol2014-03-211-21/+12
| | | | | | | | | | | | | | | | | | Remove all traces of MPI-POSIX VFD and GPFS detection/code. Remove remaining traces of stream VFD. Remove testpar/t_posix_compliant test (it's not actually verifying anything). Clean up H5D__mpio_opt_possible() further. Moved environment variable that disables MPI collective operations into MPI-IO VFD (instead of it being in src/H5S.c). A few other small code cleanups. Tested on: Mac OSX/64 10.9.2 (amazon) w/parallel & serial
* [svn-r24172] Position trunk/1.8 vars in similar location for comparison.Allen Byrne2013-09-191-3/+3
|
* [svn-r24115] Reduce warnings for conversions of different widths.Larry Knox2013-09-061-50/+50
| | | | h5committested on jam, ostrich, koala, and platypus.
* [svn-r24030] Description:Quincey Koziol2013-08-191-4/+4
| | | | | | | | Clean up more compiler warnings. Tested on: Mac OSX/64 10.8.4 (amazon) w/gcc, C++ & FORTRAN (too minor to require h5committest)
* [svn-r24020] Description:Quincey Koziol2013-08-171-7/+8
| | | | | | | | Clean up compiler warnings Tested on: Mac OSX/64 10.8.4 (amazon) w/C++ & FORTRAN (too minor to require h5committest)
* [svn-r24002] Fix 32-bit and valgrind issues with new handle_paths code - ↵Allen Byrne2013-08-131-1/+1
| | | | | | correct math of adding a NULL to a string. Tested: local linux (valgrind) and h5committest
* [svn-r23999] Move declaration to top of block - fix for windows.Allen Byrne2013-08-131-1/+1
|
* [svn-r23996] HDFFV-7989: Add any_path option to search the file for paths. ↵Allen Byrne2013-08-121-1/+207
| | | | | | New test added, scripts updated, help text updated. Tested: local linux
* [svn-r23862] Change printfs in perform output and h5dump to prevent overflow.Mohamad Chaarawi2013-07-031-2/+2
| | | | | | This fixes: https://jira.hdfgroup.uiuc.edu/browse/HDFFV-8450 Tested on Jam.
* [svn-r23829] HDFFV-8134: allow exclusion of attributes. This implements the ↵Allen Byrne2013-06-261-12/+13
| | | | | | technique and creates a test. Help changes will be added after trunk tests pass the test cycle. Tested: local linux
* [svn-r23825] Bug HDFFV-8469: C++ comments in C code.Albert Cheng2013-06-261-2/+0
| | | | | | | | Found and removed two more "//" comments. Tested: in Koala by $ env CFLAGS="-ansi" ../hdf5/bin/buildhdf5 -fortran -cxx -config # enable fortran and cxx, configure only $ make AM_CFLAGS=-ansi # compile all source file by setting HDF5 build CFLAGS as "-ansi" only
* [svn-r23190] HDFFV-8285: Add suppress ddl option.Allen Byrne2013-01-221-47/+52
| | | | Tested: local linux
* [svn-r22567] HDFFV-7784: add attributes to the list of file contents option ↵Allen Byrne2012-07-121-73/+56
| | | | | | | | for h5dump. This is accomplished by adding an optional value to the option (-n) Created test and reference files. Tested: local linux with cmake
* [svn-r22563] HDFFV-8095: index order of links wrongAllen Byrne2012-07-121-1/+1
| | | | | | | | Create setters for indexing options in h5trav.c to be set before the obj table is created. Revert h5trav_print to remove now duplicated parameters. Added test and testfiles. Tested: local linux with cmake
* [svn-r22531] HDFFV-5942: sort options with contents optionAllen Byrne2012-07-091-1/+1
| | | | | | | Added static local variables in h5trav to hold the index_by and index_order values. Defaults are set. H5dump only use of the trav_print function, added two parameters and passed in the sort_by and sort_order variables. Tested: local linux
* [svn-r22411] reduce compiler warnings by removing unreferenced variables and ↵Allen Byrne2012-05-251-2/+5
| | | | | | adding cast Tested: local linux
* [svn-r22052] - h5dump: Added capability for "-a" option to show ↵Peter Cao2012-03-121-5/+12
| | | | | | | | attributes containing "/" by using an escape character. For example, for a dataset "/dset" containing attribute "speed(m/h)", use "h5dump -a "/dset/speed(\/h)" to show the content of the attribute. See details at HDFFV-7523
* [svn-r22027] HDFFV-7839: Dangling link should not display errorAllen Byrne2012-03-051-7/+1
| | | | | | | If a link is specified on the command with the -d option, call the handle_links function on error from the H5Dopen command. Updated test file results with error stack when link not found. Tested: local linux and jam
* [svn-r21985] Tools must call h5tools_init before command_line parsing or ↵Allen Byrne2012-02-241-106/+106
| | | | | | | | using tools_mesg functions. Tools library uses alais variables for stdout, stderr and tools library uses HDfprintf() functions. Tested: local linux
* [svn-r21980] Correct HD prefix in tools for *allocAllen Byrne2012-02-241-4/+4
| | | | Checked for HD support.
* [svn-r21979] Correct HD prefix in tools for strlen and memcpyAllen Byrne2012-02-241-27/+27
| | | | Checked for HD support.
* [svn-r21974] Update HSIZE_T print statements to use correct macro.Allen Byrne2012-02-231-4/+4
| | | | | | Fix some more HD prefix issues in tools. Tested: local linux
* [svn-r21953] HDDFV-7560: h5dump refactoringAllen Byrne2012-02-171-0/+1931
Tested: local linux