Re: [Piglit] [PATCH] Add tests for GL_ARB_shader_draw_parameters

2015-12-17 Thread Serge Martin
On Wednesday 16 December 2015 16:17:30 Kristian Høgsberg wrote: > From: Kristian Høgsberg Kristensen > > --- > > v2: Fix copy-paste error in drawid-indirect-vertexid case. > > tests/all.py | 15 ++ > tests/spec/CMakeLists.txt |

Re: [Piglit] [PATCH 3/3] copyteximage: verify that GL1.0 legacy formats are rejected

2015-12-17 Thread Erik Faye-Lund
How do I get this series (minus patch 2/3) applied? On Tue, Aug 25, 2015 at 3:46 PM, Ian Romanick wrote: > This patch is > > Reviewed-by: Ian Romanick > > On 08/24/2015 09:38 PM, Erik Faye-Lund wrote: >> The OpenGL 1.0 legacy formats 1, 2, 3 and 4 are not supposed to >> be supported for glCopyTe

[Piglit] [PATCH] Replace vs-tes-tessinner-tessouter-inputs with two new tests.

2015-12-17 Thread Kenneth Graunke
(This is commit 42587e6d4bc8dd79be02b for the !TCS case.) vs-tes-tessinner-tessouter-inputs tried to verify that all vector components written by the TCS were present in the TES. However, this is not guaranteed. According to the ARB_tessellation_shader spec: "Tessellation Evaluation Shader Inpu

Re: [Piglit] [PATCH] EXT_multisampled_render_to_texture: functional test

2015-12-17 Thread Ian Romanick
On 12/16/2015 06:33 AM, Magnus Wendt wrote: > EXT_multisampled_render_to_texture allows you to bind a singlesampled > texture to the color attachment of a multisampled framebuffer object. > Rendering is multisampled and the multisample data is implicitly > resolved and invalidated when texturing. >

Re: [Piglit] [PATCH] namespace-pollution: Initial framework and test cases for namespace pollution

2015-12-17 Thread Emil Velikov
Hi Ian, On 17 December 2015 at 02:40, Ian Romanick wrote: > From: Ian Romanick > > See the giant comment in the top of > tests/general/object-namespace-pollution.c for more details. Currently > only buffer objects and texture objects are supported with glClear and > glGenerateMipmap. Addtional

Re: [Piglit] [PATCH 3/3] copyteximage: verify that GL1.0 legacy formats are rejected

2015-12-17 Thread Dylan Baker
I've pushed the two patches Ian reviewed. On Thu, Dec 17, 2015 at 3:35 AM, Erik Faye-Lund wrote: > How do I get this series (minus patch 2/3) applied? > > On Tue, Aug 25, 2015 at 3:46 PM, Ian Romanick wrote: > > This patch is > > > > Reviewed-by: Ian Romanick > > > > On 08/24/2015 09:38 PM, Er

[Piglit] [PATCH 4/5] unittests: move framework/tests to unittests

2015-12-17 Thread baker . dylan . c
From: Dylan Baker Currently the framework is pretty confusing. There's 'test' which is a package containing test classes, then there's 'tests' which contains unit tests for the framework. This is obviously not optimal. Beyond that the unittests get installed, and that isn't really necessary. As

[Piglit] [PATCH 0/5] Move unittests out of framework

2015-12-17 Thread baker . dylan . c
From: Dylan Baker It's generally just confusing having the unit tests for the framework in the framework folder. Moving them to the top level makes more sense and should lower the confusion factor for anyone wanting to look at the framework. Dylan Baker (5): junit_backend_tests.py: make schema

[Piglit] [PATCH 2/5] framework/tests: Use relative import for utils

2015-12-17 Thread baker . dylan . c
From: Dylan Baker Signed-off-by: Dylan Baker --- framework/tests/backends_tests.py| 2 +- framework/tests/base_tests.py| 2 +- framework/tests/compressed_backend_tests.py | 2 +- framework/tests/core_tests.py| 2 +- framework/tests/deqp_tests.py

[Piglit] [PATCH 5/5] tox.ini: compress tox file to be simpler

2015-12-17 Thread baker . dylan . c
From: Dylan Baker Instead of having a bunch of different testenv sections, use one with some compressed dependencies. Signed-off-by: Dylan Baker --- tox.ini | 34 +++--- 1 file changed, 11 insertions(+), 23 deletions(-) diff --git a/tox.ini b/tox.ini index 663b38f.

[Piglit] [PATCH 3/5] base_tests.py: make import from tests relative

2015-12-17 Thread baker . dylan . c
From: Dylan Baker Signed-off-by: Dylan Baker --- framework/tests/base_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/tests/base_tests.py b/framework/tests/base_tests.py index aded29f..8132d49 100644 --- a/framework/tests/base_tests.py +++ b/framework/test

[Piglit] [PATCH 1/5] junit_backend_tests.py: make schema path robust

2015-12-17 Thread baker . dylan . c
From: Dylan Baker Signed-off-by: Dylan Baker --- framework/tests/junit_backends_tests.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/framework/tests/junit_backends_tests.py b/framework/tests/junit_backends_tests.py index 7d5a3fc..40c59ed 100644 --- a/framework/tests

[Piglit] [PATCH] arb_arrays_of_arrays: test linking between vs and gs with explicit locations

2015-12-17 Thread Timothy Arceri
--- .../linker/vs-to-gs-explicit-location.shader_test | 39 ++ 1 file changed, 39 insertions(+) create mode 100644 tests/spec/arb_arrays_of_arrays/linker/vs-to-gs-explicit-location.shader_test diff --git a/tests/spec/arb_arrays_of_arrays/linker/vs-to-gs-explicit-location.s

[Piglit] [PATCH] arb_enhanced_layouts: test layout componet qualifier between multiple stages with SSO

2015-12-17 Thread Timothy Arceri
--- .../sso-vs-gs-fs-array-interleave.shader_test | 106 + 1 file changed, 106 insertions(+) create mode 100644 tests/spec/arb_enhanced_layouts/execution/component-layout/sso-vs-gs-fs-array-interleave.shader_test diff --git a/tests/spec/arb_enhanced_layouts/execution/c