mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-19 13:23:44 -05:00
ITS#8734 - Fix testsuite for asyncmeta
Some portions of the test suite did not correctly handle asyncmeta, fix those issues. Tests execute and pass after this change
This commit is contained in:
parent
262a074303
commit
70b57c5667
3 changed files with 4 additions and 3 deletions
|
|
@ -24,8 +24,8 @@ argsfile @TESTDIR@/slapd.m.args
|
|||
|
||||
#ldapmod#modulepath ../servers/slapd/back-ldap/
|
||||
#ldapmod#moduleload back_ldap.la
|
||||
#metamod#modulepath ../servers/slapd/back-meta/
|
||||
#metamod#moduleload back_meta.la
|
||||
#asyncmetamod#modulepath ../servers/slapd/back-asyncmeta/
|
||||
#asyncmetamod#moduleload back_asyncmeta.la
|
||||
#monitormod#modulepath ../servers/slapd/back-monitor/
|
||||
#monitormod#moduleload back_monitor.la
|
||||
|
||||
|
|
|
|||
|
|
@ -69,7 +69,7 @@ fi
|
|||
if test "${AC_meta}" = "metamod" && test "${AC_LIBS_DYNAMIC}" = "static" ; then
|
||||
AC_meta="metano"
|
||||
fi
|
||||
if test "${AC_asyncmeta}" = "metamod" && test "${AC_LIBS_DYNAMIC}" = "static" ; then
|
||||
if test "${AC_asyncmeta}" = "asyncmetamod" && test "${AC_LIBS_DYNAMIC}" = "static" ; then
|
||||
AC_meta="asyncmetano"
|
||||
fi
|
||||
export AC_ldap AC_mdb AC_meta AC_asyncmeta AC_monitor AC_null AC_relay AC_sql \
|
||||
|
|
|
|||
|
|
@ -40,6 +40,7 @@ sed -e "s/@BACKEND@/${BACKEND}/" \
|
|||
-e "s/^#${BACKENDTYPE}#//" \
|
||||
-e "s/^#${AC_ldap}#//" \
|
||||
-e "s/^#${AC_meta}#//" \
|
||||
-e "s/^#${AC_asyncmeta}#//" \
|
||||
-e "s/^#${AC_relay}#//" \
|
||||
-e "s/^#${AC_sql}#//" \
|
||||
-e "s/^#${RDBMS}#//" \
|
||||
|
|
|
|||
Loading…
Reference in a new issue