summaryrefslogtreecommitdiffstats
path: root/windows
diff options
context:
space:
mode:
authorMuQun Yang <ymuqun@hdfgroup.org>2006-09-12 00:41:11 (GMT)
committerMuQun Yang <ymuqun@hdfgroup.org>2006-09-12 00:41:11 (GMT)
commit314b3f597b0656820598ab89295af96fea24fd63 (patch)
tree772b9210778f667763be0903187f38a785395617 /windows
parent298dbe539616ee11eaae3568c9fb1982027636f9 (diff)
downloadhdf5-314b3f597b0656820598ab89295af96fea24fd63.zip
hdf5-314b3f597b0656820598ab89295af96fea24fd63.tar.gz
hdf5-314b3f597b0656820598ab89295af96fea24fd63.tar.bz2
[svn-r12660] More revision for the h5repack batch file for with and without gzip/szlib compression filters
Diffstat (limited to 'windows')
-rwxr-xr-xwindows/tools/repacktest.BAT39
1 files changed, 20 insertions, 19 deletions
diff --git a/windows/tools/repacktest.BAT b/windows/tools/repacktest.BAT
index d3b58de..c6e53c2 100755
--- a/windows/tools/repacktest.BAT
+++ b/windows/tools/repacktest.BAT
@@ -277,10 +277,11 @@ set flag=-i %test_szip% -o %output_szip%
:: The following checks whether szip library is available,
:: If not, skip the test.
::-----------
-if "%HDF5_EXT_SZIP%"=="" goto SKIP_SZIP_COPY
-call %tooltest% %test_szip% %nodiff%
-: SKIP_SZIP_COPY
-call %tooltest% %test_szip% %nodiff% skip
+if "%HDF5_EXT_SZIP%"=="" (
+ call %tooltest% %test_szip% %nodiff% skip
+) else (
+ call %tooltest% %test_szip% %nodiff%
+)
::------------
::szip remove
@@ -291,11 +292,11 @@ set flag=-i %test_szip% -o %output_szip% -f dset_szip:NONE
:: The following checks whether szip library is available,
:: If not, skip the test.
::-----------
-if "%HDF5_EXT_SZIP%"=="" goto SKIP_SZIP_REMOVE
-call %tooltest% %test_szip% %nodiff%
-
-: SKIP_SZIP_REMOVE
-call %tooltest% %test_szip% %nodiff% skip
+if "%HDF5_EXT_SZIP%"=="" (
+ call %tooltest% %test_szip% %nodiff% skip
+) else (
+ call %tooltest% %test_szip% %nodiff%
+)
::--------------
:: deflate copy
@@ -306,11 +307,11 @@ set flag=-i %test_deflate% -o %output_deflate%
:: The following checks whether zlib library is available,
:: If not, skip the test.
::-----------
-if "%HDF5_EXT_ZLIB%"=="" goto SKIP_ZLIB_COPY
-call %tooltest% %test_deflate% %nodiff%
-
-: SKIP_ZLIB_COPY
-call %tooltest% %test_deflate% %nodiff% skip
+if "%HDF5_EXT_ZLIB%"=="" (
+ call %tooltest% %test_deflate% %nodiff% skip
+) else (
+ call %tooltest% %test_deflate% %nodiff% skip
+)
::---------------
:: deflate remove
@@ -321,11 +322,11 @@ set flag=-i %test_deflate% -o %output_deflate% -f dset_deflate:NONE
:: The following checks whether zlib library is available,
:: If not, skip the test.
::-----------
-if "%HDF5_EXT_ZLIB%"=="" goto SKIP_ZLIB_REMOVE
-call %tooltest% %test_deflate% %nodiff%
-
-: SKIP_ZLIB_REMOVE
-call %tooltest% %test_deflate% %nodiff% skip
+if "%HDF5_EXT_ZLIB%"=="" (
+ call %tooltest% %test_deflate% %nodiff% skip
+) else (
+ call %tooltest% %test_deflate% %nodiff%
+)
::--------------