Re: [Piglit] [PATCH v3] polygon-line-aa test case added.

2014-09-09 Thread Iago Toral Quiroga
This has been hanging here for a while, so if nobody says otherwise I'd like to push this next week. Iago On jue, 2014-06-12 at 09:00 +0200, Iago Toral Quiroga wrote: This tests correct rendering of polygons using antialised GL_LINE mode for one face and GL_FILL for the other one. On some

Re: [Piglit] [PATCH v3 0/5] arb_gpu_shader5: tests to verify 'stream' layout qualifier

2014-09-09 Thread Iago Toral Quiroga
These tests has been in the list for a while and now that drivers are starting to expose ARB_gpu_shader5 it would be nice to have these tests for multi-stream included in the suite, so if nobody says otherwise we would like to push them next week. Iago On mié, 2014-08-20 at 16:30 +0200, Samuel

Re: [Piglit] [PATCH v3] polygon-line-aa test case added.

2014-09-09 Thread Brian Paul
Two comments below. -Brian On 09/09/2014 03:23 AM, Iago Toral Quiroga wrote: This has been hanging here for a while, so if nobody says otherwise I'd like to push this next week. Iago On jue, 2014-06-12 at 09:00 +0200, Iago Toral Quiroga wrote: This tests correct rendering of polygons using

[Piglit] [PATCH] glsl-1.20: new test for a GLSL scoping bug in Mesa

2014-09-09 Thread Marek Olšák
From: Marek Olšák marek.ol...@amd.com Mesa things Name is a type in gl_Position = Name. --- .../compiler/scoping-struct-vs-variable.vert | 24 ++ 1 file changed, 24 insertions(+) create mode 100644 tests/spec/glsl-1.20/compiler/scoping-struct-vs-variable.vert diff

[Piglit] [PATCH 3/3] Remove all_cl profile

2014-09-09 Thread Tom Stellard
The test list that was provided by the all_cl can now be replicated with the quick_cl profile by adding the 'individual' option to the opencv section. --- tests/all_cl.py | 32 1 file changed, 32 deletions(-) delete mode 100644 tests/all_cl.py diff --git

Re: [Piglit] [PATCH v3] polygon-line-aa test case added.

2014-09-09 Thread Iago Toral
Hi Paul, I'll make these two changes before pushing next week. Thanks for reviewing this. Iago El 2014-09-09 16:23, Brian Paul escribió: Two comments below. -Brian On 09/09/2014 03:23 AM, Iago Toral Quiroga wrote: This has been hanging here for a while, so if nobody says otherwise I'd like

[Piglit] [PATCH 1/3] opencv: Add 'individual' option to piglit.conf

2014-09-09 Thread Tom Stellard
This replaces the individual parameter in add_opencv_tests() --- framework/opencv.py | 3 ++- piglit.conf.example | 10 ++ tests/all_cl.py | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/framework/opencv.py b/framework/opencv.py index cefc94c..a5201c9 100644

[Piglit] [PATCH 2/3] quick_cl: Add oclconform tests

2014-09-09 Thread Tom Stellard
--- tests/quick_cl.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/quick_cl.py b/tests/quick_cl.py index 17729b2..ea48a7a 100644 --- a/tests/quick_cl.py +++ b/tests/quick_cl.py @@ -25,6 +25,8 @@ # from tests.cl import profile +from framework.oclconform import

[Piglit] [PATCH] framework: add a generic timeout mechanism

2014-09-09 Thread Thomas Wood
The timeout mechanism within igt.py can no longer be used since get_command_result was renamed and made private in commit 5e9dd69 (exectest.py: rename get_command_result to __run_command). Therefore, move the timeout mechanism into exectest.py, allowing all test profiles to use it if needed and

Re: [Piglit] [PATCH] glsl-1.20: new test for a GLSL scoping bug in Mesa

2014-09-09 Thread Brian Paul
On 09/09/2014 08:51 AM, Marek Olšák wrote: From: Marek Olšák marek.ol...@amd.com Mesa things Name is a type in gl_Position = Name. thinks --- .../compiler/scoping-struct-vs-variable.vert | 24 ++ 1 file changed, 24 insertions(+) create mode 100644

[Piglit] [PATCH 1/2] cl: Add atomic_max tests

2014-09-09 Thread Aaron Watry
v2: Properly test signed/unsigned values Signed-off-by: Aaron Watry awa...@gmail.com --- .../execute/builtin/atomic/atomic_max-local.cl | 81 ++ 1 file changed, 81 insertions(+) create mode 100644 tests/cl/program/execute/builtin/atomic/atomic_max-local.cl diff --git

Re: [Piglit] [PATCH 00/11] Lots of UBO tests

2014-09-09 Thread Ian Romanick
On 09/09/2014 11:18 AM, Ian Romanick wrote: On 09/08/2014 02:34 PM, Ian Romanick wrote: A couple weeks ago I told Dave Airlie that I was working on a giant pile UBO tests. This is not that work, but it is most of the changes to get ready for that work. The first three patches were written

Re: [Piglit] [PATCH 07/11] arb_uniform_buffer_object: Add test based on extension spec

2014-09-09 Thread Ian Romanick
[Resend without the giant attachment that made the list angry.] On 09/09/2014 11:19 AM, Ian Romanick wrote: On 09/08/2014 09:58 PM, Tapani Pälli wrote: Hi Ian; I was planning to have a 'custom' layout-std140 test with some doubles included. I think I will instead copy-paste this one and add

[Piglit] [PATCH v3 1/1] cl: Add copysign tests

2014-09-09 Thread Jan Vesely
v2: Fix -NaN test v3: Rebase Signed-off-by: Jan Vesely jan.ves...@rutgers.edu --- generated_tests/generate-cl-math-builtins.py | 12 +++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/generated_tests/generate-cl-math-builtins.py

Re: [Piglit] [PATCH v3 1/1] cl: Add copysign tests

2014-09-09 Thread Aaron Watry
I gave this a spin on libclc + evergreen/si and also checked against a geforce 9400m in my macbook. Tests pass on all 3 systems tested. Reviewed-by: Aaron Watry awa...@gmail.com On Tue, Sep 9, 2014 at 6:34 PM, Jan Vesely jan.ves...@rutgers.edu wrote: v2: Fix -NaN test v3: Rebase