diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2012-02-20 17:41:00 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2012-02-20 17:41:00 (GMT) |
commit | 1d0c7360efe514761da8f424a75a80a1c9f1dcf8 (patch) | |
tree | 2c76b2e57f285fe82f5aaa191f8bd2c34075ca2b /tools/h5dump | |
parent | e808e596aba7a400a7ce9c4fba2a03a82da43d59 (diff) | |
download | hdf5-1d0c7360efe514761da8f424a75a80a1c9f1dcf8.zip hdf5-1d0c7360efe514761da8f424a75a80a1c9f1dcf8.tar.gz hdf5-1d0c7360efe514761da8f424a75a80a1c9f1dcf8.tar.bz2 |
[svn-r21963] Fixed issue with compression value not printing - format parameter was wrong, needed to be long long.
Enabled compression tests
Tested: 32-bit windows
Diffstat (limited to 'tools/h5dump')
-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 |