Re: [Piglit] [PATCH 1/5] cl: Fix signed/unsigned comparison warnings

2014-12-11 Thread Tom Stellard
On Wed, Dec 03, 2014 at 03:53:28PM -0500, Jan Vesely wrote: > Signed-off-by: Jan Vesely > --- I've pushed patches 1,2,4,and 5. Thanks! -Tom > tests/cl/program/program-tester.c | 16 > 1 file changed, 8 insertions(+), 8 deletions(-) > > diff --git a/tests/cl/program/program-t

[Piglit] [PATCH 1/2] CMake: use cmake builtin python module

2014-12-11 Thread Dylan Baker
This removes a bunch of code that we rolled for finding python interpreters, and uses the cmake builtins. Signed-off-by: Dylan Baker --- CMakeLists.txt | 23 --- cmake/Modules/PiglitFindMako.cmake | 2 +- cmake/piglit_dispatch.cmake| 2 +- genera

[Piglit] [PATCH 2/2] cmake: Simplify finding python modules

2014-12-11 Thread Dylan Baker
This patch adds 3 files, PythonModule.cmake, FindPythonMako.cmake and FindPythonNumpy.cmake. PythonModule provides a simple function for running python and parsing the version strings, each FindPython*.cmake then just calls that function, and then calls the find_package_handle_standard_args macro

Re: [Piglit] [PATCH] cl: -cl-std=CL1.0 is not valid

2014-12-11 Thread Tom Stellard
On Wed, Dec 03, 2014 at 11:04:50PM +0100, EdB wrote: > By OpenCL 1.2 spec, -cl-std= should only be CL1.1 or CL1.2 > We were checking against the device version instead of the desired version > > Report by: yan.w...@linux.intel.com I've pushed this, thanks! -Tom > --- > tests/util/piglit-framew

Re: [Piglit] [PATCH] ARB_pipeline_statistics_query (comp): basic test

2014-12-11 Thread Ben Widawsky
On Thu, Dec 11, 2014 at 01:37:10PM -0800, Jordan Justen wrote: > Signed-off-by: Jordan Justen > Cc: Ben Widawsky > --- > Requires Ben's ARB_pipeline_statistics_query series. I'll just suck this in and push it with the rest, provided nobody has issues with it. > > tests/all.py

[Piglit] [PATCH] generated_tests: Except error for os.makedirs

2014-12-11 Thread Dylan Baker
Currently we check for the existence of a directory, and if it doesn't exist we create it. This would be fine, except that multiple generators can create the same directory trees. When os.makedirs tries to create a tree that already exists it raises and OSError exception, with the errno set to 17 (

[Piglit] [PATCH] ARB_pipeline_statistics_query (comp): basic test

2014-12-11 Thread Jordan Justen
Signed-off-by: Jordan Justen Cc: Ben Widawsky --- Requires Ben's ARB_pipeline_statistics_query series. tests/all.py | 2 + .../spec/arb_pipeline_statistics/CMakeLists.gl.txt | 2 + .../arb_pipeline_statistics/pipeline_stats_comp.c | 242 +++