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 /tools/h5diff/testh5diff.sh | |
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 'tools/h5diff/testh5diff.sh')
-rwxr-xr-x | tools/h5diff/testh5diff.sh | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/tools/h5diff/testh5diff.sh b/tools/h5diff/testh5diff.sh index fcfcc14..8d38171 100755 --- a/tools/h5diff/testh5diff.sh +++ b/tools/h5diff/testh5diff.sh @@ -54,7 +54,7 @@ if test -z "$srcdir"; then fi # source dirs -SRC_TOOLS="$srcdir/../" +SRC_TOOLS="$srcdir/.." SRC_TOOLS_TESTFILES="$SRC_TOOLS/testfiles" # testfiles source dirs for tools SRC_H5LS_TESTFILES="$SRC_TOOLS_TESTFILES" @@ -254,6 +254,8 @@ $SRC_H5DIFF_TESTFILES/h5diff_626.txt $SRC_H5DIFF_TESTFILES/h5diff_627.txt $SRC_H5DIFF_TESTFILES/h5diff_628.txt $SRC_H5DIFF_TESTFILES/h5diff_629.txt +$SRC_H5DIFF_TESTFILES/h5diff_630.txt +$SRC_H5DIFF_TESTFILES/h5diff_631.txt $SRC_H5DIFF_TESTFILES/h5diff_640.txt $SRC_H5DIFF_TESTFILES/h5diff_641.txt $SRC_H5DIFF_TESTFILES/h5diff_642.txt @@ -294,8 +296,10 @@ COPY_TESTFILES_TO_TESTDIR() if [ -a $tstfile ]; then $CP -f $tstfile $TESTDIR else - echo "Error: FAILED to copy $tstfile" + echo "Error: FAILED to copy $tstfile ." echo " $tstfile doesn't exist!" + + # Comment out this to CREATE expected file exit $EXIT_FAILURE fi fi @@ -629,10 +633,6 @@ TOOLTEST h5diff_609.txt -d 200 h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/dse # 6.10: number smaller than smallest difference TOOLTEST h5diff_610.txt -d 1 h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/dset4 -# 6.11: test (NaN == NaN) must be true based on our documentation -- XCAO -TOOLTEST h5diff_609.txt -d "0.0001" h5diff_basic1.h5 h5diff_basic1.h5 g1/fp18 g1/fp18_COPY -TOOLTEST h5diff_609.txt --use-system-epsilon h5diff_basic1.h5 h5diff_basic1.h5 g1/fp18 g1/fp18_COPY - # ############################################################################## # # -p @@ -697,6 +697,13 @@ TOOLTEST h5diff_628.txt -n 1 h5diff_basic1.h5 h5diff_basic2.h5 g1/dset3 g1/dset4 # 6.29 non valid files #TOOLTEST h5diff_629.txt file1.h6 file2.h6 +# ############################################################################## +# # NaN +# ############################################################################## +# 6.30: test (NaN == NaN) must be true based on our documentation -- XCAO +TOOLTEST h5diff_630.txt -v -d "0.0001" h5diff_basic1.h5 h5diff_basic1.h5 g1/fp18 g1/fp18_COPY +TOOLTEST h5diff_631.txt -v --use-system-epsilon h5diff_basic1.h5 h5diff_basic1.h5 g1/fp18 g1/fp18_COPY + # ############################################################################## # 7. attributes |