[Piglit] [PATCH] khr_texture_compression_astc: Enable subtest reports

Nanley Chery nanleychery at gmail.com
Tue Oct 27 11:59:17 PDT 2015


From: Nanley Chery <nanley.g.chery at intel.com>

Enable Piglit to report the result of each individual subtest
for the array and miptree ASTC tests.

Cc: Mark Janes <mark.a.janes at intel.com>
Cc: Dylan Baker <baker.dylan.c at gmail.com>
Signed-off-by: Nanley Chery <nanley.g.chery at intel.com>
---
 tests/all.py | 12 ++++++++----
 1 file changed, 8 insertions(+), 4 deletions(-)

diff --git a/tests/all.py b/tests/all.py
index 82e6311..b06ee2e 100644
--- a/tests/all.py
+++ b/tests/all.py
@@ -4182,12 +4182,16 @@ with profile.group_manager(
          PiglitGLTest,
          grouptools.join('spec', 'khr_texture_compression_astc')) as g:
     g(['arb_texture_compression-invalid-formats', 'astc'], 'invalid formats')
-    g(['khr_compressed_astc-array_gl'], 'array-gl')
-    g(['khr_compressed_astc-array_gles3'], 'array-gles')
     g(['khr_compressed_astc-basic_gl'], 'basic-gl')
     g(['khr_compressed_astc-basic_gles2'], 'basic-gles')
-    g(['khr_compressed_astc-miptree_gl'], 'miptree-gl')
-    g(['khr_compressed_astc-miptree_gles2'], 'miptree-gles')
+
+    for subtest in ('odd', 'even'):
+        g(['khr_compressed_astc-array_gl', subtest])
+        g(['khr_compressed_astc-array_gles3', subtest])
+
+    for subtest in ('ldr', 'srgb', 'hdr'):
+        g(['khr_compressed_astc-miptree_gl', subtest])
+        g(['khr_compressed_astc-miptree_gles2', subtest])
 
 with profile.group_manager(
          PiglitGLTest,
-- 
2.6.1



More information about the Piglit mailing list