Tools refactor
Move error_stack setup to tools library Add structure for h5dump properties Eliminate duplicated h5diff functions Use properties structure in place of argument lists.
This commit is contained in:
BIN
tools/test/h5diff/testfiles/diff_eps1.h5
Normal file
BIN
tools/test/h5diff/testfiles/diff_eps1.h5
Normal file
Binary file not shown.
BIN
tools/test/h5diff/testfiles/diff_eps2.h5
Normal file
BIN
tools/test/h5diff/testfiles/diff_eps2.h5
Normal file
Binary file not shown.
@@ -17,10 +17,9 @@ usage: h5diff [OPTIONS] file1 file2 [obj1[ obj2]]
|
||||
Verbose mode with level. Print differences and list of objects.
|
||||
Level of detail depends on value of N:
|
||||
0 : Identical to '-v' or '--verbose'.
|
||||
1 : All level 0 information plus one-line attribute
|
||||
status summary.
|
||||
2 : All level 1 information plus extended attribute
|
||||
status report.
|
||||
1 : All level 0 information plus one-line attribute status summary.
|
||||
2 : All level 1 information plus extended attribute status report.
|
||||
3 : All level 2 information plus file names.
|
||||
-q, --quiet
|
||||
Quiet mode. Do not produce output.
|
||||
--enable-error-stack
|
||||
@@ -109,6 +108,14 @@ usage: h5diff [OPTIONS] file1 file2 [obj1[ obj2]]
|
||||
excluded.
|
||||
This option can be used repeatedly to exclude multiple paths.
|
||||
|
||||
--exclude-attribute "path/to/object/with/attribute"
|
||||
Exclude attributes on the specified path to an object when comparing files or groups.
|
||||
|
||||
If there are multiple paths to an object, only the specified path(s)
|
||||
will be excluded; the comparison will include any path not explicitly
|
||||
excluded.
|
||||
This option can be used repeatedly to exclude multiple paths.
|
||||
|
||||
Modes of output:
|
||||
Default mode: print the number of differences found and where they occured
|
||||
-r Report mode: print the above plus the differences
|
||||
|
||||
@@ -1,32 +1,32 @@
|
||||
|
||||
dataset: </g1/reference2D> and </g1/reference2D>
|
||||
size: [2] [2]
|
||||
position difference
|
||||
position reference2D reference2D difference
|
||||
------------------------------------------------------------
|
||||
[ 0 ] 1 0 1
|
||||
[ 1 ] 2 0 2
|
||||
size: [2] [2]
|
||||
position difference
|
||||
position reference2D reference2D difference
|
||||
------------------------------------------------------------
|
||||
[ 0 ] 1 0 1
|
||||
[ 1 ] 2 0 2
|
||||
size: [2] [2]
|
||||
position difference
|
||||
position reference2D reference2D difference
|
||||
------------------------------------------------------------
|
||||
[ 0 ] 1 0 1
|
||||
[ 1 ] 2 0 2
|
||||
size: [2] [2]
|
||||
position difference
|
||||
position reference2D reference2D difference
|
||||
------------------------------------------------------------
|
||||
[ 0 ] 1 0 1
|
||||
[ 1 ] 2 0 2
|
||||
size: [2] [2]
|
||||
position difference
|
||||
position reference2D reference2D difference
|
||||
------------------------------------------------------------
|
||||
[ 0 ] 1 0 1
|
||||
[ 1 ] 2 0 2
|
||||
size: [2] [2]
|
||||
position difference
|
||||
position reference2D reference2D difference
|
||||
------------------------------------------------------------
|
||||
[ 0 ] 1 0 1
|
||||
[ 1 ] 2 0 2
|
||||
|
||||
@@ -17,10 +17,9 @@ usage: h5diff [OPTIONS] file1 file2 [obj1[ obj2]]
|
||||
Verbose mode with level. Print differences and list of objects.
|
||||
Level of detail depends on value of N:
|
||||
0 : Identical to '-v' or '--verbose'.
|
||||
1 : All level 0 information plus one-line attribute
|
||||
status summary.
|
||||
2 : All level 1 information plus extended attribute
|
||||
status report.
|
||||
1 : All level 0 information plus one-line attribute status summary.
|
||||
2 : All level 1 information plus extended attribute status report.
|
||||
3 : All level 2 information plus file names.
|
||||
-q, --quiet
|
||||
Quiet mode. Do not produce output.
|
||||
--enable-error-stack
|
||||
@@ -109,6 +108,14 @@ usage: h5diff [OPTIONS] file1 file2 [obj1[ obj2]]
|
||||
excluded.
|
||||
This option can be used repeatedly to exclude multiple paths.
|
||||
|
||||
--exclude-attribute "path/to/object/with/attribute"
|
||||
Exclude attributes on the specified path to an object when comparing files or groups.
|
||||
|
||||
If there are multiple paths to an object, only the specified path(s)
|
||||
will be excluded; the comparison will include any path not explicitly
|
||||
excluded.
|
||||
This option can be used repeatedly to exclude multiple paths.
|
||||
|
||||
Modes of output:
|
||||
Default mode: print the number of differences found and where they occured
|
||||
-r Report mode: print the above plus the differences
|
||||
|
||||
@@ -18,10 +18,9 @@ usage: h5diff [OPTIONS] file1 file2 [obj1[ obj2]]
|
||||
Verbose mode with level. Print differences and list of objects.
|
||||
Level of detail depends on value of N:
|
||||
0 : Identical to '-v' or '--verbose'.
|
||||
1 : All level 0 information plus one-line attribute
|
||||
status summary.
|
||||
2 : All level 1 information plus extended attribute
|
||||
status report.
|
||||
1 : All level 0 information plus one-line attribute status summary.
|
||||
2 : All level 1 information plus extended attribute status report.
|
||||
3 : All level 2 information plus file names.
|
||||
-q, --quiet
|
||||
Quiet mode. Do not produce output.
|
||||
--enable-error-stack
|
||||
@@ -110,6 +109,14 @@ usage: h5diff [OPTIONS] file1 file2 [obj1[ obj2]]
|
||||
excluded.
|
||||
This option can be used repeatedly to exclude multiple paths.
|
||||
|
||||
--exclude-attribute "path/to/object/with/attribute"
|
||||
Exclude attributes on the specified path to an object when comparing files or groups.
|
||||
|
||||
If there are multiple paths to an object, only the specified path(s)
|
||||
will be excluded; the comparison will include any path not explicitly
|
||||
excluded.
|
||||
This option can be used repeatedly to exclude multiple paths.
|
||||
|
||||
Modes of output:
|
||||
Default mode: print the number of differences found and where they occured
|
||||
-r Report mode: print the above plus the differences
|
||||
|
||||
@@ -18,10 +18,9 @@ usage: h5diff [OPTIONS] file1 file2 [obj1[ obj2]]
|
||||
Verbose mode with level. Print differences and list of objects.
|
||||
Level of detail depends on value of N:
|
||||
0 : Identical to '-v' or '--verbose'.
|
||||
1 : All level 0 information plus one-line attribute
|
||||
status summary.
|
||||
2 : All level 1 information plus extended attribute
|
||||
status report.
|
||||
1 : All level 0 information plus one-line attribute status summary.
|
||||
2 : All level 1 information plus extended attribute status report.
|
||||
3 : All level 2 information plus file names.
|
||||
-q, --quiet
|
||||
Quiet mode. Do not produce output.
|
||||
--enable-error-stack
|
||||
@@ -110,6 +109,14 @@ usage: h5diff [OPTIONS] file1 file2 [obj1[ obj2]]
|
||||
excluded.
|
||||
This option can be used repeatedly to exclude multiple paths.
|
||||
|
||||
--exclude-attribute "path/to/object/with/attribute"
|
||||
Exclude attributes on the specified path to an object when comparing files or groups.
|
||||
|
||||
If there are multiple paths to an object, only the specified path(s)
|
||||
will be excluded; the comparison will include any path not explicitly
|
||||
excluded.
|
||||
This option can be used repeatedly to exclude multiple paths.
|
||||
|
||||
Modes of output:
|
||||
Default mode: print the number of differences found and where they occured
|
||||
-r Report mode: print the above plus the differences
|
||||
|
||||
@@ -18,10 +18,9 @@ usage: h5diff [OPTIONS] file1 file2 [obj1[ obj2]]
|
||||
Verbose mode with level. Print differences and list of objects.
|
||||
Level of detail depends on value of N:
|
||||
0 : Identical to '-v' or '--verbose'.
|
||||
1 : All level 0 information plus one-line attribute
|
||||
status summary.
|
||||
2 : All level 1 information plus extended attribute
|
||||
status report.
|
||||
1 : All level 0 information plus one-line attribute status summary.
|
||||
2 : All level 1 information plus extended attribute status report.
|
||||
3 : All level 2 information plus file names.
|
||||
-q, --quiet
|
||||
Quiet mode. Do not produce output.
|
||||
--enable-error-stack
|
||||
@@ -110,6 +109,14 @@ usage: h5diff [OPTIONS] file1 file2 [obj1[ obj2]]
|
||||
excluded.
|
||||
This option can be used repeatedly to exclude multiple paths.
|
||||
|
||||
--exclude-attribute "path/to/object/with/attribute"
|
||||
Exclude attributes on the specified path to an object when comparing files or groups.
|
||||
|
||||
If there are multiple paths to an object, only the specified path(s)
|
||||
will be excluded; the comparison will include any path not explicitly
|
||||
excluded.
|
||||
This option can be used repeatedly to exclude multiple paths.
|
||||
|
||||
Modes of output:
|
||||
Default mode: print the number of differences found and where they occured
|
||||
-r Report mode: print the above plus the differences
|
||||
|
||||
@@ -18,10 +18,9 @@ usage: h5diff [OPTIONS] file1 file2 [obj1[ obj2]]
|
||||
Verbose mode with level. Print differences and list of objects.
|
||||
Level of detail depends on value of N:
|
||||
0 : Identical to '-v' or '--verbose'.
|
||||
1 : All level 0 information plus one-line attribute
|
||||
status summary.
|
||||
2 : All level 1 information plus extended attribute
|
||||
status report.
|
||||
1 : All level 0 information plus one-line attribute status summary.
|
||||
2 : All level 1 information plus extended attribute status report.
|
||||
3 : All level 2 information plus file names.
|
||||
-q, --quiet
|
||||
Quiet mode. Do not produce output.
|
||||
--enable-error-stack
|
||||
@@ -110,6 +109,14 @@ usage: h5diff [OPTIONS] file1 file2 [obj1[ obj2]]
|
||||
excluded.
|
||||
This option can be used repeatedly to exclude multiple paths.
|
||||
|
||||
--exclude-attribute "path/to/object/with/attribute"
|
||||
Exclude attributes on the specified path to an object when comparing files or groups.
|
||||
|
||||
If there are multiple paths to an object, only the specified path(s)
|
||||
will be excluded; the comparison will include any path not explicitly
|
||||
excluded.
|
||||
This option can be used repeatedly to exclude multiple paths.
|
||||
|
||||
Modes of output:
|
||||
Default mode: print the number of differences found and where they occured
|
||||
-r Report mode: print the above plus the differences
|
||||
|
||||
@@ -18,10 +18,9 @@ usage: h5diff [OPTIONS] file1 file2 [obj1[ obj2]]
|
||||
Verbose mode with level. Print differences and list of objects.
|
||||
Level of detail depends on value of N:
|
||||
0 : Identical to '-v' or '--verbose'.
|
||||
1 : All level 0 information plus one-line attribute
|
||||
status summary.
|
||||
2 : All level 1 information plus extended attribute
|
||||
status report.
|
||||
1 : All level 0 information plus one-line attribute status summary.
|
||||
2 : All level 1 information plus extended attribute status report.
|
||||
3 : All level 2 information plus file names.
|
||||
-q, --quiet
|
||||
Quiet mode. Do not produce output.
|
||||
--enable-error-stack
|
||||
@@ -110,6 +109,14 @@ usage: h5diff [OPTIONS] file1 file2 [obj1[ obj2]]
|
||||
excluded.
|
||||
This option can be used repeatedly to exclude multiple paths.
|
||||
|
||||
--exclude-attribute "path/to/object/with/attribute"
|
||||
Exclude attributes on the specified path to an object when comparing files or groups.
|
||||
|
||||
If there are multiple paths to an object, only the specified path(s)
|
||||
will be excluded; the comparison will include any path not explicitly
|
||||
excluded.
|
||||
This option can be used repeatedly to exclude multiple paths.
|
||||
|
||||
Modes of output:
|
||||
Default mode: print the number of differences found and where they occured
|
||||
-r Report mode: print the above plus the differences
|
||||
|
||||
@@ -18,10 +18,9 @@ usage: h5diff [OPTIONS] file1 file2 [obj1[ obj2]]
|
||||
Verbose mode with level. Print differences and list of objects.
|
||||
Level of detail depends on value of N:
|
||||
0 : Identical to '-v' or '--verbose'.
|
||||
1 : All level 0 information plus one-line attribute
|
||||
status summary.
|
||||
2 : All level 1 information plus extended attribute
|
||||
status report.
|
||||
1 : All level 0 information plus one-line attribute status summary.
|
||||
2 : All level 1 information plus extended attribute status report.
|
||||
3 : All level 2 information plus file names.
|
||||
-q, --quiet
|
||||
Quiet mode. Do not produce output.
|
||||
--enable-error-stack
|
||||
@@ -110,6 +109,14 @@ usage: h5diff [OPTIONS] file1 file2 [obj1[ obj2]]
|
||||
excluded.
|
||||
This option can be used repeatedly to exclude multiple paths.
|
||||
|
||||
--exclude-attribute "path/to/object/with/attribute"
|
||||
Exclude attributes on the specified path to an object when comparing files or groups.
|
||||
|
||||
If there are multiple paths to an object, only the specified path(s)
|
||||
will be excluded; the comparison will include any path not explicitly
|
||||
excluded.
|
||||
This option can be used repeatedly to exclude multiple paths.
|
||||
|
||||
Modes of output:
|
||||
Default mode: print the number of differences found and where they occured
|
||||
-r Report mode: print the above plus the differences
|
||||
|
||||
@@ -18,10 +18,9 @@ usage: h5diff [OPTIONS] file1 file2 [obj1[ obj2]]
|
||||
Verbose mode with level. Print differences and list of objects.
|
||||
Level of detail depends on value of N:
|
||||
0 : Identical to '-v' or '--verbose'.
|
||||
1 : All level 0 information plus one-line attribute
|
||||
status summary.
|
||||
2 : All level 1 information plus extended attribute
|
||||
status report.
|
||||
1 : All level 0 information plus one-line attribute status summary.
|
||||
2 : All level 1 information plus extended attribute status report.
|
||||
3 : All level 2 information plus file names.
|
||||
-q, --quiet
|
||||
Quiet mode. Do not produce output.
|
||||
--enable-error-stack
|
||||
@@ -110,6 +109,14 @@ usage: h5diff [OPTIONS] file1 file2 [obj1[ obj2]]
|
||||
excluded.
|
||||
This option can be used repeatedly to exclude multiple paths.
|
||||
|
||||
--exclude-attribute "path/to/object/with/attribute"
|
||||
Exclude attributes on the specified path to an object when comparing files or groups.
|
||||
|
||||
If there are multiple paths to an object, only the specified path(s)
|
||||
will be excluded; the comparison will include any path not explicitly
|
||||
excluded.
|
||||
This option can be used repeatedly to exclude multiple paths.
|
||||
|
||||
Modes of output:
|
||||
Default mode: print the number of differences found and where they occured
|
||||
-r Report mode: print the above plus the differences
|
||||
|
||||
@@ -18,10 +18,9 @@ usage: h5diff [OPTIONS] file1 file2 [obj1[ obj2]]
|
||||
Verbose mode with level. Print differences and list of objects.
|
||||
Level of detail depends on value of N:
|
||||
0 : Identical to '-v' or '--verbose'.
|
||||
1 : All level 0 information plus one-line attribute
|
||||
status summary.
|
||||
2 : All level 1 information plus extended attribute
|
||||
status report.
|
||||
1 : All level 0 information plus one-line attribute status summary.
|
||||
2 : All level 1 information plus extended attribute status report.
|
||||
3 : All level 2 information plus file names.
|
||||
-q, --quiet
|
||||
Quiet mode. Do not produce output.
|
||||
--enable-error-stack
|
||||
@@ -110,6 +109,14 @@ usage: h5diff [OPTIONS] file1 file2 [obj1[ obj2]]
|
||||
excluded.
|
||||
This option can be used repeatedly to exclude multiple paths.
|
||||
|
||||
--exclude-attribute "path/to/object/with/attribute"
|
||||
Exclude attributes on the specified path to an object when comparing files or groups.
|
||||
|
||||
If there are multiple paths to an object, only the specified path(s)
|
||||
will be excluded; the comparison will include any path not explicitly
|
||||
excluded.
|
||||
This option can be used repeatedly to exclude multiple paths.
|
||||
|
||||
Modes of output:
|
||||
Default mode: print the number of differences found and where they occured
|
||||
-r Report mode: print the above plus the differences
|
||||
|
||||
@@ -1183,10 +1183,42 @@ position opaque3D of </dset> opaque3D of </dset> difference
|
||||
[ 3 2 1 ] 24 0 24
|
||||
24 differences found
|
||||
attribute: <reference of </dset>> and <reference of </dset>>
|
||||
Not comparable: <reference of </dset>> or <reference of </dset>> is an empty dataset
|
||||
Not comparable: <reference of </dset>> or <reference of </dset>> is an empty dataset
|
||||
0 differences found
|
||||
attribute: <reference2D of </dset>> and <reference2D of </dset>>
|
||||
Not comparable: <reference2D of </dset>> or <reference2D of </dset>> is an empty dataset
|
||||
Not comparable: <reference2D of </dset>> or <reference2D of </dset>> is an empty dataset
|
||||
Not comparable: <reference2D of </dset>> or <reference2D of </dset>> is an empty dataset
|
||||
Not comparable: <reference2D of </dset>> or <reference2D of </dset>> is an empty dataset
|
||||
Not comparable: <reference2D of </dset>> or <reference2D of </dset>> is an empty dataset
|
||||
Not comparable: <reference2D of </dset>> or <reference2D of </dset>> is an empty dataset
|
||||
0 differences found
|
||||
attribute: <reference3D of </dset>> and <reference3D of </dset>>
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
0 differences found
|
||||
attribute: <string of </dset>> and <string of </dset>>
|
||||
size: [2] [2]
|
||||
|
||||
@@ -1187,10 +1187,42 @@ position opaque3D of </dset> opaque3D of </dset> difference
|
||||
[ 3 2 1 ] 24 0 24
|
||||
24 differences found
|
||||
attribute: <reference of </dset>> and <reference of </dset>>
|
||||
Not comparable: <reference of </dset>> or <reference of </dset>> is an empty dataset
|
||||
Not comparable: <reference of </dset>> or <reference of </dset>> is an empty dataset
|
||||
0 differences found
|
||||
attribute: <reference2D of </dset>> and <reference2D of </dset>>
|
||||
Not comparable: <reference2D of </dset>> or <reference2D of </dset>> is an empty dataset
|
||||
Not comparable: <reference2D of </dset>> or <reference2D of </dset>> is an empty dataset
|
||||
Not comparable: <reference2D of </dset>> or <reference2D of </dset>> is an empty dataset
|
||||
Not comparable: <reference2D of </dset>> or <reference2D of </dset>> is an empty dataset
|
||||
Not comparable: <reference2D of </dset>> or <reference2D of </dset>> is an empty dataset
|
||||
Not comparable: <reference2D of </dset>> or <reference2D of </dset>> is an empty dataset
|
||||
0 differences found
|
||||
attribute: <reference3D of </dset>> and <reference3D of </dset>>
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
0 differences found
|
||||
attribute: <string of </dset>> and <string of </dset>>
|
||||
size: [2] [2]
|
||||
|
||||
@@ -1254,10 +1254,42 @@ position opaque3D of </dset> opaque3D of </dset> difference
|
||||
[ 3 2 1 ] 24 0 24
|
||||
24 differences found
|
||||
attribute: <reference of </dset>> and <reference of </dset>>
|
||||
Not comparable: <reference of </dset>> or <reference of </dset>> is an empty dataset
|
||||
Not comparable: <reference of </dset>> or <reference of </dset>> is an empty dataset
|
||||
0 differences found
|
||||
attribute: <reference2D of </dset>> and <reference2D of </dset>>
|
||||
Not comparable: <reference2D of </dset>> or <reference2D of </dset>> is an empty dataset
|
||||
Not comparable: <reference2D of </dset>> or <reference2D of </dset>> is an empty dataset
|
||||
Not comparable: <reference2D of </dset>> or <reference2D of </dset>> is an empty dataset
|
||||
Not comparable: <reference2D of </dset>> or <reference2D of </dset>> is an empty dataset
|
||||
Not comparable: <reference2D of </dset>> or <reference2D of </dset>> is an empty dataset
|
||||
Not comparable: <reference2D of </dset>> or <reference2D of </dset>> is an empty dataset
|
||||
0 differences found
|
||||
attribute: <reference3D of </dset>> and <reference3D of </dset>>
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
0 differences found
|
||||
attribute: <string of </dset>> and <string of </dset>>
|
||||
size: [2] [2]
|
||||
|
||||
@@ -1187,10 +1187,42 @@ position opaque3D of </dset> opaque3D of </dset> difference
|
||||
[ 3 2 1 ] 24 0 24
|
||||
24 differences found
|
||||
attribute: <reference of </dset>> and <reference of </dset>>
|
||||
Not comparable: <reference of </dset>> or <reference of </dset>> is an empty dataset
|
||||
Not comparable: <reference of </dset>> or <reference of </dset>> is an empty dataset
|
||||
0 differences found
|
||||
attribute: <reference2D of </dset>> and <reference2D of </dset>>
|
||||
Not comparable: <reference2D of </dset>> or <reference2D of </dset>> is an empty dataset
|
||||
Not comparable: <reference2D of </dset>> or <reference2D of </dset>> is an empty dataset
|
||||
Not comparable: <reference2D of </dset>> or <reference2D of </dset>> is an empty dataset
|
||||
Not comparable: <reference2D of </dset>> or <reference2D of </dset>> is an empty dataset
|
||||
Not comparable: <reference2D of </dset>> or <reference2D of </dset>> is an empty dataset
|
||||
Not comparable: <reference2D of </dset>> or <reference2D of </dset>> is an empty dataset
|
||||
0 differences found
|
||||
attribute: <reference3D of </dset>> and <reference3D of </dset>>
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
0 differences found
|
||||
attribute: <string of </dset>> and <string of </dset>>
|
||||
size: [2] [2]
|
||||
|
||||
@@ -1254,10 +1254,42 @@ position opaque3D of </dset> opaque3D of </dset> difference
|
||||
[ 3 2 1 ] 24 0 24
|
||||
24 differences found
|
||||
attribute: <reference of </dset>> and <reference of </dset>>
|
||||
Not comparable: <reference of </dset>> or <reference of </dset>> is an empty dataset
|
||||
Not comparable: <reference of </dset>> or <reference of </dset>> is an empty dataset
|
||||
0 differences found
|
||||
attribute: <reference2D of </dset>> and <reference2D of </dset>>
|
||||
Not comparable: <reference2D of </dset>> or <reference2D of </dset>> is an empty dataset
|
||||
Not comparable: <reference2D of </dset>> or <reference2D of </dset>> is an empty dataset
|
||||
Not comparable: <reference2D of </dset>> or <reference2D of </dset>> is an empty dataset
|
||||
Not comparable: <reference2D of </dset>> or <reference2D of </dset>> is an empty dataset
|
||||
Not comparable: <reference2D of </dset>> or <reference2D of </dset>> is an empty dataset
|
||||
Not comparable: <reference2D of </dset>> or <reference2D of </dset>> is an empty dataset
|
||||
0 differences found
|
||||
attribute: <reference3D of </dset>> and <reference3D of </dset>>
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
Not comparable: <reference3D of </dset>> or <reference3D of </dset>> is an empty dataset
|
||||
0 differences found
|
||||
attribute: <string of </dset>> and <string of </dset>>
|
||||
size: [2] [2]
|
||||
|
||||
@@ -528,166 +528,166 @@ position opaque3D opaque3D difference
|
||||
24 differences found
|
||||
dataset: </g1/reference> and </g1/reference>
|
||||
size: [2] [2]
|
||||
position difference
|
||||
position reference reference difference
|
||||
------------------------------------------------------------
|
||||
[ 0 ] 1 0 1
|
||||
[ 1 ] 2 0 2
|
||||
size: [2] [2]
|
||||
position difference
|
||||
position reference reference difference
|
||||
------------------------------------------------------------
|
||||
[ 0 ] 1 0 1
|
||||
[ 1 ] 2 0 2
|
||||
4 differences found
|
||||
dataset: </g1/reference2D> and </g1/reference2D>
|
||||
size: [2] [2]
|
||||
position difference
|
||||
position reference2D reference2D difference
|
||||
------------------------------------------------------------
|
||||
[ 0 ] 1 0 1
|
||||
[ 1 ] 2 0 2
|
||||
size: [2] [2]
|
||||
position difference
|
||||
position reference2D reference2D difference
|
||||
------------------------------------------------------------
|
||||
[ 0 ] 1 0 1
|
||||
[ 1 ] 2 0 2
|
||||
size: [2] [2]
|
||||
position difference
|
||||
position reference2D reference2D difference
|
||||
------------------------------------------------------------
|
||||
[ 0 ] 1 0 1
|
||||
[ 1 ] 2 0 2
|
||||
size: [2] [2]
|
||||
position difference
|
||||
position reference2D reference2D difference
|
||||
------------------------------------------------------------
|
||||
[ 0 ] 1 0 1
|
||||
[ 1 ] 2 0 2
|
||||
size: [2] [2]
|
||||
position difference
|
||||
position reference2D reference2D difference
|
||||
------------------------------------------------------------
|
||||
[ 0 ] 1 0 1
|
||||
[ 1 ] 2 0 2
|
||||
size: [2] [2]
|
||||
position difference
|
||||
position reference2D reference2D difference
|
||||
------------------------------------------------------------
|
||||
[ 0 ] 1 0 1
|
||||
[ 1 ] 2 0 2
|
||||
12 differences found
|
||||
dataset: </g1/reference3D> and </g1/reference3D>
|
||||
size: [2] [2]
|
||||
position difference
|
||||
position reference3D reference3D difference
|
||||
------------------------------------------------------------
|
||||
[ 0 ] 1 0 1
|
||||
[ 1 ] 2 0 2
|
||||
size: [2] [2]
|
||||
position difference
|
||||
position reference3D reference3D difference
|
||||
------------------------------------------------------------
|
||||
[ 0 ] 1 0 1
|
||||
[ 1 ] 2 0 2
|
||||
size: [2] [2]
|
||||
position difference
|
||||
position reference3D reference3D difference
|
||||
------------------------------------------------------------
|
||||
[ 0 ] 1 0 1
|
||||
[ 1 ] 2 0 2
|
||||
size: [2] [2]
|
||||
position difference
|
||||
position reference3D reference3D difference
|
||||
------------------------------------------------------------
|
||||
[ 0 ] 1 0 1
|
||||
[ 1 ] 2 0 2
|
||||
size: [2] [2]
|
||||
position difference
|
||||
position reference3D reference3D difference
|
||||
------------------------------------------------------------
|
||||
[ 0 ] 1 0 1
|
||||
[ 1 ] 2 0 2
|
||||
size: [2] [2]
|
||||
position difference
|
||||
position reference3D reference3D difference
|
||||
------------------------------------------------------------
|
||||
[ 0 ] 1 0 1
|
||||
[ 1 ] 2 0 2
|
||||
size: [2] [2]
|
||||
position difference
|
||||
position reference3D reference3D difference
|
||||
------------------------------------------------------------
|
||||
[ 0 ] 1 0 1
|
||||
[ 1 ] 2 0 2
|
||||
size: [2] [2]
|
||||
position difference
|
||||
position reference3D reference3D difference
|
||||
------------------------------------------------------------
|
||||
[ 0 ] 1 0 1
|
||||
[ 1 ] 2 0 2
|
||||
size: [2] [2]
|
||||
position difference
|
||||
position reference3D reference3D difference
|
||||
------------------------------------------------------------
|
||||
[ 0 ] 1 0 1
|
||||
[ 1 ] 2 0 2
|
||||
size: [2] [2]
|
||||
position difference
|
||||
position reference3D reference3D difference
|
||||
------------------------------------------------------------
|
||||
[ 0 ] 1 0 1
|
||||
[ 1 ] 2 0 2
|
||||
size: [2] [2]
|
||||
position difference
|
||||
position reference3D reference3D difference
|
||||
------------------------------------------------------------
|
||||
[ 0 ] 1 0 1
|
||||
[ 1 ] 2 0 2
|
||||
size: [2] [2]
|
||||
position difference
|
||||
position reference3D reference3D difference
|
||||
------------------------------------------------------------
|
||||
[ 0 ] 1 0 1
|
||||
[ 1 ] 2 0 2
|
||||
size: [2] [2]
|
||||
position difference
|
||||
position reference3D reference3D difference
|
||||
------------------------------------------------------------
|
||||
[ 0 ] 1 0 1
|
||||
[ 1 ] 2 0 2
|
||||
size: [2] [2]
|
||||
position difference
|
||||
position reference3D reference3D difference
|
||||
------------------------------------------------------------
|
||||
[ 0 ] 1 0 1
|
||||
[ 1 ] 2 0 2
|
||||
size: [2] [2]
|
||||
position difference
|
||||
position reference3D reference3D difference
|
||||
------------------------------------------------------------
|
||||
[ 0 ] 1 0 1
|
||||
[ 1 ] 2 0 2
|
||||
size: [2] [2]
|
||||
position difference
|
||||
position reference3D reference3D difference
|
||||
------------------------------------------------------------
|
||||
[ 0 ] 1 0 1
|
||||
[ 1 ] 2 0 2
|
||||
size: [2] [2]
|
||||
position difference
|
||||
position reference3D reference3D difference
|
||||
------------------------------------------------------------
|
||||
[ 0 ] 1 0 1
|
||||
[ 1 ] 2 0 2
|
||||
size: [2] [2]
|
||||
position difference
|
||||
position reference3D reference3D difference
|
||||
------------------------------------------------------------
|
||||
[ 0 ] 1 0 1
|
||||
[ 1 ] 2 0 2
|
||||
size: [2] [2]
|
||||
position difference
|
||||
position reference3D reference3D difference
|
||||
------------------------------------------------------------
|
||||
[ 0 ] 1 0 1
|
||||
[ 1 ] 2 0 2
|
||||
size: [2] [2]
|
||||
position difference
|
||||
position reference3D reference3D difference
|
||||
------------------------------------------------------------
|
||||
[ 0 ] 1 0 1
|
||||
[ 1 ] 2 0 2
|
||||
size: [2] [2]
|
||||
position difference
|
||||
position reference3D reference3D difference
|
||||
------------------------------------------------------------
|
||||
[ 0 ] 1 0 1
|
||||
[ 1 ] 2 0 2
|
||||
size: [2] [2]
|
||||
position difference
|
||||
position reference3D reference3D difference
|
||||
------------------------------------------------------------
|
||||
[ 0 ] 1 0 1
|
||||
[ 1 ] 2 0 2
|
||||
size: [2] [2]
|
||||
position difference
|
||||
position reference3D reference3D difference
|
||||
------------------------------------------------------------
|
||||
[ 0 ] 1 0 1
|
||||
[ 1 ] 2 0 2
|
||||
size: [2] [2]
|
||||
position difference
|
||||
position reference3D reference3D difference
|
||||
------------------------------------------------------------
|
||||
[ 0 ] 1 0 1
|
||||
[ 1 ] 2 0 2
|
||||
|
||||
17
tools/test/h5diff/testfiles/h5diff_eps.txt
Normal file
17
tools/test/h5diff/testfiles/h5diff_eps.txt
Normal file
@@ -0,0 +1,17 @@
|
||||
file1: diff_eps1.h5
|
||||
file2: diff_eps2.h5
|
||||
|
||||
file1 file2
|
||||
---------------------------------------
|
||||
x x /
|
||||
x x /DS1
|
||||
|
||||
|
||||
group : </> and </>
|
||||
0 differences found
|
||||
Attributes status: 0 common, 0 only in obj1, 0 only in obj2
|
||||
|
||||
dataset: </DS1> and </DS1>
|
||||
0 differences found
|
||||
Attributes status: 0 common, 0 only in obj1, 0 only in obj2
|
||||
EXIT CODE: 0
|
||||
@@ -1,12 +1,11 @@
|
||||
|
||||
dataset: </Dataset3> and </Dataset3>
|
||||
attribute: <Attr1 of <(null)>> and <Attr1 of <(null)>>
|
||||
attribute: <Attr1 of <Dataset3>> and <Attr1 of <Dataset3>>
|
||||
0 differences found
|
||||
Warning: Cannot open referenced attribute: attribute 1
|
||||
Warning: Cannot open referenced attribute: attribute 2
|
||||
attribute: <Attr2 of <(null)>> and <Attr2 of <(null)>>
|
||||
Warning: Cannot open referenced attribute1
|
||||
attribute: <Attr2 of <Dataset3>> and <Attr2 of <Dataset3>>
|
||||
0 differences found
|
||||
attribute: <Attr3 of <(null)>> and <Attr3 of <(null)>>
|
||||
attribute: <Attr3 of <Dataset3>> and <Attr3 of <Dataset3>>
|
||||
0 differences found
|
||||
0 differences found
|
||||
obj1 obj2
|
||||
|
||||
Reference in New Issue
Block a user