diff options
Diffstat (limited to 'tools/h5dump/testh5dump.sh.in')
-rw-r--r-- | tools/h5dump/testh5dump.sh.in | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/tools/h5dump/testh5dump.sh.in b/tools/h5dump/testh5dump.sh.in index dcb9cbb..ee91880 100644 --- a/tools/h5dump/testh5dump.sh.in +++ b/tools/h5dump/testh5dump.sh.in @@ -885,18 +885,18 @@ TOOLTEST texceedsubblock.ddl -d 1d -k 1,3 taindices.h5 # tests for filters # SZIP option="-H -p -d szip tfilters.h5" -#if test $USE_FILTER_SZIP != "yes"; then +if test $USE_FILTER_SZIP != "yes"; then SKIP $option -#else -#TOOLTEST tszip.ddl $option -#fi +else +TOOLTEST tszip.ddl $option +fi # deflate option="-H -p -d deflate tfilters.h5" -#if test $USE_FILTER_DEFLATE != "yes"; then +if test $USE_FILTER_DEFLATE != "yes"; then SKIP $option -#else -# TOOLTEST tdeflate.ddl $option -#fi +else + TOOLTEST tdeflate.ddl $option +fi # shuffle option="-H -p -d shuffle tfilters.h5" if test $USE_FILTER_SHUFFLE != "yes"; then @@ -913,25 +913,25 @@ else fi # nbit option="-H -p -d nbit tfilters.h5" -#if test $USE_FILTER_NBIT != "yes"; then +if test $USE_FILTER_NBIT != "yes"; then SKIP $option -#else -# TOOLTEST tnbit.ddl $option -#fi +else + TOOLTEST tnbit.ddl $option +fi # scaleoffset option="-H -p -d scaleoffset tfilters.h5" -#if test $USE_FILTER_SCALEOFFSET != "yes"; then +if test $USE_FILTER_SCALEOFFSET != "yes"; then SKIP $option -#else -# TOOLTEST tscaleoffset.ddl $option -#fi +else + TOOLTEST tscaleoffset.ddl $option +fi # all option="-H -p -d all tfilters.h5" -#if test $USE_FILTER_FLETCHER32 != "yes" -o $USE_FILTER_SZIP != "yes" -o $USE_FILTER_DEFLATE != "yes" -o $USE_FILTER_SHUFFLE != "yes" -o $USE_FILTER_NBIT != "yes" -o $USE_FILTER_SCALEOFFSET != "yes"; then +if test $USE_FILTER_FLETCHER32 != "yes" -o $USE_FILTER_SZIP != "yes" -o $USE_FILTER_DEFLATE != "yes" -o $USE_FILTER_SHUFFLE != "yes" -o $USE_FILTER_NBIT != "yes" -o $USE_FILTER_SCALEOFFSET != "yes"; then SKIP $option -#else -# TOOLTEST tallfilters.ddl $option -#fi +else + TOOLTEST tallfilters.ddl $option +fi # user defined TOOLTEST tuserfilter.ddl --enable-error-stack -H -p -d myfilter tfilters.h5 |