All of lore.kernel.org
 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

* [PATCH] Build: Add --disable-tests configure flag to avoid tests build - v2
  2013-02-04 21:52 [PATCH] Build: Add --disable-tests configure flag to avoid tests build Rodrigo Vivi
@ 2013-02-05 18:17 ` Rodrigo Vivi
  2013-02-05 23:19   ` Paul Menzel
  2013-02-06 11:25   ` Takashi Iwai
  2013-02-07 21:52 ` [PATCH] Build: Add --disable-tests configure flag to avoid tests build Damien Lespiau
  1 sibling, 2 replies; 8+ messages in thread
From: Rodrigo Vivi @ 2013-02-05 18:17 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.

v2: wait for Ben's spacin fixes and adjusted for new space rules.

Signed-off-by: Rodrigo Vivi <rodrigo.vivi@gmail.com>

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

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

* Re: [PATCH] Build: Add --disable-tests configure flag to avoid tests build - v2
  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
  1 sibling, 0 replies; 8+ messages in thread
From: Paul Menzel @ 2013-02-05 23:19 UTC (permalink / raw)
  To: intel-gfx


[-- Attachment #1.1: Type: text/plain, Size: 1060 bytes --]

Dear Rodrigo,


Am Dienstag, den 05.02.2013, 16:17 -0200 schrieb Rodrigo Vivi:
> 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

Please do not use abbreviations which do not even show up in the top ten
hits when searching for them in the Google search engine.

> 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.

For the subject line from `git help format-pactch`:

    $ git format-patch --subject-prefix="PATCH v2"

> Signed-off-by: Rodrigo Vivi <rodrigo.vivi@gmail.com>
> 
> Conflicts:
> 	configure.ac

As it is just locale for you, you can remove this, right?

> ---
>  Makefile.am  |  6 +++++-
>  configure.ac | 11 ++++++++++-
>  2 files changed, 15 insertions(+), 2 deletions(-)

[…]

With the changes above,

Acked-by: Paul Menzel <paulepanter@users.sourceforge.net>


Thanks,

Paul

[-- Attachment #1.2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 198 bytes --]

[-- Attachment #2: Type: text/plain, Size: 159 bytes --]

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx

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

* Re: [PATCH] Build: Add --disable-tests configure flag to avoid tests build - v2
  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
  1 sibling, 1 reply; 8+ messages in thread
From: Takashi Iwai @ 2013-02-06 11:25 UTC (permalink / raw)
  To: Rodrigo Vivi; +Cc: intel-gfx

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 <tiwai@suse.de>


Thanks!  We can drop one more patch from SLE package now ;)

Takashi

> 
> Signed-off-by: Rodrigo Vivi <rodrigo.vivi@gmail.com>
> 
> 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
> 

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

* Re: [PATCH] Build: Add --disable-tests configure flag to avoid tests build - v2
  2013-02-06 11:25   ` Takashi Iwai
@ 2013-02-06 11:41     ` Daniel Vetter
  0 siblings, 0 replies; 8+ messages in thread
From: Daniel Vetter @ 2013-02-06 11:41 UTC (permalink / raw)
  To: Takashi Iwai; +Cc: intel-gfx

On Wed, Feb 06, 2013 at 12:25:16PM +0100, Takashi Iwai wrote:
> 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 <tiwai@suse.de>

Merged, thanks for the patch.
-Daniel
-- 
Daniel Vetter
Software Engineer, Intel Corporation
+41 (0) 79 365 57 48 - http://blog.ffwll.ch

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

* Re: [PATCH] Build: Add --disable-tests configure flag to avoid tests build.
  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-07 21:52 ` Damien Lespiau
  2013-02-07 22:40   ` Ben Widawsky
  1 sibling, 1 reply; 8+ messages in thread
From: Damien Lespiau @ 2013-02-07 21:52 UTC (permalink / raw)
  To: Rodrigo Vivi; +Cc: intel-gfx

On Mon, Feb 04, 2013 at 07:52:27PM -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.

Sorry to be the party crasher here, but the patch doesn't seem to really
remove dependencies because the default action-if-not-found of
PKG_CHECK_MODULES will end the configure script. For instance

PKG_CHECK_MODULES(CAIRO, [cairo])

will end the configure script if cairo is not found.

What are the goals here? remove dependencies? which ones?

Hopefully not too wrong with that stupid FOSDEM flu :)

-- 
Damien

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

* Re: [PATCH] Build: Add --disable-tests configure flag to avoid tests build.
  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
  0 siblings, 1 reply; 8+ messages in thread
From: Ben Widawsky @ 2013-02-07 22:40 UTC (permalink / raw)
  To: Damien Lespiau; +Cc: intel-gfx

On Thu, Feb 07, 2013 at 09:52:32PM +0000, Damien Lespiau wrote:
> On Mon, Feb 04, 2013 at 07:52:27PM -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.
> 
> Sorry to be the party crasher here, but the patch doesn't seem to really
> remove dependencies because the default action-if-not-found of
> PKG_CHECK_MODULES will end the configure script. For instance
> 
> PKG_CHECK_MODULES(CAIRO, [cairo])
> 
> will end the configure script if cairo is not found.
> 
> What are the goals here? remove dependencies? which ones?
> 
> Hopefully not too wrong with that stupid FOSDEM flu :)
> 
> -- 
> Damien

Takashi asked for it, and reviewed it, so
http://en.wikipedia.org/wiki/Ostrich_algorithm?

-- 
Ben Widawsky, Intel Open Source Technology Center

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

* Re: [PATCH] Build: Add --disable-tests configure flag to avoid tests build.
  2013-02-07 22:40   ` Ben Widawsky
@ 2013-02-08 11:48     ` Rodrigo Vivi
  0 siblings, 0 replies; 8+ messages in thread
From: Rodrigo Vivi @ 2013-02-08 11:48 UTC (permalink / raw)
  To: Ben Widawsky; +Cc: intel-gfx

Apparently Cairo wasn't the main reason, beucase something at /libs
depends on Cairo as well. So cairo dependencie wasn't removed from
checks.
But now on, when including any dependencies used only for tests please
add pkg_check_modules only if tests build enalbed.


On Thu, Feb 7, 2013 at 8:40 PM, Ben Widawsky <ben@bwidawsk.net> wrote:
> On Thu, Feb 07, 2013 at 09:52:32PM +0000, Damien Lespiau wrote:
>> On Mon, Feb 04, 2013 at 07:52:27PM -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.
>>
>> Sorry to be the party crasher here, but the patch doesn't seem to really
>> remove dependencies because the default action-if-not-found of
>> PKG_CHECK_MODULES will end the configure script. For instance
>>
>> PKG_CHECK_MODULES(CAIRO, [cairo])
>>
>> will end the configure script if cairo is not found.
>>
>> What are the goals here? remove dependencies? which ones?
>>
>> Hopefully not too wrong with that stupid FOSDEM flu :)
>>
>> --
>> Damien
>
> Takashi asked for it, and reviewed it, so
> http://en.wikipedia.org/wiki/Ostrich_algorithm?
>
> --
> Ben Widawsky, Intel Open Source Technology Center



--
Rodrigo Vivi
Blog: http://blog.vivi.eng.br

^ permalink raw reply	[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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.