diff options
author | Scott Wegner <swegner@hdfgroup.org> | 2008-10-27 20:39:28 (GMT) |
---|---|---|
committer | Scott Wegner <swegner@hdfgroup.org> | 2008-10-27 20:39:28 (GMT) |
commit | a2501c41bdb4f0a67e29d38a87009099ab29b9f8 (patch) | |
tree | 34d9b7e563b3a949395c92a00207f78d8ed23a1b | |
parent | f08f9340a7cfb323f3565e63b1cfe0604e02b4e5 (diff) | |
download | hdf5-a2501c41bdb4f0a67e29d38a87009099ab29b9f8.zip hdf5-a2501c41bdb4f0a67e29d38a87009099ab29b9f8.tar.gz hdf5-a2501c41bdb4f0a67e29d38a87009099ab29b9f8.tar.bz2 |
[svn-r15970] Purpose: Update Windows h5dump test script
Description:
The h5dump test script was recently updated to add the new -b syntax. This update also adds and modifies the neccessary tests for Windows.
Tested:
VS2005 on WinXP
-rw-r--r-- | windows/tools/h5dump/testh5dump.bat | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/windows/tools/h5dump/testh5dump.bat b/windows/tools/h5dump/testh5dump.bat index 7c62f65..be4d965 100644 --- a/windows/tools/h5dump/testh5dump.bat +++ b/windows/tools/h5dump/testh5dump.bat @@ -558,10 +558,16 @@ rem ############################################################################ rem directory, and using it only gets in the way of the output formatting.
rem --SJW 8/24/07
call :tooltest1 tbin1.ddl -d integer -o out1.bin -b LE tbinary.h5
- call :tooltest1 tbin2.ddl -d float -o out2.bin -b BE tbinary.h5
- rem the MEMORY test can be validated with h5import/h5diff
- call :tooltest1 tbin3.ddl -d integer -o out3.bin -b MEMORY tbinary.h5
+ rem NATIVE default. the NATIVE test can be validated with h5import/h5diff
+ call :tooltest1 tbin1.ddl -d integer -o out1.bin -b tbinary.h5
+ call :importtest out1.bin -c out3.h5import -o out1.h5
+ call :difftest tbinary.h5 out1.h5 /integer /integer
+
+ call :tooltest1 tbin2.ddl -b BE -d float -o out2.bin tbinary.h5
+
+ rem the NATIVE test can be validated with h5import/h5diff
+ call :tooltest1 tbin3.ddl -d integer -o out3.bin -b NATIVE tbinary.h5
call :importtest out3.bin -c out3.h5import -o out3.h5
call :difftest tbinary.h5 out3.h5 /integer /integer
@@ -574,6 +580,7 @@ rem ############################################################################ )
+
rem test for dataset region references
call :tooltest tdatareg.ddl tdatareg.h5
|