diff options
author | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2008-10-16 23:24:18 (GMT) |
---|---|---|
committer | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2008-10-16 23:24:18 (GMT) |
commit | 924ba14474479cacc6aa99aabb2ac81462ff6d73 (patch) | |
tree | 4a23df0c90e6e80fe37f83c17d8bb72abe49c82e /tools/lib | |
parent | 208777ec89b63e27fbe34879ec43d95329301c08 (diff) | |
download | hdf5-924ba14474479cacc6aa99aabb2ac81462ff6d73.zip hdf5-924ba14474479cacc6aa99aabb2ac81462ff6d73.tar.gz hdf5-924ba14474479cacc6aa99aabb2ac81462ff6d73.tar.bz2 |
[svn-r15896] Introduced a -c flag to ignore file contents differences in the return value (return 0 id -c is present)
Introduced for h5copy validation
Tested: windows, linux
Diffstat (limited to 'tools/lib')
-rw-r--r-- | tools/lib/h5diff.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/lib/h5diff.h b/tools/lib/h5diff.h index c013ba5..2444023 100644 --- a/tools/lib/h5diff.h +++ b/tools/lib/h5diff.h @@ -25,7 +25,7 @@ */ typedef struct { - int m_quiet; /* quiet mide: no output at all */ + int m_quiet; /* quiet mode: no output at all */ int m_report; /* report mode: print the data */ int m_verbose; /* verbose mode: print the data, list of objcets, warnings */ int d; /* delta, absolute value to compare */ @@ -38,6 +38,7 @@ 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; |