diff options
author | Jonathan Kim <jkm@hdfgroup.org> | 2011-08-16 22:40:36 (GMT) |
---|---|---|
committer | Jonathan Kim <jkm@hdfgroup.org> | 2011-08-16 22:40:36 (GMT) |
commit | 7a6f281a8b8a34e8cf4f58c2d1b36a13329cb365 (patch) | |
tree | 158e71f623819faeb27a04242065b09171acb1e7 /windows | |
parent | e703a6a2a4c6e6ee443d2e2af08fe61479789f79 (diff) | |
download | hdf5-7a6f281a8b8a34e8cf4f58c2d1b36a13329cb365.zip hdf5-7a6f281a8b8a34e8cf4f58c2d1b36a13329cb365.tar.gz hdf5-7a6f281a8b8a34e8cf4f58c2d1b36a13329cb365.tar.bz2 |
[svn-r21237] Description:
Add test cases for HDFFV-7656 - "--delta=something" considers two NaN of the same type are different.
The fix was added (r21105) before but test cases were incorrectly added and missing for cmake script.
Tested:
jam (linux32-LE), koala (linux64-LE), heiwa (linuxppc64-BE), tejeda (mac32-LE), linew (solaris-BE), cmake
Diffstat (limited to 'windows')
-rw-r--r-- | windows/tools/h5diff/testh5diff.bat | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/windows/tools/h5diff/testh5diff.bat b/windows/tools/h5diff/testh5diff.bat index 15ff563..0235c44 100644 --- a/windows/tools/h5diff/testh5diff.bat +++ b/windows/tools/h5diff/testh5diff.bat @@ -528,6 +528,16 @@ rem ############################################################################ call :testing %h5diff% file1.h6 file2.h6
call :tooltest h5diff_629.txt file1.h6 file2.h6
+ rem ######################################################################
+ rem # NaN
+ rem ######################################################################
+ rem 6.30: test (NaN == NaN) must be true based on our documentation -- XCAO
+ call :testing %h5diff% -v -d "0.0001" %srcfile1% %srcfile1% g1/fp18 g1/fp18_COPY
+ call :tooltest h5diff_630.txt -v -d "0.0001" %file1% %file1% g1/fp18 g1/fp18_COPY
+ call :testing %h5diff% -v --use-system-epsilon %srcfile1% %srcfile1% g1/fp18 g1/fp18_COPY
+ call :tooltest h5diff_631.txt -v --use-system-epsilon %file1% %file1% g1/fp18 g1/fp18_COPY
+
+
rem ########################################################################
rem 7. attributes
rem ########################################################################
|