diff options
author | Jonathan Kim <jkm@hdfgroup.org> | 2013-02-18 19:46:03 (GMT) |
---|---|---|
committer | Jonathan Kim <jkm@hdfgroup.org> | 2013-02-18 19:46:03 (GMT) |
commit | dbad502865d8817fe0db94dd6d6b9656ee257790 (patch) | |
tree | 148ecf43ec73c0f8f66c4d241037c5f8a6db59fb /tools/lib | |
parent | f3da4919c491d84b58be74fd90837c391b37fc7c (diff) | |
download | hdf5-dbad502865d8817fe0db94dd6d6b9656ee257790.zip hdf5-dbad502865d8817fe0db94dd6d6b9656ee257790.tar.gz hdf5-dbad502865d8817fe0db94dd6d6b9656ee257790.tar.bz2 |
[svn-r23304] Purpose:
HDFFV-7643 - h5diff - incorrect exit-code returns for extra attribute exist
Description:
h5diff: Fixed to return correct exit code 1 when detect unique
attribute. Prior to this fix, h5diff returned exit code 0 indicating
two files are identical.
Tested:
jam (linux32-LE), koala (linux64-LE), ostrich (linuxppc64-BE), fred (mac64-LE), emu (solaris-BE), Windows (32-LE cmake), cmake (jam)
Diffstat (limited to 'tools/lib')
-rw-r--r-- | tools/lib/h5diff_attr.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tools/lib/h5diff_attr.c b/tools/lib/h5diff_attr.c index 130a0d8..4899200 100644 --- a/tools/lib/h5diff_attr.c +++ b/tools/lib/h5diff_attr.c @@ -350,6 +350,13 @@ hsize_t diff_attr(hid_t loc1_id, if( build_match_list_attrs(loc1_id, loc2_id, &match_list_attrs, options) < 0) goto error; + /* if detect any unique extra attr */ + if(match_list_attrs->nattrs_only1 || match_list_attrs->nattrs_only2) + { + /* exit will be 1 */ + options->contents = 0; + } + for(u = 0; u < (unsigned)match_list_attrs->nattrs; u++) { if( (match_list_attrs->attrs[u].exist[0]) && (match_list_attrs->attrs[u].exist[1]) ) |