1999-09-01 20:52:43 -04:00
|
|
|
# $OpenLDAP$
|
2000-05-12 22:25:54 -04:00
|
|
|
## Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved.
|
1998-10-24 21:41:42 -04:00
|
|
|
## COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
|
|
|
|
##
|
|
|
|
|
## tests Makefile.in for OpenLDAP
|
1999-02-22 06:28:01 -05:00
|
|
|
SUBDIRS= progs
|
1999-02-15 05:49:20 -05:00
|
|
|
|
1999-02-22 06:28:01 -05:00
|
|
|
BUILD_BDB2 = @BUILD_BDB2@
|
1999-02-15 05:49:20 -05:00
|
|
|
|
1999-04-10 00:42:33 -04:00
|
|
|
test: tests
|
|
|
|
|
tests: bdb2 ldbm
|
|
|
|
|
|
|
|
|
|
bdb2: test-bdb2
|
1999-02-22 06:28:01 -05:00
|
|
|
test-bdb2: FORCE
|
1999-03-22 02:38:27 -05:00
|
|
|
@-$(LN_S) $(srcdir)/data .
|
1999-02-08 15:08:25 -05:00
|
|
|
@if test "$(BUILD_BDB2)" = "yes" ; then \
|
|
|
|
|
echo "Initiating LDAP tests..." ; \
|
1999-04-05 21:00:31 -04:00
|
|
|
$(MKDIR) test-db test-repl || true; \
|
1999-02-08 15:08:25 -05:00
|
|
|
$(srcdir)/scripts/all $(srcdir) bdb2 ; \
|
1999-02-08 06:42:14 -05:00
|
|
|
else \
|
1999-02-08 15:08:25 -05:00
|
|
|
echo "run configure with --enable-bdb2" ; \
|
1999-02-08 06:42:14 -05:00
|
|
|
fi
|
1998-10-24 21:41:42 -04:00
|
|
|
|
1999-04-10 00:42:33 -04:00
|
|
|
ldbm: test-ldbm
|
1999-02-22 06:28:01 -05:00
|
|
|
test-ldbm: FORCE
|
1999-01-09 21:25:41 -05:00
|
|
|
@-$(LN_S) $(srcdir)/data .
|
1999-04-05 21:00:31 -04:00
|
|
|
@echo "Initiating LDAP tests..."
|
|
|
|
|
@-$(MKDIR) test-db test-repl || true
|
|
|
|
|
@$(srcdir)/scripts/all $(srcdir) ldbm
|
1998-10-24 21:41:42 -04:00
|
|
|
|
1999-04-29 02:50:00 -04:00
|
|
|
passwd: test-passwd
|
|
|
|
|
test-passwd: FORCE
|
|
|
|
|
@-$(LN_S) $(srcdir)/data .
|
|
|
|
|
@echo "Initiating LDAP tests..."
|
|
|
|
|
@-$(MKDIR) test-db test-repl || true
|
|
|
|
|
@$(srcdir)/scripts/passwd-search $(srcdir) passwd
|
|
|
|
|
|
1999-05-11 23:29:06 -04:00
|
|
|
test-nis-schema: test-nis-schema-ldbm
|
|
|
|
|
test-nis-schema-ldbm:
|
|
|
|
|
@-$(LN_S) $(srcdir)/data .
|
|
|
|
|
@echo "Initiating LDAP server with NIS schema & ldbm backend..."; \
|
|
|
|
|
$(MKDIR) test-db test-repl ; \
|
|
|
|
|
$(srcdir)/scripts/startup_nis_ldap_server.sh $(srcdir) ldbm
|
|
|
|
|
|
|
|
|
|
test-nis-schema-bdb2:
|
|
|
|
|
@-$(LN_S) $(srcdir)/data .
|
|
|
|
|
@echo "Initiating LDAP server with NIS schema & DB2 backend..."; \
|
|
|
|
|
@if test "$(BUILD_BDB2)" = "yes" ; then \
|
|
|
|
|
echo "Initiating LDAP tests..." ; \
|
|
|
|
|
$(MKDIR) test-db test-repl ; \
|
|
|
|
|
$(srcdir)/scripts/startup_nis_ldap_server.sh $(srcdir) bdb2 ; \
|
|
|
|
|
else \
|
|
|
|
|
echo "run configure with --enable-bdb2" ; \
|
|
|
|
|
fi
|
|
|
|
|
|
1998-10-24 21:41:42 -04:00
|
|
|
clean-local: FORCE
|
1999-08-19 14:48:17 -04:00
|
|
|
-$(RM) test-db/[!C]* test-repl/[!C]* *leak *gmon *core
|
1998-10-24 21:41:42 -04:00
|
|
|
|
1998-11-22 01:24:59 -05:00
|
|
|
veryclean-local: FORCE
|
1999-01-14 01:33:09 -05:00
|
|
|
@-$(RM) data
|
1998-11-22 01:24:59 -05:00
|
|
|
$(RM) -r test-db test-repl
|
1998-10-24 21:41:42 -04:00
|
|
|
|