Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix mirror VFD script #4170

Merged
merged 1 commit into from
Mar 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading