diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2009-02-24 17:59:14 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2009-02-24 17:59:14 (GMT) |
commit | 33a65add7db18a4efd2b34ac8261c2065820ebf9 (patch) | |
tree | 782730a42955d1a247fec9356c5d05f83cce4903 /windows/tools | |
parent | e63f0baf7e3a8e36c19f52d7692b483b7440e5eb (diff) | |
download | hdf5-33a65add7db18a4efd2b34ac8261c2065820ebf9.zip hdf5-33a65add7db18a4efd2b34ac8261c2065820ebf9.tar.gz hdf5-33a65add7db18a4efd2b34ac8261c2065820ebf9.tar.bz2 |
[svn-r16514] Description:
Merge r16440:16500 from trunk into revise_chunks branch.
Tested on:
FreeBSD/32 6.3 (duty) in debug mode
FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (jam) w/PGI compilers, w/C++ & FORTRAN, w/threadsafe,
in debug mode
Linux/64-amd64 2.6 (smirom) w/Intel compilers w/default API=1.6.x,
w/C++ & FORTRAN, in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, in production mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in production mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in production mode
Mac OS X/32 10.5.6 (amazon) in debug mode
Mac OS X/32 10.5.6 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
Diffstat (limited to 'windows/tools')
-rw-r--r-- | windows/tools/h5diff/testh5diff.bat | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/windows/tools/h5diff/testh5diff.bat b/windows/tools/h5diff/testh5diff.bat index 350e7c2..007475a 100644 --- a/windows/tools/h5diff/testh5diff.bat +++ b/windows/tools/h5diff/testh5diff.bat @@ -62,6 +62,8 @@ set /a nerrors=0 set verbose=yes
rem default to run h5diff tests
set pmode=
+rem following not needed for windows see #10 ADB 1/22/2009
+rem mydomainname=`domainname 2>/dev/null`
if not exist .\testfiles mkdir .\testfiles
@@ -482,8 +484,16 @@ rem ############################################################################ call :tooltest h5diff_90.txt -v %file2% %file2%
rem 10. read by hyperslab, print indexes
+ rem ##############################################################################
+ rem Not tested on windows as this has not been a problem - ADB 1/22/2009
+ rem if test -n "$pmode" -a "$mydomainname" = hdfgroup.uiuc.edu; then
+ rem # skip this test which sometimes hangs in some THG machines
+ rem SKIP -v $SRCFILE9 $SRCFILE10
+ rem else
+ rem ##############################################################################
call :testing %h5diff% -v %srcfile9% %srcfile10%
call :tooltest h5diff_100.txt -v %file9% %file10%
+ rem fi
rem 11. floating point comparison
rem Not tested on Windows due to difference in formatting of scientific
@@ -496,6 +506,34 @@ rem ############################################################################ rem call :tooltest h5diff_102.txt -v %file1% %file1% g1/fp1 g1/fp2
call :results -SKIP-
+ rem New option added #1368(E1) - ADB 2/5/2009
+ rem not compable -c flag
+ call :testing %h5diff% %srcfile2% %srcfile2% g2/dset1 g2/dset2
+ call :tooltest h5diff_200.txt %file2% %file2% g2/dset1 g2/dset2
+
+ call :testing %h5diff% -c %srcfile2% %srcfile2% g2/dset1 g2/dset2
+ call :tooltest h5diff_201.txt -c %file2% %file2% g2/dset1 g2/dset2
+
+ call :testing %h5diff% -c %srcfile2% %srcfile2% g2/dset2 g2/dset3
+ call :tooltest h5diff_202.txt -c %file2% %file2% g2/dset2 g2/dset3
+
+ call :testing %h5diff% -c %srcfile2% %srcfile2% g2/dset3 g2/dset4
+ call :tooltest h5diff_203.txt -c %file2% %file2% g2/dset3 g2/dset4
+
+ call :testing %h5diff% -c %srcfile2% %srcfile2% g2/dset4 g2/dset5
+ call :tooltest h5diff_204.txt -c %file2% %file2% g2/dset4 g2/dset5
+
+ call :testing %h5diff% -c %srcfile2% %srcfile2% g2/dset5 g2/dset6
+ call :tooltest h5diff_205.txt -c %file2% %file2% g2/dset5 g2/dset6
+
+ rem New option added rev #16461 - ADB 2/11/2009
+ rem # not comparable in compound
+ call :testing %h5diff% -c %srcfile2% %srcfile2% g2/dset7 g2/dset8
+ call :tooltest h5diff_206.txt -c %file2% %file2% g2/dset7 g2/dset8
+
+ call :testing %h5diff% -c %srcfile2% %srcfile2% g2/dset8 g2/dset9
+ call :tooltest h5diff_207.txt -c %file2% %file2% g2/dset8 g2/dset9
+
rem ##############################################################################
rem # END
rem ##############################################################################
|