2003-11-25 21:58:56 -05:00
|
|
|
# Makefile.in for tests
|
1999-09-01 20:52:43 -04:00
|
|
|
# $OpenLDAP$
|
2003-11-28 15:00:23 -05:00
|
|
|
## This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
|
|
|
##
|
2008-01-07 19:19:56 -05:00
|
|
|
## Copyright 1998-2008 The OpenLDAP Foundation.
|
2003-11-25 21:58:56 -05:00
|
|
|
## All rights reserved.
|
1998-10-24 21:41:42 -04:00
|
|
|
##
|
2003-11-25 21:58:56 -05: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-20 23:08:08 -04:00
|
|
|
RUN=./run
|
1999-02-22 06:28:01 -05:00
|
|
|
SUBDIRS= progs
|
2003-10-20 23:08:08 -04:00
|
|
|
|
2001-10-04 02:34:03 -04:00
|
|
|
BUILD_BDB=@BUILD_BDB@
|
2003-04-23 12:50:56 -04:00
|
|
|
BUILD_HDB=@BUILD_HDB@
|
2004-08-24 05:26:39 -04:00
|
|
|
BUILD_SQL=@BUILD_SQL@
|
1999-02-15 05:49:20 -05:00
|
|
|
|
2005-10-06 15:17:42 -04:00
|
|
|
# test primary backends (default)
|
2003-10-13 05:56:25 -04:00
|
|
|
test tests:
|
|
|
|
|
@$(MAKE) bdb
|
|
|
|
|
@$(MAKE) hdb
|
2005-10-06 15:17:42 -04:00
|
|
|
|
|
|
|
|
# test all backends
|
|
|
|
|
alltests: tests
|
2004-08-24 05:26:39 -04:00
|
|
|
@$(MAKE) sql
|
2003-06-23 10:11:29 -04:00
|
|
|
|
2003-10-13 05:56:25 -04:00
|
|
|
bdb test-bdb: bdb-$(BUILD_BDB)
|
2003-10-10 08:11:22 -04:00
|
|
|
bdb-no:
|
2004-08-29 22:57:22 -04:00
|
|
|
@echo "run configure with --enable-bdb to run BDB tests"
|
2003-10-10 08:11:22 -04:00
|
|
|
|
2003-10-20 23:08:08 -04:00
|
|
|
bdb-yes bdb-mod: FORCE
|
2003-10-10 08:11:22 -04:00
|
|
|
@echo "Initiating LDAP tests for BDB..."
|
2003-10-20 23:08:08 -04:00
|
|
|
@$(RUN) -b bdb all
|
2003-10-10 08:11:22 -04:00
|
|
|
|
2003-10-13 05:56:25 -04:00
|
|
|
hdb test-hdb: hdb-$(BUILD_HDB)
|
2003-10-10 08:11:22 -04:00
|
|
|
hdb-no:
|
2004-08-29 22:57:22 -04:00
|
|
|
@echo "run configure with --enable-hdb to run HDB tests"
|
2003-10-10 08:11:22 -04:00
|
|
|
|
2003-10-20 23:08:08 -04:00
|
|
|
hdb-yes hdb-mod: FORCE
|
2003-10-10 08:11:22 -04:00
|
|
|
@echo "Initiating LDAP tests for HDB..."
|
2003-10-20 23:08:08 -04:00
|
|
|
@$(RUN) -b hdb all
|
2003-10-10 08:11:22 -04:00
|
|
|
|
2004-08-24 05:26:39 -04:00
|
|
|
sql test-sql: sql-$(BUILD_SQL)
|
|
|
|
|
sql-no:
|
2004-08-29 22:57:22 -04:00
|
|
|
@echo "run configure with --enable-sql to run SQL tests"
|
2004-08-24 05:26:39 -04:00
|
|
|
|
|
|
|
|
sql-yes sql-mod: FORCE
|
|
|
|
|
@echo "Initiating LDAP tests for SQL..."
|
|
|
|
|
@$(RUN) -b sql sql-all
|
|
|
|
|
|
2005-12-20 14:46:07 -05:00
|
|
|
regressions: FORCE
|
|
|
|
|
@echo "Testing (available) ITS regressions"
|
|
|
|
|
@$(RUN) its-all
|
|
|
|
|
|
|
|
|
|
its: regressions
|
|
|
|
|
|
1998-10-24 21:41:42 -04:00
|
|
|
clean-local: FORCE
|
2007-05-18 11:32:50 -04:00
|
|
|
-$(RM) -r testrun configpw configpw.conf *leak *gmon *core
|
1998-10-24 21:41:42 -04:00
|
|
|
|
1998-11-22 01:24:59 -05:00
|
|
|
veryclean-local: FORCE
|
2005-08-17 18:05:44 -04:00
|
|
|
@-$(RM) run testdata schema ucdata
|
1998-10-24 21:41:42 -04:00
|
|
|
|