X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=tests%2FMakefile.in;h=dae2af27a416aa18abba17d27b95df8277c48013;hb=5dcdae1872991d7cedde4810f3eeee069417e6ff;hp=4d6becc43668cbceb1edbf4e9270307d94f694a2;hpb=001cc11ef29ea05abd7f9541b95f5c158bafd2d6;p=openldap diff --git a/tests/Makefile.in b/tests/Makefile.in index 4d6becc436..dae2af27a4 100644 --- a/tests/Makefile.in +++ b/tests/Makefile.in @@ -1,78 +1,67 @@ +# Makefile.in for tests # $OpenLDAP$ -## Copyright 1998-2003 The OpenLDAP Foundation, All Rights Reserved. -## COPYING RESTRICTIONS APPLY, see COPYRIGHT file +## This work is part of OpenLDAP Software . ## -## tests Makefile.in for OpenLDAP +## Copyright 1998-2008 The OpenLDAP Foundation. +## All rights reserved. +## +## Redistribution and use in source and binary forms, with or without +## modification, are permitted only as authorized by the OpenLDAP +## Public License. +## +## A copy of this license is available in the file LICENSE in the +## top-level directory of the distribution or, alternatively, at +## . + +RUN=./run SUBDIRS= progs + BUILD_BDB=@BUILD_BDB@ BUILD_HDB=@BUILD_HDB@ -BUILD_LDBM=@BUILD_LDBM@ -BUILD_MONITOR=@BUILD_MONITOR@ +BUILD_SQL=@BUILD_SQL@ + +# test primary backends (default) +test tests: + @$(MAKE) bdb + @$(MAKE) hdb + +# test all backends +alltests: tests + @$(MAKE) sql + +bdb test-bdb: bdb-$(BUILD_BDB) +bdb-no: + @echo "run configure with --enable-bdb to run BDB tests" + +bdb-yes bdb-mod: FORCE + @echo "Initiating LDAP tests for BDB..." + @$(RUN) -b bdb all -test: tests -tests: bdb hdb ldbm +hdb test-hdb: hdb-$(BUILD_HDB) +hdb-no: + @echo "run configure with --enable-hdb to run HDB tests" -bdb: test-bdb -test-bdb: FORCE - @-$(LN_S) $(srcdir)/data . - @-$(LN_S) $(top_srcdir)/servers/slapd/schema . - @-$(LN_S) ../libraries/liblunicode ucdata - @if test "$(BUILD_BDB)" != "no"; then \ - echo "Initiating LDAP tests for BDB..." ; \ - $(MKDIR) test-db test-repl || true; \ - $(srcdir)/scripts/all $(srcdir) bdb $(BUILD_BDB) $(BUILD_MONITOR) ; \ - else \ - echo "run configure with --enable-bdb" ; \ - fi +hdb-yes hdb-mod: FORCE + @echo "Initiating LDAP tests for HDB..." + @$(RUN) -b hdb all -hdb: test-hdb -test-hdb: FORCE - @-$(LN_S) $(srcdir)/data . - @-$(LN_S) $(top_srcdir)/servers/slapd/schema . - @-$(LN_S) ../libraries/liblunicode ucdata - @if test "$(BUILD_HDB)" != "no" ; then \ - echo "Initiating LDAP tests for HDB..." ; \ - $(MKDIR) test-db test-repl || true; \ - $(srcdir)/scripts/all $(srcdir) hdb $(BUILD_HDB) $(BUILD_MONITOR) ; \ - else \ - echo "run configure with --enable-hdb" ; \ - fi +sql test-sql: sql-$(BUILD_SQL) +sql-no: + @echo "run configure with --enable-sql to run SQL tests" -ldbm: test-ldbm -test-ldbm: FORCE - @-$(LN_S) $(srcdir)/data . - @-$(LN_S) $(top_srcdir)/servers/slapd/schema . - @-$(LN_S) ../libraries/liblunicode ucdata - @if test "$(BUILD_LDBM)" != "no"; then \ - echo "Initiating LDAP tests for LDBM..." ; \ - $(MKDIR) test-db test-repl || true; \ - $(srcdir)/scripts/all $(srcdir) ldbm $(BUILD_LDBM) $(BUILD_MONITOR); \ - else \ - echo "run configure with --enable-ldbm" ; \ - fi +sql-yes sql-mod: FORCE + @echo "Initiating LDAP tests for SQL..." + @$(RUN) -b sql sql-all -passwd: test-passwd -test-passwd: FORCE - @-$(LN_S) $(srcdir)/data . - @-$(LN_S) $(top_srcdir)/servers/slapd/schema . - @-$(LN_S) ../libraries/liblunicode ucdata - @echo "Initiating LDAP tests..." - @-$(MKDIR) test-db test-repl || true - @$(srcdir)/scripts/passwd-search $(srcdir) passwd +regressions: FORCE + @echo "Testing (available) ITS regressions" + @$(RUN) its-all -test-nis-schema: test-nis-schema-ldbm -test-nis-schema-ldbm: - @-$(LN_S) $(srcdir)/data . - @-$(LN_S) $(top_srcdir)/servers/slapd/schema . - @-$(LN_S) ../libraries/liblunicode ucdata - @echo "Initiating LDAP server with NIS schema & ldbm backend..."; \ - $(MKDIR) test-db test-repl ; \ - $(srcdir)/scripts/startup_nis_ldap_server.sh $(srcdir) ldbm +its: regressions clean-local: FORCE - -$(RM) -r test-db/[!C]* test-repl/[!C]* test-cache/[!C]* *leak *gmon *core + -$(RM) -r testrun configpw configpw.conf *leak *gmon *core veryclean-local: FORCE - @-$(RM) data schema ucdata - -$(RM) -r test-db test-repl test-cache + @-$(RM) run testdata schema ucdata