diff options
author | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2009-01-26 19:29:22 (GMT) |
---|---|---|
committer | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2009-01-26 19:29:22 (GMT) |
commit | 120350c39588d57d6b89bd99569a7fa34b4de59f (patch) | |
tree | dda9cdb9248d698832c0bd25425029634cfd2d7e /tools/lib/h5diff.h | |
parent | 0682bfceb764bd4f4b4fb61695ca8d99440f39b1 (diff) | |
download | hdf5-120350c39588d57d6b89bd99569a7fa34b4de59f.zip hdf5-120350c39588d57d6b89bd99569a7fa34b4de59f.tar.gz hdf5-120350c39588d57d6b89bd99569a7fa34b4de59f.tar.bz2 |
[svn-r16348] #1368 (E1) h5diff: implement "not comparable" messages. Implemented RFC. The new option is <-c, --compare List objects that are not comparable>
added some test cases
tested: windows, linux
Diffstat (limited to 'tools/lib/h5diff.h')
-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 57d06a5..9028ce5 100644 --- a/tools/lib/h5diff.h +++ b/tools/lib/h5diff.h @@ -35,10 +35,11 @@ typedef struct { int n; /* count, compare up to count */ hsize_t count; /* count value */ int err_stat; /* an error ocurred (1, error, 0, no error) */ - int cmn_objs; /* do we have comparable objects */ + int cmn_objs; /* do we have common objects */ int not_cmp; /* are the objects comparable */ int contents; /* equal contents */ int do_nans; /* consider Nans while diffing floats */ + int m_list_not_cmp; /* list not comparable messages */ } diff_opt_t; |