Re: [Piglit] [PATCH] arb_gpu_shader_fp64: add simple explicit location execution test

2016-05-30 Thread Samuel Iglesias Gonsálvez
On 31/05/16 08:47, Timothy Arceri wrote: > On Tue, 2016-05-31 at 08:22 +0200, Samuel Iglesias Gonsálvez wrote: >> It is failing in current i965 Mesa driver. This tests checks >> VS, GS and FS stages. >> >> Signed-off-by: Samuel Iglesias Gonsálvez >> --- >> .../explicit-location-gs-fs-vs-double.

Re: [Piglit] [PATCH] arb_gpu_shader_fp64: add simple explicit location execution test

2016-05-30 Thread Timothy Arceri
On Tue, 2016-05-31 at 08:22 +0200, Samuel Iglesias Gonsálvez wrote: > It is failing in current i965 Mesa driver. This tests checks > VS, GS and FS stages. > > Signed-off-by: Samuel Iglesias Gonsálvez > --- >  .../explicit-location-gs-fs-vs-double.shader_test  | 74 Nit pick but you don't really

[Piglit] [PATCH] arb_gpu_shader_fp64: add simple explicit location execution test

2016-05-30 Thread Samuel Iglesias Gonsálvez
It is failing in current i965 Mesa driver. This tests checks VS, GS and FS stages. Signed-off-by: Samuel Iglesias Gonsálvez --- .../explicit-location-gs-fs-vs-double.shader_test | 74 ++ 1 file changed, 74 insertions(+) create mode 100644 tests/spec/arb_gpu_shader_fp64/exe

[Piglit] [PATCH] dsa/xfb: make the buffer large enough.

2016-05-30 Thread Dave Airlie
From: Dave Airlie This bug in the test was triggered by a fix to mesa, the test creates a backing buffer smaller than the xfb range it requests then is surprised when it gets returned a truncated value for the size. Signed-off-by: Dave Airlie --- tests/spec/arb_direct_state_access/gettransform

Re: [Piglit] [PATCH v2 1/2] Test multiple inout parameters with indirect array indexing

2016-05-30 Thread Eduardo Lima Mitev
On 05/09/2016 04:51 PM, Juan A. Suarez Romero wrote: > --- > ...vs-inout-index-inout-mat2-col-array.shader_test | 35 + > ...ndex-inout-vec4-array-element-array.shader_test | 36 > ++ > 2 files changed, 71 insertions(+) > create mode 100644 > tests/shader

[Piglit] [PATCH] Fix the fnctl import on Windows

2016-05-30 Thread Olivier Berthier
This patch disables the fnctl import on Windows. --- framework/monitoring.py | 97 ++--- 1 file changed, 52 insertions(+), 45 deletions(-) diff --git a/framework/monitoring.py b/framework/monitoring.py index f178bd6..9f7a0d1 100644 --- a/framework/monit

[Piglit] [PATCH] glx: glx-fbconfig-bad test to test GLXBadFBConfig error

2016-05-30 Thread Tapani Pälli
This test causes a crash with current Mesa driver. --- tests/all.py | 1 + tests/glx/CMakeLists.gl.txt | 1 + tests/glx/glx-fbconfig-bad.c | 77 3 files changed, 79 insertions(+) create mode 100644 tests/glx/glx-fbconfig-bad.c diff