From 96f72fd795180846831d22ef261ccacfbfbcf25b Mon Sep 17 00:00:00 2001 From: Jakub Hrozek Date: Mon, 2 Mar 2009 15:56:27 +0100 Subject: Make tests configurable --- server/Makefile.in | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'server/Makefile.in') diff --git a/server/Makefile.in b/server/Makefile.in index dd64b7ee..7a576e4a 100644 --- a/server/Makefile.in +++ b/server/Makefile.in @@ -83,6 +83,7 @@ MDLD_FLAGS = @MDLD_FLAGS@ HAVE_INFOPIPE = @HAVE_INFOPIPE@ HAVE_POLICYKIT = @HAVE_POLICYKIT@ +HAVE_TESTS = @HAVE_TESTS@ MEMBEROF_SOBASE=memberof.$(SHLIBEXT) MEMBEROF_SONAME=$(MEMBEROF_SOBASE).0 @@ -118,8 +119,10 @@ ifneq (x$(HAVE_POLICYKIT), x) endif BINS = sbin/sssd $(LIBEXECBINS) -TESTS = tests/sysdb-tests tests/infopipe-tests -TESTS_DATA = tests/tests.ldb tests/tests_conf.ldb tests/introspect.ref +ifneq (x$(HAVE_TESTS), x) + TESTS = tests/sysdb-tests tests/infopipe-tests + TESTS_DATA = tests/tests.ldb tests/tests_conf.ldb tests/introspect.ref +endif SOLIBS = lib/$(PROXY_BE_SOLIB) lib/$(LDAP_BE_SOLIB) LDBLIBS = lib/$(MEMBEROF_SOLIB) -- cgit