remove more LDBM cruft

This commit is contained in:
Kurt Zeilenga 2006-04-11 18:48:26 +00:00
parent 2e2d036490
commit 02408c930d
5 changed files with 4 additions and 11 deletions

View File

@ -4,7 +4,6 @@ verify basic functionality of the LDAP libraries, slapd, and slurpd.
To run all of the tests, type "make test". To run all of the tests, type "make test".
To run BDB tests, type "make bdb". To run BDB tests, type "make bdb".
To run HDB tests, type "make hdb". To run HDB tests, type "make hdb".
To run LDBM tests, type "make ldbm".
To run SQL tests, define SLAPD_USE_SQL=<rdbms> and type To run SQL tests, define SLAPD_USE_SQL=<rdbms> and type
"make sql"; define SLAPD_USE_SQLWRITE=yes "make sql"; define SLAPD_USE_SQLWRITE=yes
to enable write tests as well. to enable write tests as well.

View File

@ -27,7 +27,6 @@ export SRCDIR TOPSRCDIR LN_S EGREP_CMD
AC_bdb=@BUILD_BDB@ AC_bdb=@BUILD_BDB@
AC_hdb=@BUILD_HDB@ AC_hdb=@BUILD_HDB@
AC_ldap=ldap@BUILD_LDAP@ AC_ldap=ldap@BUILD_LDAP@
AC_ldbm=@BUILD_LDBM@
AC_meta=meta@BUILD_META@ AC_meta=meta@BUILD_META@
AC_monitor=@BUILD_MONITOR@ AC_monitor=@BUILD_MONITOR@
AC_relay=relay@BUILD_RELAY@ AC_relay=relay@BUILD_RELAY@
@ -54,7 +53,7 @@ AC_WITH_MODULES_ENABLED=@WITH_MODULES_ENABLED@
AC_ACI_ENABLED=aci@WITH_ACI_ENABLED@ AC_ACI_ENABLED=aci@WITH_ACI_ENABLED@
AC_THREADS=threads@BUILD_THREAD@ AC_THREADS=threads@BUILD_THREAD@
export AC_bdb AC_hdb AC_ldap AC_ldbm AC_meta AC_monitor AC_relay AC_sql \ export AC_bdb AC_hdb AC_ldap AC_meta AC_monitor AC_relay AC_sql \
AC_accesslog AC_dynlist AC_pcache AC_ppolicy AC_refint AC_retcode \ AC_accesslog AC_dynlist AC_pcache AC_ppolicy AC_refint AC_retcode \
AC_rwm AC_unique AC_syncprov AC_translucent AC_valsort \ AC_rwm AC_unique AC_syncprov AC_translucent AC_valsort \
AC_dds \ AC_dds \
@ -113,7 +112,7 @@ while test $# -gt 0 ; do
done done
if test -z "$BACKEND" ; then if test -z "$BACKEND" ; then
for b in bdb ldbm hdb ; do for b in bdb hdb ; do
if eval "test \"\$AC_$b\" != no" ; then if eval "test \"\$AC_$b\" != no" ; then
BACKEND=$b BACKEND=$b
break break

View File

@ -14,7 +14,7 @@
## <http://www.OpenLDAP.org/license.html>. ## <http://www.OpenLDAP.org/license.html>.
case "$BACKEND" in case "$BACKEND" in
bdb|hdb|ldbm) bdb|hdb)
;; ;;
*) *)
echo "Test does not support $BACKEND backend" echo "Test does not support $BACKEND backend"

View File

@ -25,11 +25,6 @@ if test $TRANSLUCENT = translucentno ; then
exit 0 exit 0
fi fi
if test $BACKEND = ldbm ; then
echo "Translucent Proxy overlay not qualified for use with LDBM, test skipped"
exit 0
fi
if test $AC_ldap = ldapno ; then if test $AC_ldap = ldapno ; then
echo "Translucent Proxy overlay requires back-ldap backend, test skipped" echo "Translucent Proxy overlay requires back-ldap backend, test skipped"
exit 0 exit 0

View File

@ -14,7 +14,7 @@
## <http://www.OpenLDAP.org/license.html>. ## <http://www.OpenLDAP.org/license.html>.
case "$BACKEND" in case "$BACKEND" in
bdb|hdb|ldbm) bdb|hdb)
;; ;;
*) *)
echo "Test does not support $BACKEND backend" echo "Test does not support $BACKEND backend"