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>.
|
|
|
|
|
2003-10-21 11:08:08 +08:00
|
|
|
RUN=./run
|
1999-02-22 19:28:01 +08:00
|
|
|
SUBDIRS= progs
|
2003-10-21 11:08:08 +08:00
|
|
|
|
2011-09-02 07:56:56 +08:00
|
|
|
BUILD_MDB=@BUILD_MDB@
|
2004-08-24 17:26:39 +08:00
|
|
|
BUILD_SQL=@BUILD_SQL@
|
2018-01-11 23:43:18 +08:00
|
|
|
BUILD_SLAPD=@BUILD_SLAPD@
|
2017-05-25 22:48:43 +08:00
|
|
|
BUILD_BALANCER=@BUILD_BALANCER@
|
2021-02-10 21:56:09 +08:00
|
|
|
BUILD_WT=@BUILD_WT@
|
1999-02-15 18:49:20 +08:00
|
|
|
|
2005-10-07 03:17:42 +08:00
|
|
|
# test primary backends (default)
|
2003-10-13 17:56:25 +08:00
|
|
|
test tests:
|
2011-09-02 07:56:56 +08:00
|
|
|
@$(MAKE) mdb
|
2017-05-25 22:48:43 +08:00
|
|
|
@$(MAKE) lloadd
|
2021-02-10 21:56:09 +08:00
|
|
|
@$(MAKE) wt
|
2005-10-07 03:17:42 +08:00
|
|
|
|
|
|
|
# test all backends
|
|
|
|
alltests: tests
|
2004-08-24 17:26:39 +08:00
|
|
|
@$(MAKE) sql
|
2011-11-20 20:53:35 +08:00
|
|
|
@$(MAKE) ldif
|
2021-02-10 21:56:09 +08:00
|
|
|
@$(MAKE) wt
|
2003-06-23 22:11:29 +08:00
|
|
|
|
2011-09-02 07:56:56 +08:00
|
|
|
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
|
|
|
|
|
2004-08-24 17:26:39 +08:00
|
|
|
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"
|
2004-08-24 17:26:39 +08:00
|
|
|
|
|
|
|
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
|
|
|
|
|
2021-02-10 21:56:09 +08:00
|
|
|
wt test-wt: wt-$(BUILD_WT)
|
|
|
|
wt-no:
|
|
|
|
@echo "run configure with --enable-wt to run back-wt tests"
|
|
|
|
|
|
|
|
wt-yes wt-mod: FORCE
|
|
|
|
@$(RUN) -b wt 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"
|
|
|
|
|
2018-01-25 01:48:29 +08:00
|
|
|
lloadd-yes lloadd-mod: lloadd-slapd-$(BUILD_SLAPD)
|
2018-01-11 23:43:18 +08:00
|
|
|
|
|
|
|
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"
|
2016-12-13 04:22:40 +08:00
|
|
|
@$(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)
|
2016-12-13 04:22:40 +08:00
|
|
|
mdb-its-no:
|
2017-01-21 03:41:47 +08:00
|
|
|
@echo "run configure with --enable-mdb to run MDB ITS regressions"
|
2016-12-13 04:22:40 +08:00
|
|
|
|
|
|
|
mdb-its-yes mdb-its-mod: FORCE
|
|
|
|
@$(RUN) -b mdb its-all
|
|
|
|
|
1998-10-25 09:41:42 +08:00
|
|
|
clean-local: FORCE
|
2007-05-18 23:32:50 +08:00
|
|
|
-$(RM) -r testrun configpw configpw.conf *leak *gmon *core
|
1998-10-25 09:41:42 +08:00
|
|
|
|
1998-11-22 14:24:59 +08:00
|
|
|
veryclean-local: FORCE
|
2005-08-18 06:05:44 +08:00
|
|
|
@-$(RM) run testdata schema ucdata
|
1998-10-25 09:41:42 +08:00
|
|
|
|