From mboxrd@z Thu Jan 1 00:00:00 1970 From: Takashi Iwai Subject: Re: [PATCH] Build: Add --disable-tests configure flag to avoid tests build - v2 Date: Wed, 06 Feb 2013 12:25:16 +0100 Message-ID: References: <1360014747-7227-1-git-send-email-rodrigo.vivi@gmail.com> <1360088274-24840-1-git-send-email-rodrigo.vivi@gmail.com> Mime-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Received: from mx2.suse.de (cantor2.suse.de [195.135.220.15]) by gabe.freedesktop.org (Postfix) with ESMTP id 2B75BE5CB8 for ; Wed, 6 Feb 2013 03:25:17 -0800 (PST) In-Reply-To: <1360088274-24840-1-git-send-email-rodrigo.vivi@gmail.com> List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: intel-gfx-bounces+gcfxdi-intel-gfx=m.gmane.org@lists.freedesktop.org Errors-To: intel-gfx-bounces+gcfxdi-intel-gfx=m.gmane.org@lists.freedesktop.org To: Rodrigo Vivi Cc: intel-gfx@lists.freedesktop.org List-Id: intel-gfx@lists.freedesktop.org At Tue, 5 Feb 2013 16:17:54 -0200, Rodrigo Vivi wrote: > > 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. > > v2: wait for Ben's spacin fixes and adjusted for new space rules. /spacin/spacing/ ? Reviewed-by: Takashi Iwai Thanks! We can drop one more patch from SLE package now ;) Takashi > > Signed-off-by: Rodrigo Vivi > > Conflicts: > configure.ac > --- > 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 1c56fa4..e66876c 100644 > --- a/configure.ac > +++ b/configure.ac > @@ -122,6 +122,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 > @@ -129,7 +139,6 @@ AC_CONFIG_FILES([ > lib/Makefile > man/Makefile > scripts/Makefile > - tests/Makefile > tools/Makefile > debugger/Makefile > debugger/system_routine/Makefile > -- > 1.7.11.7 > > _______________________________________________ > Intel-gfx mailing list > Intel-gfx@lists.freedesktop.org > http://lists.freedesktop.org/mailman/listinfo/intel-gfx >