summaryrefslogtreecommitdiffstats
path: root/windows/tools/testhdf5tools.BAT
diff options
context:
space:
mode:
authorMuQun Yang <ymuqun@hdfgroup.org>2006-09-27 22:20:04 (GMT)
committerMuQun Yang <ymuqun@hdfgroup.org>2006-09-27 22:20:04 (GMT)
commit3289dc5a18474cfe39211cb006d01a84a4f0a27c (patch)
tree58db18e31838065adecfe8b1a1cc0c36a3a80c1a /windows/tools/testhdf5tools.BAT
parent46e41daa62bd3ea5a11193b75f032ac49d18bed3 (diff)
downloadhdf5-3289dc5a18474cfe39211cb006d01a84a4f0a27c.zip
hdf5-3289dc5a18474cfe39211cb006d01a84a4f0a27c.tar.gz
hdf5-3289dc5a18474cfe39211cb006d01a84a4f0a27c.tar.bz2
[svn-r12691] Fix two minor bugs at batch files that include testing h5jam/h5unjam.
MSVS 6.0 C/C++
Diffstat (limited to 'windows/tools/testhdf5tools.BAT')
-rwxr-xr-xwindows/tools/testhdf5tools.BAT7
1 files changed, 4 insertions, 3 deletions
diff --git a/windows/tools/testhdf5tools.BAT b/windows/tools/testhdf5tools.BAT
index 4356216..962b069 100755
--- a/windows/tools/testhdf5tools.BAT
+++ b/windows/tools/testhdf5tools.BAT
@@ -47,8 +47,9 @@ call repacktest %1 %2
@more repacktest%2_%1.txt >> toolstest_%1%2.txt
@del repacktest%2_%1.txt
set p2=%2
-if %2==dll (
+if "%2"=="dll" (
echo "DLL version is not available for h5jam or h5unjam, SKIP the test"
-) else (
-call jamtest %1 %2
+) else (
+ call jamtest %1 %2
)
+