diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2013-03-22 21:39:53 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2013-03-22 21:39:53 (GMT) |
commit | 8ffd55478e11904f193b4a98477b3bcb452b93ac (patch) | |
tree | 5843b13e826ae4c9b3f471dfa4536d7882b4d8ba /tools/h5dump/testh5dump.sh.in | |
parent | f0e328cc04ae9cf6032e740cf223fcfdd83a5f6d (diff) | |
download | hdf5-8ffd55478e11904f193b4a98477b3bcb452b93ac.zip hdf5-8ffd55478e11904f193b4a98477b3bcb452b93ac.tar.gz hdf5-8ffd55478e11904f193b4a98477b3bcb452b93ac.tar.bz2 |
[svn-r23432] I added a new macro HDF5_PLUGIN_PRELOAD to skip plugin loading during data reading.
Tested on koala and jam.
Diffstat (limited to 'tools/h5dump/testh5dump.sh.in')
-rw-r--r-- | tools/h5dump/testh5dump.sh.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/h5dump/testh5dump.sh.in b/tools/h5dump/testh5dump.sh.in index 238eee9..cdd292a 100644 --- a/tools/h5dump/testh5dump.sh.in +++ b/tools/h5dump/testh5dump.sh.in @@ -38,6 +38,9 @@ DIRNAME='dirname' LS='ls' AWK='awk' +# Skip plugin module to test missing filter +ENVCMD="env HDF5_PLUGIN_PRELOAD=::" + nerrors=0 verbose=yes @@ -675,7 +678,7 @@ TOOLTEST4() { TESTING $DUMPER $@ ( cd $TESTDIR - $RUNSERIAL $DUMPER_BIN "$@" + $ENVCMD $RUNSERIAL $DUMPER_BIN "$@" ) >$actual 2>$actual_err # save actual and actual_err in case they are needed later. |