[Piglit] [PATCH] summary: fix processing of incomplete results in csv output

2015-06-29 Thread Thomas Wood
Incomplete results do not include a time or return code, so use a blank string as the default value for these keys. Signed-off-by: Thomas Wood thomas.w...@intel.com --- framework/programs/summary.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git

Re: [Piglit] [PATCH] arb_program_interface_query: update and fix arrays of arrays tests

2015-06-29 Thread Tapani Pälli
On 06/27/2015 02:14 AM, Timothy Arceri wrote: Add a 3D array test and fix the expected result for an array without a subscript attached to the name. The arb_program_interface_query spec says: If name exactly matches the name string of one of the active resources for programInterface, the

[Piglit] [PATCH 2/2] arb_gpu_shader5: Fix rounding instability in UBO and sampler indexing vs-nonuniform-control-flow tests.

2015-06-29 Thread Francisco Jerez
Fixes a rounding instability that would cause shader_runner to probe pixels offset by one for some points close to the right edge of the window on systems using x87 floating point arithmetic with certain compiler versions (the test seemed to work fine when built with GCC v5.1.0, but failed on some

Re: [Piglit] [PATCH] EXT_framebuffer_multisample: Fix many tests with MAX_DRAW_BUFFERS 0.

2015-06-29 Thread Anuj Phogat
On Tue, Jun 23, 2015 at 12:49 PM, Eric Anholt e...@anholt.net wrote: We've got a bunch of tests that only attach a single color attachment, but we were building the shader to always output 2/3 colors, which would fail on an implementation that didn't support that many draw buffers. ---

Re: [Piglit] [PATCH v3 3/3] framework: add support for bz2 compression.

2015-06-29 Thread Dylan Baker
On Mon, Jun 29, 2015 at 07:51:27PM -0400, Ilia Mirkin wrote: On Mon, Jun 29, 2015 at 7:50 PM, Dylan Baker baker.dyla...@gmail.com wrote: On Mon, Jun 29, 2015 at 07:34:46PM -0400, Ilia Mirkin wrote: Seems easy enough to just add a generic run shell command X compressor/decompressor... I

[Piglit] [PATCH 1/2] arb_gpu_shader5: Reorder probes in UBO and sampler indexing vs-nonuniform-control-flow tests.

2015-06-29 Thread Francisco Jerez
So that the ordering of pixel probes matches the ordering of vertex arrays. This should make the next commit easier to review. --- .../vs-nonuniform-control-flow.shader_test | 42 +++--- .../vs-nonuniform-control-flow.shader_test | 42 +++--- 2

[Piglit] [Bug 91151] New: [bisected] spec.ext_framebuffer_multisample.alpha-to-coverage-dual-src-blend fails

2015-06-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=91151 Bug ID: 91151 Summary: [bisected] spec.ext_framebuffer_multisample.alpha-to-coverage-dua l-src-blend fails Product: piglit Version: unspecified

[Piglit] [PATCH] ext_framebuffer_multisample: Fix dual source blending tests

2015-06-29 Thread Anuj Phogat
alpha-to-coverage-dual-src-blend tests were broken after commit 44456ba. This patch fixes the tests by allowing frag_out_1 for dual-src-blend tests even with NUM_ATTACHMENTS == 1. In case of dual source blending both frag_out_0 and frag_out_1 go to color buffer 0 with color index 0 and 1

Re: [Piglit] [PATCH] summary: fix processing of incomplete results in csv output

2015-06-29 Thread Dylan Baker
Reviewed-by: Dylan Baker baker.dyla...@gmail.com On Mon, Jun 29, 2015 at 01:40:56PM +0100, Thomas Wood wrote: Incomplete results do not include a time or return code, so use a blank string as the default value for these keys. Signed-off-by: Thomas Wood thomas.w...@intel.com ---

Re: [Piglit] [PATCH v3 3/3] framework: add support for bz2 compression.

2015-06-29 Thread Ilia Mirkin
Seems easy enough to just add a generic run shell command X compressor/decompressor... I always xz -9 piglit files, it gets *great* compression. On Mon, Jun 29, 2015 at 7:27 PM, Dylan Baker baker.dyla...@gmail.com wrote: This adds bzip2 compression support to piglit. This produces a file that

Re: [Piglit] [PATCH v3 3/3] framework: add support for bz2 compression.

2015-06-29 Thread Ilia Mirkin
On Mon, Jun 29, 2015 at 7:50 PM, Dylan Baker baker.dyla...@gmail.com wrote: On Mon, Jun 29, 2015 at 07:34:46PM -0400, Ilia Mirkin wrote: Seems easy enough to just add a generic run shell command X compressor/decompressor... I always xz -9 piglit files, it gets *great* compression. Well, if

[Piglit] [PATCH v3 2/3] framework: add support for gzip compressionn

2015-06-29 Thread Dylan Baker
This adds support to compress results with gzip compression. This reduces the size of json results significantly (from 21M to 1.6M when running the quick profile (which is about 7% of the uncompressed size). Signed-off-by: Dylan Baker dylanx.c.ba...@intel.com ---

[Piglit] [PATCH v3 0/3] Add compression support for piglit backends

2015-06-29 Thread Dylan Baker
This series implements a framework for compressing results in piglit. The design is such that compression only happens at the end, when writing the final muxed file. This framework makes it easy for a backend to implement support for compression, and makes it easy to add additional compression

[Piglit] [PATCH v3 3/3] framework: add support for bz2 compression.

2015-06-29 Thread Dylan Baker
This adds bzip2 compression support to piglit. This produces a file that is ~5% the size of the original uncompressed json file. Signed-off-by: Dylan Baker dylanx.c.ba...@intel.com --- framework/backends/compression.py | 9 +++-- framework/tests/compressed_backend_tests.py | 11

[Piglit] [PATCH v3 1/3] framework: Add ability to set a compression method on file backends

2015-06-29 Thread Dylan Baker
This creates a framework for compressing results as part of the FileBackend class. This allows for the simple addition of compression formats (gz is easily possible in python2, xz in python3), but does not actually implement any compression. zip and bz2 compression are also possible, although

[Piglit] [PATCH] arb_gpu_shader_fp64: add some tests for indirect double accesses

2015-06-29 Thread Dave Airlie
From: Dave Airlie airl...@redhat.com while developing for llvmpipe, I realised we weren't testing indirect access to double arrays, so I wrote some tests. double array temp src double array temp dst double array constant src. Signed-off-by: Dave Airlie airl...@redhat.com ---

Re: [Piglit] [PATCH] ext_framebuffer_multisample: Fix dual source blending tests

2015-06-29 Thread Eric Anholt
Anuj Phogat anuj.pho...@gmail.com writes: alpha-to-coverage-dual-src-blend tests were broken after commit 44456ba. This patch fixes the tests by allowing frag_out_1 for dual-src-blend tests even with NUM_ATTACHMENTS == 1. In case of dual source blending both frag_out_0 and frag_out_1 go to

Re: [Piglit] [PATCH v3 3/3] framework: add support for bz2 compression.

2015-06-29 Thread Dylan Baker
On Mon, Jun 29, 2015 at 07:34:46PM -0400, Ilia Mirkin wrote: Seems easy enough to just add a generic run shell command X compressor/decompressor... I always xz -9 piglit files, it gets *great* compression. Well, if xz was supported in python2 I wouldn't have bothered with either gzip or bz2,

[Piglit] [Bug 91151] [bisected] spec.ext_framebuffer_multisample.alpha-to-coverage-dual-src-blend fails

2015-06-29 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=91151 Mark Janes mark.a.ja...@intel.com changed: What|Removed |Added Status|NEW |RESOLVED