Skip to content

Commit

Permalink
Fix mirror VFD script (HDFGroup#4170)
Browse files Browse the repository at this point in the history
This had directory problems when running locally.
  • Loading branch information
derobins authored and lrknox committed Mar 21, 2024
1 parent 5005196 commit 69bf2a4
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions test/test_mirror.sh.in
Original file line number Diff line number Diff line change
Expand Up @@ -41,14 +41,14 @@ while [ $# -gt 0 ]; do
esac
done



RUN_DIR=mirror_vfd_test
MIRROR_UTILS=../utils/mirror_vfd # TODO: presupposes from test/

if [[ ! -d $RUN_DIR ]] ; then
mkdir $RUN_DIR
# Start clean
if test -d $RUN_DIR ; then
rm -rf $RUN_DIR
fi
mkdir $RUN_DIR

# Copy program files into dedicated test directory
for FILE in $MIRROR_UTILS/mirror_* ; do
Expand All @@ -65,7 +65,7 @@ cp mirror_vfd $RUN_DIR
if [ -f $MIRROR_UTILS/.libs/mirror_server ] ; then
RUN_LIBS=$RUN_DIR/.libs
# Delete previous .libs directory, to remove any generated libtool files
if [[ -d $RUN_LIBS ]] ; then
if test -d $RUN_LIBS ; then
rm -rf $RUN_LIBS
fi
mkdir $RUN_LIBS
Expand Down

0 comments on commit 69bf2a4

Please sign in to comment.