[Piglit] [PATCH 2/4] all.py: fix ext_texture_array-compressed tests

Dylan Baker baker.dylan.c at gmail.com
Tue Apr 14 13:52:44 PDT 2015


These had a space in the first element that would result in a test
failure.

Signed-off-by: Dylan Baker <dylanx.c.baker at intel.com>
---
 tests/all.py | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/tests/all.py b/tests/all.py
index d3afdbe..a1d18d2 100755
--- a/tests/all.py
+++ b/tests/all.py
@@ -2946,9 +2946,8 @@ with profile.group_manager(
                  'stencil-draw', 'fs-writes-stencil'):
         g(['fbo-depth-array', test])
     for test_mode in ['teximage', 'texsubimage']:
-        test_name = 'compressed {0}'.format(test_mode, run_concurrent=False)
-        g(['ext_texture_array-{}'.format(test_name), '-fbo'], test_name,
-          run_concurrent=False)
+        g(['ext_texture_array-compressed', test_mode, '-fbo'],
+          'compressed {0}'.format(test_mode), run_concurrent=False)
 
 with profile.group_manager(
         PiglitGLTest,
-- 
2.3.5



More information about the Piglit mailing list