diff options
author | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2008-10-17 23:45:32 (GMT) |
---|---|---|
committer | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2008-10-17 23:45:32 (GMT) |
commit | 1e1bcb801cb2b569ffa2a94cce2433da2917d919 (patch) | |
tree | e39ca49188f0f01382a881349ddd2c3cd58d3d1d /tools/lib | |
parent | 6c262bfc9359e274c6a2b8234c34e4415d8146ed (diff) | |
download | hdf5-1e1bcb801cb2b569ffa2a94cce2433da2917d919.zip hdf5-1e1bcb801cb2b569ffa2a94cce2433da2917d919.tar.gz hdf5-1e1bcb801cb2b569ffa2a94cce2433da2917d919.tar.bz2 |
[svn-r15900] Make the h5copy test that renames a group to return 1 on the h5diff call and assume 1 is the correct result
Drop the -c flag for h5diff
Tested: linux
Diffstat (limited to 'tools/lib')
-rw-r--r-- | tools/lib/h5diff.c | 4 | ||||
-rw-r--r-- | tools/lib/h5diff.h | 1 |
2 files changed, 0 insertions, 5 deletions
diff --git a/tools/lib/h5diff.c b/tools/lib/h5diff.c index 2b10c57..5669945 100644 --- a/tools/lib/h5diff.c +++ b/tools/lib/h5diff.c @@ -974,10 +974,6 @@ hsize_t diff(hid_t file1_id, /* if "path1" != "path2" then the groups are "different" */ nfound = (ret != 0) ? 1 : 0; - /* if the ignore graph is present, consider a no difference */ - if ( options->m_no_contents == 1 ) - nfound = 0; - if(print_objname(options, nfound)) do_print_objname("group", path1, path2); diff --git a/tools/lib/h5diff.h b/tools/lib/h5diff.h index 2444023..430ee65 100644 --- a/tools/lib/h5diff.h +++ b/tools/lib/h5diff.h @@ -38,7 +38,6 @@ typedef struct { int cmn_objs; /* do we have comparable objects */ int not_cmp; /* are the objects comparable */ int contents; /* equal contents */ - int m_no_contents; /* ignore graph comparison in return value */ } diff_opt_t; |