openldap/tests/Makefile.in

86 lines
2.0 KiB
Makefile
Raw Normal View History

2003-11-26 10:58:56 +08:00
# Makefile.in for tests
1999-09-02 08:52:43 +08:00
# $OpenLDAP$
2003-11-29 04:00:23 +08:00
## This work is part of OpenLDAP Software <http://www.openldap.org/>.
##
2021-01-12 03:25:53 +08:00
## Copyright 1998-2021 The OpenLDAP Foundation.
2003-11-26 10:58:56 +08:00
## All rights reserved.
1998-10-25 09:41:42 +08:00
##
2003-11-26 10:58:56 +08:00
## 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
## <http://www.OpenLDAP.org/license.html>.
RUN=./run
SUBDIRS= progs
BUILD_MDB=@BUILD_MDB@
BUILD_SQL=@BUILD_SQL@
BUILD_SLAPD=@BUILD_SLAPD@
2017-05-25 22:48:43 +08:00
BUILD_BALANCER=@BUILD_BALANCER@
# test primary backends (default)
2003-10-13 17:56:25 +08:00
test tests:
@$(MAKE) mdb
2017-05-25 22:48:43 +08:00
@$(MAKE) lloadd
# test all backends
alltests: tests
@$(MAKE) sql
2011-11-20 20:53:35 +08:00
@$(MAKE) ldif
mdb test-mdb: mdb-$(BUILD_MDB)
mdb-no:
@echo "run configure with --enable-mdb to run MDB tests"
mdb-yes mdb-mod: FORCE
@echo "Initiating LDAP tests for MDB..."
@$(RUN) -b mdb all
sql test-sql: sql-$(BUILD_SQL)
sql-no:
2004-08-30 10:57:22 +08:00
@echo "run configure with --enable-sql to run SQL tests"
sql-yes sql-mod: FORCE
@echo "Initiating LDAP tests for SQL..."
@$(RUN) -b sql sql-all
2009-11-29 19:46:48 +08:00
ldif test-ldif: FORCE
@echo "Initiating LDAP tests for LDIF..."
@$(RUN) -b ldif all
2017-05-25 22:48:43 +08:00
lloadd test-lloadd: lloadd-$(BUILD_BALANCER)
lloadd-no:
@echo "run configure with --enable-balancer to run the Load Balancer tests"
lloadd-yes lloadd-mod: lloadd-slapd-$(BUILD_SLAPD)
lloadd-slapd-no:
@echo "run configure with --enable-slapd to run the Load Balancer tests"
lloadd-slapd-yes: FORCE
2017-05-25 22:48:43 +08:00
@echo "Initiating LDAP tests for the Load Balancer..."
@$(RUN) lloadd-all
2005-12-21 03:46:07 +08:00
regressions: FORCE
@echo "Testing (available) ITS regressions"
@$(MAKE) mdb-its
2005-12-21 03:46:07 +08:00
its: regressions
2017-01-21 03:41:47 +08:00
mdb-its: mdb-its-$(BUILD_MDB)
mdb-its-no:
2017-01-21 03:41:47 +08:00
@echo "run configure with --enable-mdb to run MDB ITS regressions"
mdb-its-yes mdb-its-mod: FORCE
@$(RUN) -b mdb its-all
1998-10-25 09:41:42 +08:00
clean-local: FORCE
-$(RM) -r testrun configpw configpw.conf *leak *gmon *core
1998-10-25 09:41:42 +08:00
veryclean-local: FORCE
@-$(RM) run testdata schema ucdata
1998-10-25 09:41:42 +08:00