diff options
author | Jonathan Kim <jkm@hdfgroup.org> | 2012-03-22 19:35:41 (GMT) |
---|---|---|
committer | Jonathan Kim <jkm@hdfgroup.org> | 2012-03-22 19:35:41 (GMT) |
commit | b462f48e9b308886b6ed455a4aae7cbf0b8a2749 (patch) | |
tree | c5c70cb10b5e53322bd089ecfa2b422bf70cfe68 /release_docs | |
parent | d6f8aa5c53fb890730befcbf985a7fa9aa38c0ec (diff) | |
download | hdf5-b462f48e9b308886b6ed455a4aae7cbf0b8a2749.zip hdf5-b462f48e9b308886b6ed455a4aae7cbf0b8a2749.tar.gz hdf5-b462f48e9b308886b6ed455a4aae7cbf0b8a2749.tar.bz2 |
[svn-r22124] Purpose:
Fix for HDFFV-7837 - h5diff: incorrect behavior with exclude-path option when unique object exist only in one file
Description:
If unique objects exists only in one file and try to exclude
the unique objects with --exclude-path option, h5diff missed
excluding some objects.
Fixed to exclude objects correctly in such case.
Test cases were added and tagged with jira#.
Merged from HDF5 trunk r22114.
Tested:
jam (linux32-LE), koala (linux64-LE), ostrich (linuxppc64-BE), tejeda (mac32-LE), linew (solaris-BE), Windows (32-LE cmake), Cmake (jam)
Diffstat (limited to 'release_docs')
-rw-r--r-- | release_docs/RELEASE.txt | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index 7e9dbd3..a341c9d 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -68,6 +68,11 @@ New Features Tools ----- + - h5dump: Added capability for "-a" option to show 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 + (PC -- 2012/03/12) - h5dump: Added ability to apply command options across multiple files using a wildcard in the filename. Unix example; "h5dump -H -d Dataset1 tarr*.h5". Cross platform example; "h5dump -H -d Dataset1 tarray1.h5 tarray2.h5 tarray3.h5". @@ -139,6 +144,11 @@ Bug Fixes since HDF5-1.8.8 Tools ----- + - h5diff: If unique objects exists only in one file and try to exclude + the unique objects with --exclude-path option, h5diff missed + excluding some objects. + Fixed to exclude objects correctly in such case. + HDFFV-7837 (JKM 2012/03/20) - h5diff: When two symbolic dangling links are compared with --follow-symlinks option, the result should be same. It worked for comparing two files, but didn't work for comparing two objects. |