Skip to content
Snippets Groups Projects
Commit f81e1de6 authored by Quanah Gibson-Mount's avatar Quanah Gibson-Mount
Browse files

ITS#4336 - Fix regression test to be valid

parent 0e6f39ce
No related branches found
No related tags found
No related merge requests found
...@@ -16,15 +16,20 @@ ...@@ -16,15 +16,20 @@
echo "running defines.sh" echo "running defines.sh"
. $SRCDIR/scripts/defines.sh . $SRCDIR/scripts/defines.sh
if test $BACKLDAP != "ldapno" ; then if test $BACKLDAP = "ldapno" ; then
echo "LDAP backend not available, test skipped" echo "LDAP backend not available, test skipped"
exit 0 exit 0
fi fi
if test $RETCODE = retcodeno; then if test $RETCODE = retcodeno; then
echo "Retcode overlay not available, test skipped" echo "Retcode overlay not available, test skipped"
exit 0 exit 0
fi fi
if test "$BACKEND" = "ldap"; then
echo "LDAP backend not valid, test skipped"
exit 0
fi
mkdir -p $TESTDIR $DBDIR1 mkdir -p $TESTDIR $DBDIR1
......
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