[Piglit] [Bug 89821] New: [all]Piglit report warn, but no warning in dmesg

2015-03-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=89821 Bug ID: 89821 Summary: [all]Piglit report warn, but no warning in dmesg Product: piglit Version: unspecified Hardware: All OS: Linux (All) Status: NEW

[Piglit] [PATCH] arb_arrays_of_arrays: compile test basic types

2015-03-30 Thread Timothy Arceri
Test results: Nvidia GeForce 840M - NVIDIA 346.47: pass --- This is just /tests/spec/glsl-1.20/compiler/structure-and-array-operations/array-of-any-type.vert with an extra dimension added. .../compiler/arrays-of-any-type.vert | 44 ++ 1 file changed, 44

[Piglit] [PATCH] glsl-1.10: Add vec4 test for gl_FrontFacing ternary usage.

2015-03-30 Thread Tapani Pälli
Test try_opt_frontfacing_ternary optimization when type is vec4, this test fails with current Mesa HEAD (ce83a6e). Signed-off-by: Tapani Pälli tapani.pa...@intel.com --- ...rontfacing-ternary-vec4-neg-1.0-1.0.shader_test | 24 ++ 1 file changed, 24 insertions(+) create mode

Re: [Piglit] [PATCH] arb_arrays_of_arrays: compile test basic types

2015-03-30 Thread Martin Peres
On 30/03/15 10:29, Timothy Arceri wrote: Test results: Nvidia GeForce 840M - NVIDIA 346.47: pass --- This is just /tests/spec/glsl-1.20/compiler/structure-and-array-operations/array-of-any-type.vert with an extra dimension added. Do you have any other test that would cover more than just

Re: [Piglit] [PATCH 1/1] cl: Enable required extension before using double type

2015-03-30 Thread Tom Stellard
On Fri, Mar 27, 2015 at 07:36:26PM -0400, Jan Vesely wrote: Fixes failures on OCL-1.1 implementations that provide cl_khr_fp64 Signed-off-by: Jan Vesely jan.ves...@rutgers.edu Reviewed-by: Tom Stellard thomas.stell...@amd.com --- generated_tests/cl/store/store-kernels-global.inc | 4 ++--

Re: [Piglit] [PATCH] glsl-1.10: Add vec4 test for gl_FrontFacing ternary usage.

2015-03-30 Thread Matt Turner
Reviewed-by: Matt Turner matts...@gmail.com Are you planning to work on a i965 patch to fix this? (Did you hit this in a real application?) ___ Piglit mailing list Piglit@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/piglit

[Piglit] [Bug 89821] [all]Piglit report warn, but no warning in dmesg

2015-03-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=89821 Dylan baker.dyla...@gmail.com changed: What|Removed |Added Status|NEW |RESOLVED

[Piglit] [PATCH v2 2/8] tests/all.py: Remove duplicate arb_tessellation_shader_minmax entry

2015-03-30 Thread Dylan Baker
This test was added twice, remove the second copy. Signed-off-by: Dylan Baker dylanx.c.ba...@intel.com --- tests/all.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/all.py b/tests/all.py index cc8d037..5b9dd2f 100755 --- a/tests/all.py +++ b/tests/all.py @@ -1665,7 +1665,6 @@ with

[Piglit] [PATCH v2 3/8] tests/all.py: move arb_framebuffer-rgb tests out of loop

2015-03-30 Thread Dylan Baker
This doesn't actually effect the nature or number of tests run. Signed-off-by: Dylan Baker dylanx.c.ba...@intel.com --- tests/all.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/all.py b/tests/all.py index 5b9dd2f..4e17745 100755 --- a/tests/all.py +++

[Piglit] [PATCH v2 6/8] tests/all.py: Don't add glsl-1.50 TextureSize tests twice

2015-03-30 Thread Dylan Baker
Because gs is a 1.50 features, but is added in the 1.30 and 1.40 loops it currently adds the same tests twice. This corrects that. Signed-off-by: Dylan Baker dylanx.c.ba...@intel.com --- tests/all.py | 16 +++- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git

[Piglit] [PATCH v2 8/8] profile.py: Don't allow accidental reassignments of TestDict keys

2015-03-30 Thread Dylan Baker
A common error in all.py is that two different tests are assigned to the same key value in profile.test_list. This change prevents a key from being reassigned to a new value on accident, but provides a mechanism to allow reassignment, using a context manager. This allows tests like the

[Piglit] [PATCH v2 5/8] tests/all.py: remove duplicate oes_compressed_paletted test

2015-03-30 Thread Dylan Baker
Signed-off-by: Dylan Baker dylanx.c.ba...@intel.com --- tests/all.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/all.py b/tests/all.py index db289ff..46bb9c1 100755 --- a/tests/all.py +++ b/tests/all.py @@ -4074,7 +4074,6 @@ with profile.group_manager(

Re: [Piglit] Problem submitting patch through git send-email

2015-03-30 Thread Matt Turner
On Mon, Mar 30, 2015 at 12:36 PM, Guy-Daniel Tiku guydan...@gmail.com wrote: Hi, I've worked on an patch ans I've tried over and over to submit it through the git send-email command. In the meantime, I've attached the patch to this email. Can I get some help on how to fix this problem ?

[Piglit] V2: don't allow test re-assignment

2015-03-30 Thread Dylan Baker
This addresses Ilia's concerns with the v1. I didn't have any other feedback, and I'd like to land this soon. ___ Piglit mailing list Piglit@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/piglit

[Piglit] [PATCH v2 1/8] tests/all.py: fix two tests that had options dropped

2015-03-30 Thread Dylan Baker
I traced these two tests back and through a series of errors an option required to make them unique was dropped, this corrects that and brings them back to their original status. Signed-off-by: Dylan Baker dylanx.c.ba...@intel.com --- tests/all.py | 4 ++-- 1 file changed, 2 insertions(+), 2

Re: [Piglit] [PATCH v2 8/8] profile.py: Don't allow accidental reassignments of TestDict keys

2015-03-30 Thread Ilia Mirkin
Series is Reviewed-by: Ilia Mirkin imir...@alum.mit.edu Still unsure about whether the texture size stuff needs to be fixed up, but also can't bring myself to care about it. On Mon, Mar 30, 2015 at 2:54 PM, Dylan Baker baker.dyla...@gmail.com wrote: A common error in all.py is that two

[Piglit] [PATCH v2 4/8] tests/all.py: move arb_gpu_shader5 out of loop

2015-03-30 Thread Dylan Baker
Same as previous patch. Signed-off-by: Dylan Baker dylanx.c.ba...@intel.com --- tests/all.py | 36 ++-- 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/tests/all.py b/tests/all.py index 4e17745..db289ff 100755 --- a/tests/all.py +++ b/tests/all.py

[Piglit] Problem submitting patch through git send-email

2015-03-30 Thread Guy-Daniel Tiku
Hi, I've worked on an patch ans I've tried over and over to submit it through the git send-email command. In the meantime, I've attached the patch to this email. Can I get some help on how to fix this problem ? Best. Guy-Daniel. diff --git a/tests/bugs/CMakeLists.gl.txt

Re: [Piglit] [PATCH] arb_arrays_of_arrays: compile test basic types

2015-03-30 Thread Timothy Arceri
On Mon, 2015-03-30 at 10:51 +0300, Martin Peres wrote: On 30/03/15 10:29, Timothy Arceri wrote: Test results: Nvidia GeForce 840M - NVIDIA 346.47: pass --- This is just /tests/spec/glsl-1.20/compiler/structure-and-array-operations/array-of-any-type.vert with an extra dimension

[Piglit] [PATCH] Skip fp-indirections if the limits exposed are totally bogus.

2015-03-30 Thread Kenneth Graunke
Signed-off-by: Kenneth Graunke kenn...@whitecape.org --- tests/shaders/fp-indirections.c | 13 + 1 file changed, 13 insertions(+) It looks like people expose real values, 128 (Intel/Windows), 16384 (NVIDIA, i965, Gallium), 65536 (one NVIDIA card), and INT_MAX (AMD). So 10,000 is

Re: [Piglit] [PATCH] Skip fp-indirections if the limits exposed are totally bogus.

2015-03-30 Thread Matt Turner
Reviewed-by: Matt Turner matts...@gmail.com ___ Piglit mailing list Piglit@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/piglit

Re: [Piglit] [PATCH] glsl-1.10: Add vec4 test for gl_FrontFacing ternary usage.

2015-03-30 Thread Tapani Pälli
On 03/30/2015 08:41 PM, Matt Turner wrote: Reviewed-by: Matt Turner matts...@gmail.com Are you planning to work on a i965 patch to fix this? Yep, this is the plan. did not investigate closer yet though. (Did you hit this in a real application?) This is causing noise in some of the