summaryrefslogtreecommitdiffstats
path: root/tools/h5dump/testh5dump.sh.in
diff options
context:
space:
mode:
authorRobert E. McGrath <mcgrath@ncsa.uiuc.edu>2005-02-11 19:03:41 (GMT)
committerRobert E. McGrath <mcgrath@ncsa.uiuc.edu>2005-02-11 19:03:41 (GMT)
commit5bedb5edfe575739bca53f801d0b751e0aeb9019 (patch)
tree4e2e8f7bb9754195767c07efe996d4537e4c4e6e /tools/h5dump/testh5dump.sh.in
parent3f0a35a4eab869793f5b3882da35a2fe0b683dbd (diff)
downloadhdf5-5bedb5edfe575739bca53f801d0b751e0aeb9019.zip
hdf5-5bedb5edfe575739bca53f801d0b751e0aeb9019.tar.gz
hdf5-5bedb5edfe575739bca53f801d0b751e0aeb9019.tar.bz2
[svn-r9989] Purpose:
Feature Description: Adding support for NBIT compression to dumper Solution: Platforms tested: arabica, verbena, copper64 Misc. update:
Diffstat (limited to 'tools/h5dump/testh5dump.sh.in')
-rw-r--r--tools/h5dump/testh5dump.sh.in8
1 files changed, 8 insertions, 0 deletions
diff --git a/tools/h5dump/testh5dump.sh.in b/tools/h5dump/testh5dump.sh.in
index 6efc47c..215a124 100644
--- a/tools/h5dump/testh5dump.sh.in
+++ b/tools/h5dump/testh5dump.sh.in
@@ -19,6 +19,7 @@ USE_FILTER_SZIP="@USE_FILTER_SZIP@"
USE_FILTER_DEFLATE="@USE_FILTER_DEFLATE@"
USE_FILTER_SHUFFLE="@USE_FILTER_SHUFFLE@"
USE_FILTER_FLETCHER32="@USE_FILTER_FLETCHER32@"
+USE_FILTER_NBIT="@USE_FILTER_NBIT@"
DUMPER=h5dump # The tool name
DUMPER_BIN=`pwd`/$DUMPER # The path of the tool binary
@@ -282,6 +283,13 @@ if test $USE_FILTER_FLETCHER32 != "yes"; then
else
TOOLTEST tfletcher32.ddl $option
fi
+# nbit
+option="-H -p -d nbit tfilters.h5"
+if test $USE_FILTER_NBIT != "yes"; then
+ SKIP $option
+else
+ TOOLTEST tnbit.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" ; then