[Piglit] [PATCH 3/4] all.py: fix arb_geometry_shader4-program-parameter-vertices-out tests
Dylan Baker
baker.dylan.c at gmail.com
Tue Apr 14 13:52:45 PDT 2015
These had a space in them.
Signed-off-by: Dylan Baker <dylanx.c.baker at intel.com>
---
tests/all.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/tests/all.py b/tests/all.py
index a1d18d2..3612de8 100755
--- a/tests/all.py
+++ b/tests/all.py
@@ -4000,8 +4000,8 @@ with profile.group_manager(
'GL_TRIANGLES_ADJACENCY', 'GL_TRIANGLE_STRIP_ADJACENCY']:
g(['arb_geometry_shader4-ignore-adjacent-vertices', draw, prim])
- for mode in ['1', 'tf 1', 'max', 'tf max']:
- g(['arb_geometry_shader4-program-parameter-vertices-out', mode])
+ for mode in [['1'], ['tf', '1'], ['max'], ['tf', 'max']]:
+ g(['arb_geometry_shader4-program-parameter-vertices-out'] + mode)
with profile.group_manager(
PiglitGLTest,
--
2.3.5
More information about the Piglit
mailing list