[Piglit] [PATCH] no-op-paths: Clear between each test.

2017-07-17 Thread Eric Anholt
This matches the behavior of the old glean test. Without it, the always-pass subtests would all pass if the first one had passed, and if a single always-fail subtest failed then the rest would also fail. --- tests/spec/gl-1.0/no-op-paths.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-)

Re: [Piglit] [PATCH] no-op-paths: Clear between each test.

2017-07-17 Thread Brian Paul
On 07/17/2017 11:12 AM, Eric Anholt wrote: This matches the behavior of the old glean test. Without it, the always-pass subtests would all pass if the first one had passed, and if a single always-fail subtest failed then the rest would also fail. --- tests/spec/gl-1.0/no-op-paths.c | 4 +++-

[Piglit] [PATCH] arb_provoking_vertex: fix quads-follow-provoking-vertex test

2017-07-17 Thread Brian Paul
Querying GL_QUADS_FOLLOW_PROVOKING_VERTEX_CONVENTION is illegal in GL 3.2 and later. Check the GL version to determine the expected error. Note that the test says config.supports_gl_core_version = 32. With NVIDIA's driver we get a 3.2 context but with Mesa we get a 3.3 context. --- .../arb_prov

Re: [Piglit] [PATCH] arb_provoking_vertex: fix quads-follow-provoking-vertex test

2017-07-17 Thread Neha Bhende
Looks great. Reviewed-by: Neha Bhende I suppose, we will also need similar fix in arb-provoking-vertex-render as well Regards, Neha From: Brian Paul Sent: Monday, July 17, 2017 11:28:54 AM To: piglit@lists.freedesktop.org Cc: Charmaine Lee; Neha Bhende; Bri

[Piglit] [PATCH 1/1] cl: Use required format for sampler test

2017-07-17 Thread Jan Vesely
CL_RGBA + CL_FLOAT is in minimal supported set. Fixes sampler test on beignet (IVB). Signed-off-by: Jan Vesely --- tests/cl/program/execute/sampler.cl | 18 +- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/tests/cl/program/execute/sampler.cl b/tests/cl/program/ex