1999-09-02 08:52:43 +08:00
|
|
|
# $OpenLDAP$
|
2003-01-04 04:20:47 +08:00
|
|
|
## Copyright 1998-2003 The OpenLDAP Foundation, All Rights Reserved.
|
1998-10-25 09:41:42 +08:00
|
|
|
## COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
|
|
|
##
|
|
|
|
## tests Makefile.in for OpenLDAP
|
1999-02-22 19:28:01 +08:00
|
|
|
SUBDIRS= progs
|
2001-10-04 14:34:03 +08:00
|
|
|
BUILD_BDB=@BUILD_BDB@
|
2003-04-24 00:50:56 +08:00
|
|
|
BUILD_HDB=@BUILD_HDB@
|
|
|
|
BUILD_LDBM=@BUILD_LDBM@
|
2002-06-19 14:00:48 +08:00
|
|
|
BUILD_MONITOR=@BUILD_MONITOR@
|
1999-02-15 18:49:20 +08:00
|
|
|
|
1999-04-10 12:42:33 +08:00
|
|
|
test: tests
|
2003-04-24 00:50:56 +08:00
|
|
|
tests: bdb hdb ldbm
|
1999-04-10 12:42:33 +08:00
|
|
|
|
2000-09-28 12:10:35 +08:00
|
|
|
bdb: test-bdb
|
|
|
|
test-bdb: FORCE
|
|
|
|
@-$(LN_S) $(srcdir)/data .
|
|
|
|
@-$(LN_S) $(top_srcdir)/servers/slapd/schema .
|
2000-10-31 04:02:13 +08:00
|
|
|
@-$(LN_S) ../libraries/liblunicode ucdata
|
2003-04-30 11:04:18 +08:00
|
|
|
@if test "$(BUILD_BDB)" != "no"; then \
|
2000-09-28 12:10:35 +08:00
|
|
|
echo "Initiating LDAP tests for BDB..." ; \
|
|
|
|
$(MKDIR) test-db test-repl || true; \
|
2003-04-30 11:04:18 +08:00
|
|
|
$(srcdir)/scripts/all $(srcdir) bdb $(BUILD_BDB) $(BUILD_MONITOR) ; \
|
2000-09-28 12:10:35 +08:00
|
|
|
else \
|
|
|
|
echo "run configure with --enable-bdb" ; \
|
|
|
|
fi
|
|
|
|
|
2003-04-24 00:50:56 +08:00
|
|
|
hdb: test-hdb
|
|
|
|
test-hdb: FORCE
|
|
|
|
@-$(LN_S) $(srcdir)/data .
|
|
|
|
@-$(LN_S) $(top_srcdir)/servers/slapd/schema .
|
|
|
|
@-$(LN_S) ../libraries/liblunicode ucdata
|
2003-04-30 11:04:18 +08:00
|
|
|
@if test "$(BUILD_HDB)" != "no" ; then \
|
2003-04-24 00:50:56 +08:00
|
|
|
echo "Initiating LDAP tests for HDB..." ; \
|
|
|
|
$(MKDIR) test-db test-repl || true; \
|
2003-04-30 11:04:18 +08:00
|
|
|
$(srcdir)/scripts/all $(srcdir) hdb $(BUILD_HDB) $(BUILD_MONITOR) ; \
|
2003-04-24 00:50:56 +08:00
|
|
|
else \
|
|
|
|
echo "run configure with --enable-hdb" ; \
|
|
|
|
fi
|
|
|
|
|
2000-06-06 09:23:17 +08:00
|
|
|
ldbm: test-ldbm
|
|
|
|
test-ldbm: FORCE
|
2000-06-07 03:55:26 +08:00
|
|
|
@-$(LN_S) $(srcdir)/data .
|
|
|
|
@-$(LN_S) $(top_srcdir)/servers/slapd/schema .
|
2000-10-31 04:02:13 +08:00
|
|
|
@-$(LN_S) ../libraries/liblunicode ucdata
|
2003-04-30 11:04:18 +08:00
|
|
|
@if test "$(BUILD_LDBM)" != "no"; then \
|
2000-06-06 09:23:17 +08:00
|
|
|
echo "Initiating LDAP tests for LDBM..." ; \
|
1999-04-06 09:00:31 +08:00
|
|
|
$(MKDIR) test-db test-repl || true; \
|
2003-04-30 11:04:18 +08:00
|
|
|
$(srcdir)/scripts/all $(srcdir) ldbm $(BUILD_LDBM) $(BUILD_MONITOR); \
|
1999-02-08 19:42:14 +08:00
|
|
|
else \
|
2000-06-06 09:23:17 +08:00
|
|
|
echo "run configure with --enable-ldbm" ; \
|
1999-02-08 19:42:14 +08:00
|
|
|
fi
|
1998-10-25 09:41:42 +08:00
|
|
|
|
1999-04-29 14:50:00 +08:00
|
|
|
passwd: test-passwd
|
|
|
|
test-passwd: FORCE
|
2000-06-07 03:55:26 +08:00
|
|
|
@-$(LN_S) $(srcdir)/data .
|
|
|
|
@-$(LN_S) $(top_srcdir)/servers/slapd/schema .
|
2000-10-31 04:02:13 +08:00
|
|
|
@-$(LN_S) ../libraries/liblunicode ucdata
|
1999-04-29 14:50:00 +08:00
|
|
|
@echo "Initiating LDAP tests..."
|
|
|
|
@-$(MKDIR) test-db test-repl || true
|
|
|
|
@$(srcdir)/scripts/passwd-search $(srcdir) passwd
|
|
|
|
|
1999-05-12 11:29:06 +08:00
|
|
|
test-nis-schema: test-nis-schema-ldbm
|
|
|
|
test-nis-schema-ldbm:
|
2000-06-07 03:55:26 +08:00
|
|
|
@-$(LN_S) $(srcdir)/data .
|
|
|
|
@-$(LN_S) $(top_srcdir)/servers/slapd/schema .
|
2000-10-31 04:02:13 +08:00
|
|
|
@-$(LN_S) ../libraries/liblunicode ucdata
|
1999-05-12 11:29:06 +08:00
|
|
|
@echo "Initiating LDAP server with NIS schema & ldbm backend..."; \
|
|
|
|
$(MKDIR) test-db test-repl ; \
|
|
|
|
$(srcdir)/scripts/startup_nis_ldap_server.sh $(srcdir) ldbm
|
|
|
|
|
1998-10-25 09:41:42 +08:00
|
|
|
clean-local: FORCE
|
2000-06-26 13:36:39 +08:00
|
|
|
-$(RM) -r test-db/[!C]* test-repl/[!C]* *leak *gmon *core
|
1998-10-25 09:41:42 +08:00
|
|
|
|
1998-11-22 14:24:59 +08:00
|
|
|
veryclean-local: FORCE
|
2000-09-04 07:48:35 +08:00
|
|
|
@-$(RM) data schema ucdata
|
2000-06-11 02:47:27 +08:00
|
|
|
-$(RM) -r test-db test-repl
|
1998-10-25 09:41:42 +08:00
|
|
|
|