diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2016-10-19 17:10:45 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2016-10-19 17:10:45 (GMT) |
commit | 8e0674691a820dd0df80d5408ceb017adefa86da (patch) | |
tree | f87308be55f6d50c08b66feb7a042f06c7b4b1df /tools/h5repack | |
parent | a8883cf07b2dea4d3cbcc41734fbc7cc10c730fb (diff) | |
download | hdf5-8e0674691a820dd0df80d5408ceb017adefa86da.zip hdf5-8e0674691a820dd0df80d5408ceb017adefa86da.tar.gz hdf5-8e0674691a820dd0df80d5408ceb017adefa86da.tar.bz2 |
Add new testlib to copy
Diffstat (limited to 'tools/h5repack')
-rw-r--r-- | tools/h5repack/h5repack_plugin.sh.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tools/h5repack/h5repack_plugin.sh.in b/tools/h5repack/h5repack_plugin.sh.in index 9d340ad..c8d5bf7 100644 --- a/tools/h5repack/h5repack_plugin.sh.in +++ b/tools/h5repack/h5repack_plugin.sh.in @@ -34,6 +34,7 @@ exit_code=$EXIT_SUCCESS TEST_NAME=ud_plugin FROM_DIR=`pwd`/.libs PLUGIN_LIB="$FROM_DIR/libdynlibadd.*" +PLUGIN_LIB2="$FROM_DIR/libdynlibvers.*" PLUGIN_LIBDIR=testdir3 RM='rm -rf' @@ -92,6 +93,11 @@ if [ $? != 0 ]; then echo "Failed to copy plugin library ($PLUGIN_LIB) for test." exit $EXIT_FAILURE fi +$CP $PLUGIN_LIB2 $PLUGIN_LIBDIR +if [ $? != 0 ]; then + echo "Failed to copy plugin library ($PLUGIN_LIB2) for test." + exit $EXIT_FAILURE +fi # setup plugin path ENVCMD="env HDF5_PLUGIN_PATH=../${PLUGIN_LIBDIR}" |