diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2004-06-09 13:47:20 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2004-06-09 13:47:20 (GMT) |
commit | e81fa063c3eb7ff830fec914a67df5aceb66f789 (patch) | |
tree | e92d147b151bec3c57fe6def9ce3bd0ce44b6a0a /tools | |
parent | 67a1ff05db79ca0e7cd44de85997b128a158e229 (diff) | |
download | hdf5-e81fa063c3eb7ff830fec914a67df5aceb66f789.zip hdf5-e81fa063c3eb7ff830fec914a67df5aceb66f789.tar.gz hdf5-e81fa063c3eb7ff830fec914a67df5aceb66f789.tar.bz2 |
[svn-r8627] Purpose:
Update shell scripts
Description:
Switch to generating the testh5dump.sh script at configure time, so we can
determine which filters are available to test.
Platforms tested:
FreeBSD 4.9 (sleipnir)
too small to require h5committest
Diffstat (limited to 'tools')
-rw-r--r--[-rwxr-xr-x] | tools/h5dump/testh5dump.sh.in (renamed from tools/h5dump/testh5dump.sh) | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tools/h5dump/testh5dump.sh b/tools/h5dump/testh5dump.sh.in index fc63188..ee45788 100755..100644 --- a/tools/h5dump/testh5dump.sh +++ b/tools/h5dump/testh5dump.sh.in @@ -14,6 +14,12 @@ # # Tests for the h5dump tool +# Determine which filters are available +USE_FILTER_SZIP="@USE_FILTER_SZIP@" +USE_FILTER_DEFLATE="@USE_FILTER_DEFLATE@" +USE_FILTER_SHUFFLE="@USE_FILTER_SHUFFLE@" +USE_FILTER_FLETCHER32="@USE_FILTER_FLETCHER32@" + DUMPER=h5dump # The tool name DUMPER_BIN=`pwd`/$DUMPER # The path of the tool binary @@ -208,3 +214,6 @@ if test $nerrors -eq 0 ; then fi exit $nerrors + + + |