intel-gfx.lists.freedesktop.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] Build: Add --disable-tests configure flag to avoid tests build.
@ 2013-02-04 21:52 Rodrigo Vivi
  2013-02-05 18:17 ` [PATCH] Build: Add --disable-tests configure flag to avoid tests build - v2 Rodrigo Vivi
  2013-02-07 21:52 ` [PATCH] Build: Add --disable-tests configure flag to avoid tests build Damien Lespiau
  0 siblings, 2 replies; 8+ messages in thread
From: Rodrigo Vivi @ 2013-02-04 21:52 UTC (permalink / raw)
  To: intel-gfx

Tests are still being built by default. However this request
came from OSVs in order to allow them to include i-g-t in their
distributions by default avoiding adding more and more dependencies
since we are improving and adding more and more tests.

Signed-off-by: Rodrigo Vivi <rodrigo.vivi@gmail.com>
---
 Makefile.am  |  6 +++++-
 configure.ac | 11 ++++++++++-
 2 files changed, 15 insertions(+), 2 deletions(-)

diff --git a/Makefile.am b/Makefile.am
index 5ea0fd8..0dd615b 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -21,12 +21,16 @@
 
 ACLOCAL_AMFLAGS = ${ACLOCAL_FLAGS}
 
-SUBDIRS = lib man tools scripts tests benchmarks demos
+SUBDIRS = lib man tools scripts benchmarks demos
 
 if BUILD_SHADER_DEBUGGER
 SUBDIRS += debugger
 endif
 
+if BUILD_TESTS
+SUBDIRS += tests
+endif
+
 test:
 	${MAKE} -C tests test
 
diff --git a/configure.ac b/configure.ac
index 0ba7ce7..342544b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -124,6 +124,16 @@ AM_CONDITIONAL(BUILD_SHADER_DEBUGGER, [test "x$BUILD_SHADER_DEBUGGER" != xno])
 XORG_TESTSET_CFLAG([THREAD_CFLAGS], [-pthread], [-mt])
 AC_SUBST([THREAD_CFLAGS])
 
+AC_ARG_ENABLE(tests,
+              AS_HELP_STRING([--disable-tests],
+              [Disable tests build (default: enabled)]),
+              [BUILD_TESTS=$enableval], [BUILD_TESTS="yes"])
+if test "x$BUILD_TESTS" = xyes; then
+   AC_DEFINE(BUILD_TESTS, 1, [Build tests])
+   AC_CONFIG_FILES([tests/Makefile])
+fi
+AM_CONDITIONAL(BUILD_TESTS, [test "x$BUILD_TESTS" = xyes])
+
 AC_CONFIG_FILES([
 	Makefile
 	benchmarks/Makefile
@@ -131,7 +141,6 @@ AC_CONFIG_FILES([
 	lib/Makefile
 	man/Makefile
 	scripts/Makefile
-	tests/Makefile
 	tools/Makefile
 	debugger/Makefile
 	debugger/system_routine/Makefile
-- 
1.7.11.7

^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2013-02-08 11:48 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-02-04 21:52 [PATCH] Build: Add --disable-tests configure flag to avoid tests build Rodrigo Vivi
2013-02-05 18:17 ` [PATCH] Build: Add --disable-tests configure flag to avoid tests build - v2 Rodrigo Vivi
2013-02-05 23:19   ` Paul Menzel
2013-02-06 11:25   ` Takashi Iwai
2013-02-06 11:41     ` Daniel Vetter
2013-02-07 21:52 ` [PATCH] Build: Add --disable-tests configure flag to avoid tests build Damien Lespiau
2013-02-07 22:40   ` Ben Widawsky
2013-02-08 11:48     ` Rodrigo Vivi

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).