X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=tests%2FMakefile.in;h=267422ca6843ce3959f1833f41d14db8fe85fa2a;hb=787e53e6a4e4fefb0cbaae89ef0a3acb138f24f4;hp=f702bb00fa58292c8cc60b9719ea367a661ef8ae;hpb=6939c531700652491f4be4688c6a1f35a1ab8a18;p=openldap diff --git a/tests/Makefile.in b/tests/Makefile.in index f702bb00fa..267422ca68 100644 --- a/tests/Makefile.in +++ b/tests/Makefile.in @@ -1,64 +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-2009 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_LDBM=@BUILD_LDBM@ + BUILD_BDB=@BUILD_BDB@ -BUILD_MONITOR=@BUILD_MONITOR@ +BUILD_HDB=@BUILD_HDB@ +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 + +hdb test-hdb: hdb-$(BUILD_HDB) +hdb-no: + @echo "run configure with --enable-hdb to run HDB tests" -test: tests -tests: bdb ldbm +hdb-yes hdb-mod: FORCE + @echo "Initiating LDAP tests for HDB..." + @$(RUN) -b hdb all -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)" = "yes" ; then \ - echo "Initiating LDAP tests for BDB..." ; \ - $(MKDIR) test-db test-repl || true; \ - $(srcdir)/scripts/all $(srcdir) bdb $(BUILD_MONITOR) ; \ - else \ - echo "run configure with --enable-bdb" ; \ - 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)" = "yes" ; then \ - echo "Initiating LDAP tests for LDBM..." ; \ - $(MKDIR) test-db test-repl || true; \ - $(srcdir)/scripts/all $(srcdir) 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]* *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 + @-$(RM) run testdata schema ucdata