Re: [Mesa-dev] [PATCH 1/3] meson: don't build classic mesa tests without dri_drivers

2018-04-24 Thread Eric Anholt
Dylan Baker  writes:

> Since mesa_classic is not build-on-demand the tests will create a demand
> and add a bunch of extra compilation.

s/not //?

Other than that, the series is

Reviewed-by: Eric Anholt 


signature.asc
Description: PGP signature
___
mesa-dev mailing list
mesa-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/mesa-dev


Re: [Mesa-dev] [PATCH 1/3] meson: don't build classic mesa tests without dri_drivers

2018-04-23 Thread Dylan Baker
Quoting Dylan Baker (2018-04-19 09:20:49)
> Since mesa_classic is not build-on-demand the tests will create a demand
> and add a bunch of extra compilation.
> 
> Fixes: 43a6e84927e3b1290f6f211f5dfb184dfe5a719e
>("meson: build mesa test.")
> Signed-off-by: Dylan Baker 
> ---
>  src/mesa/meson.build | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/src/mesa/meson.build b/src/mesa/meson.build
> index 30954beac54..3100dfc50f6 100644
> --- a/src/mesa/meson.build
> +++ b/src/mesa/meson.build
> @@ -732,6 +732,6 @@ endif
>  if with_glx == 'xlib'
>subdir('drivers/x11')
>  endif
> -if with_tests
> +if with_tests and dri_drivers != []
>subdir('main/tests')
>  endif
> -- 
> 2.17.0
> 

ping.


signature.asc
Description: signature
___
mesa-dev mailing list
mesa-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/mesa-dev


[Mesa-dev] [PATCH 1/3] meson: don't build classic mesa tests without dri_drivers

2018-04-19 Thread Dylan Baker
Since mesa_classic is not build-on-demand the tests will create a demand
and add a bunch of extra compilation.

Fixes: 43a6e84927e3b1290f6f211f5dfb184dfe5a719e
   ("meson: build mesa test.")
Signed-off-by: Dylan Baker 
---
 src/mesa/meson.build | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/mesa/meson.build b/src/mesa/meson.build
index 30954beac54..3100dfc50f6 100644
--- a/src/mesa/meson.build
+++ b/src/mesa/meson.build
@@ -732,6 +732,6 @@ endif
 if with_glx == 'xlib'
   subdir('drivers/x11')
 endif
-if with_tests
+if with_tests and dri_drivers != []
   subdir('main/tests')
 endif
-- 
2.17.0

___
mesa-dev mailing list
mesa-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/mesa-dev