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

ITS#4326 - Fix regression test so it operates correctly

parent f81e1de6
No related branches found
No related tags found
No related merge requests found
......@@ -16,10 +16,15 @@
echo "running defines.sh"
. $SRCDIR/scripts/defines.sh
if test $BACKLDAP != "ldapno" ; then
if test $BACKLDAP = "ldapno" ; then
echo "LDAP backend not available, test skipped"
exit 0
fi
fi
if test $BACKEND = "ldap" ; then
echo "LDAP backend not valid, test skipped"
exit 0
fi
mkdir -p $TESTDIR $DBDIR1 $DBDIR2
......
......@@ -24,8 +24,8 @@ include @DATADIR@/test.schema
pidfile @TESTDIR@/slapd.2.pid
argsfile @TESTDIR@/slapd.2.args
#mod#modulepath ../servers/slapd/back-ldap/
#mod#moduleload back_ldap.la
#ldapmod#modulepath ../servers/slapd/back-ldap/
#ldapmod#moduleload back_ldap.la
#monitormod#modulepath ../servers/slapd/back-monitor/
#monitormod#moduleload back_monitor.la
......
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