Re: [Piglit] [PATCH] oclconform: Fix PEP 8 issues.

2015-11-16 Thread Dylan Baker
On Sat, Nov 14, 2015 at 11:20:33PM -0800, Vinson Lee wrote: > Signed-off-by: Vinson Lee > --- > framework/test/oclconform.py | 39 +-- > 1 file changed, 25 insertions(+), 14 deletions(-) > > diff --git a/framework/test/oclconform.py

Re: [Piglit] [PATCH v2 0/3] Fix glslparsertest python version handling

2015-11-16 Thread Dylan Baker
On Mon, Nov 16, 2015 at 05:27:30PM -0800, baker.dyla...@gmail.com wrote: > From: Dylan Baker > > This fixes the way that glslparsertest in the python layer handles > versions. > > Specifically with this series: > - the python layer makes smarter decisions about using

[Piglit] [PATCH v2 3/3] framework/test/glsl_parser_test.py: allow forcing the desktop version

2015-11-16 Thread baker . dylan . c
From: Dylan Baker This adds a new environment variable, PIGLIT_FORCE_GLSLPARSER_DESKTOP, which forces glsl_parser_test.py to use "glslparsertest" for GLES tests (instead of "glslparsertest_gles2"). This could be used to force testing ES__compatibility extensions even

[Piglit] [PATCH v2 2/3] framework/test/glsl_parser_test.py: Handle gl versions correctly

2015-11-16 Thread baker . dylan . c
From: Dylan Baker This patch fixes the behavior of glsl_parser_test in cases other that OpenGL and OpenGL ES are available. This means that if OpenGL ES isn't available then OpenGL ES shaders will be passed to the regular version of glslparsertest, which can run them

[Piglit] [PATCH v2 1/3] glsl_parser_test.py: Fix which versions are sent to glslparsertest_gles2

2015-11-16 Thread baker . dylan . c
From: Dylan Baker There are two versions of glslparsertest, an undecorated one for desktop OpenGL, and a '_gles2' suffixed one for OpenGL ES. Piglit should pass 3.1 and 3.2 to the '_gles2' version like it does for GLES 2 and GLES 3.0 This also extends the test generator

[Piglit] [PATCH v2 0/3] Fix glslparsertest python version handling

2015-11-16 Thread baker . dylan . c
From: Dylan Baker This fixes the way that glslparsertest in the python layer handles versions. Specifically with this series: - the python layer makes smarter decisions about using glslparsertest or glslparsertest_gles2, especially in cases where only one has been

[Piglit] [PATCH] arb_gpu_shader_fp64: Silence Coverity uninitialized variable defects.

2015-11-16 Thread Vinson Lee
Coverity does not the parse the shader and cannot determine all cases are being handled. Fixes Coverity "uninitialized scalar variable" defects. Signed-off-by: Vinson Lee --- tests/spec/arb_gpu_shader_fp64/execution/getuniformdv.c | 4 1 file changed, 4 insertions(+)

[Piglit] [PATCH] cl-api-enqueue-fill-image: Fix memory leaks.

2015-11-16 Thread Vinson Lee
Fixes Coverity "resource leak" defects. Signed-off-by: Vinson Lee --- tests/cl/api/enqueue-fill-image.c | 4 1 file changed, 4 insertions(+) diff --git a/tests/cl/api/enqueue-fill-image.c b/tests/cl/api/enqueue-fill-image.c index ebcfba4..994ccb4 100644 ---