Skip to content
Snippets Groups Projects
Commit e43eae8d authored by Pierangelo Masarati's avatar Pierangelo Masarati
Browse files

fix ITS#4297 (there shouldn't be any more)

parent 83929308
No related branches found
No related tags found
No related merge requests found
......@@ -39,20 +39,28 @@ if test "x$RELAYS" = "x" ; then
if test $BACKLDAP = ldapno ; then
echo "ldap backend not available, test skipped"
else
if test "x$RELAYS" != "x" ; then
RELAYS="${RELAYS} "
fi
RELAYS="${RELAYS}ldap"
if test $THREADS = "threadsno" ; then
echo "Need threads support, test skipped"
else
if test "x$RELAYS" != "x" ; then
RELAYS="${RELAYS} "
fi
RELAYS="${RELAYS}ldap"
fi
fi
# back-meta
if test $BACKMETA = metano ; then
echo "meta backend not available, test skipped"
else
if test "x$RELAYS" != "x" ; then
RELAYS="${RELAYS} "
if test $THREADS = "threadsno" ; then
echo "Need threads support, test skipped"
else
if test "x$RELAYS" != "x" ; then
RELAYS="${RELAYS} "
fi
RELAYS="${RELAYS}meta"
fi
RELAYS="${RELAYS}meta"
fi
fi
......@@ -67,19 +75,31 @@ echo ""
first=1
for RELAY in $RELAYS ; do
if test $first = 1 ; then
first=0
else
echo ">>>>> waiting 10 seconds for things to exit"
sleep 10
echo ""
rm -rf $TESTDIR
RUNIT=yes
if test $THREADS = "threadsno" ; then
case $RELAY in
ldap|meta)
echo "Need threads support, test skipped"
RUNIT=no
;;
esac
fi
if test $RUNIT = yes ; then
if test $first = 1 ; then
first=0
else
echo ">>>>> waiting 10 seconds for things to exit"
sleep 10
echo ""
rm -rf $TESTDIR
fi
mkdir -p $TESTDIR $DBDIR1
. $SRCDIR/scripts/relay
mkdir -p $TESTDIR $DBDIR1
. $SRCDIR/scripts/relay
fi
done
echo ">>>>> Test succeeded"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment