[Piglit] [PATCH v2] arb_bindless_texture: Fix memory leaks.

2017-04-14 Thread Vinson Lee
CID: 1405026 Fixes: 66676a2fcd48 ("add API-related tests for ARB_bindless_texture") Signed-off-by: Vinson Lee --- tests/spec/arb_bindless_texture/legal.c | 8 +--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/tests/spec/arb_bindless_texture/legal.c

Re: [Piglit] [PATCH] framework: change one missed core.checkDir call to core.check_dir

2017-04-14 Thread Dylan Baker
Quoting Petri Latvala (2017-04-13 03:06:38) > Commit 5e699e402a8b ("framework: rename core.checkDir to > core.check_dir") missed one call to checkDir in summary/feature. > > Signed-off-by: Petri Latvala > --- > > Does this also need exception handling changes like was

[Piglit] [PATCH] crucible: Convert from glslc to glslang

2017-04-14 Thread Jordan Justen
This essentially reverts b5a52577781ff191766f49866ce00af749cb86b7, but it seems that glslangValidator has since become a little more friendly. Additionally, I used python tempfile module to simplify creating tempfiles with the required extensions. One reason to revert to using glslangValidator is

Re: [Piglit] Windows builds w/ Appveyor

2017-04-14 Thread Dylan Baker
Honestly you (VMWare) and Redhat are the last two groups that I knew of that care about python2 support (I haven't checked for a while obviously). If neither of you feel it's important I'd prefer to actually rip it out and just support python3 since that would simplify piglit and remove

[Piglit] [PATCH 1/1] cl: Add array of structures to program-scope-arrays test

2017-04-14 Thread Jan Vesely
Signed-off-by: Jan Vesely --- tests/cl/program/execute/program-scope-arrays.cl | 60 1 file changed, 60 insertions(+) diff --git a/tests/cl/program/execute/program-scope-arrays.cl b/tests/cl/program/execute/program-scope-arrays.cl index

[Piglit] [PATCH 1/1] cl: Add input dependent test for global_offset

2017-04-14 Thread Jan Vesely
Signed-off-by: Jan Vesely --- tests/cl/program/execute/global-offset.cl | 18 ++ 1 file changed, 18 insertions(+) diff --git a/tests/cl/program/execute/global-offset.cl b/tests/cl/program/execute/global-offset.cl index c75f2b3..da78d2b 100644 ---

[Piglit] [Bug 100683] New: when entering LOGIN Button is not, it is again asking foe username and password

2017-04-14 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=100683 Bug ID: 100683 Summary: when entering LOGIN Button is not, it is again asking foe username and password Product: piglit Version: unspecified Hardware: x86-64 (AMD64)

Re: [Piglit] [PATCH] gl-1.4: test some glMultiDrawArrays error conditions

2017-04-14 Thread Samuel Pitoiset
On 04/13/2017 09:38 PM, Nicolai Hähnle wrote: From: Nicolai Hähnle --- tests/all.py | 1 + tests/spec/gl-1.4/CMakeLists.gl.txt| 1 + tests/spec/gl-1.4/multidrawarrays-errors.c | 114 + 3 files

Re: [Piglit] [PATCH] Cmake: install comp shaders that are not generated

2017-04-14 Thread Samuel Pitoiset
Reviewed-by: Samuel Pitoiset On 04/13/2017 08:46 PM, Dylan Baker wrote: Signed-off-by: Dylan Baker --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index

[Piglit] [PATCH 2/3] glx-oml-sync-control-timing: Refactor helper functions for swap / wait

2017-04-14 Thread Michel Dänzer
From: Michel Dänzer Preparation for the following fix, no functional change intended. Signed-off-by: Michel Dänzer --- tests/spec/glx_oml_sync_control/timing.c | 83 1 file changed, 51 insertions(+), 32

[Piglit] [PATCH 0/3] glx-oml-sync-control-timing fixes

2017-04-14 Thread Michel Dänzer
From: Michel Dänzer Patch 1 fixes an error message typo I noticed along the way. Patches 2 & 3 allow the glx-oml-sync-control-timing tests to consistently pass for me, at least if the system isn't otherwise loaded. Before, they would randomly generate warnings even in

[Piglit] [PATCH 3/3] glx-oml-sync-control-timing: Perform warm-up swap / wait before loop

2017-04-14 Thread Michel Dänzer
From: Michel Dänzer Without this, the first iteration of the loop can start at any point of the display refresh cycle. If it's close to the next vertical blank period, it may be too late for the swap / wait to hit the target MSC, which would result in at least a warning.

[Piglit] [PATCH 1/3] glx-oml-sync-control-timing: Fix error message if glXWaitForMscOML fails

2017-04-14 Thread Michel Dänzer
From: Michel Dänzer It said "glXWaitForSbcOML failed", which could be confusing. Signed-off-by: Michel Dänzer --- tests/spec/glx_oml_sync_control/timing.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git