[Piglit] [Announce] Swineherd: A piglit test runner written in C++

2018-12-19 Thread Dylan Baker
Hi list, I've been off and on working on a new test runner for piglit written in C++14. Its been sitting on my gitlab publicly for a bit, and I've shared it with some people at Intel, but I thought I'd send out an announcement and see if I could get some more interest. It's called swineherd, and

[Piglit] [PATCH 1/3] arb_enhanced_layouts: Fix error in subtest result reporting

2018-12-19 Thread Antia Puentes
--- .../arb_enhanced_layouts/transform-feedback-layout-query-api.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/spec/arb_enhanced_layouts/transform-feedback-layout-query-api.c b/tests/spec/arb_enhanced_layouts/transform-feedback-layout-query-api.c index

[Piglit] [PATCH 3/3] arb_enhanced_layouts: don't call glLinkProgram twice

2018-12-19 Thread Antia Puentes
From: Alejandro Piñeiro GLSL codepath uses piglit_build_simple_program_multiple_shaders, that already calls glLinkProgram. Minor thing, but makes debug the test more easy. --- .../transform-feedback-layout-qualifiers.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)

[Piglit] [PATCH 0/3] Minor fixes in the enhanced_layouts XFB test

2018-12-19 Thread Antia Puentes
Alejandro Piñeiro (2): arb_enhanced_layouts: use consistent test names arb_enhanced_layouts: don't call glLinkProgram twice Antia Puentes (1): arb_enhanced_layouts: Fix error in subtest result reporting tests/opengl.py| 2 +-

[Piglit] [PATCH 2/3] arb_enhanced_layouts: use consistent test names

2018-12-19 Thread Antia Puentes
From: Alejandro Piñeiro Before this commit a piglit run like this: ./piglit run tests/all.py -t arb_enhanced_layouts-transform-feedback ../piglit_results/foo Would include the layout-qualifiers tests, but not the layout-query one. --- tests/opengl.py | 2 +- 1 file changed, 1 insertion(+),