From: Nanley Chery <[email protected]> Enable Piglit to report the result of each individual subtest for the array and miptree ASTC tests.
Cc: Mark Janes <[email protected]> Cc: Dylan Baker <[email protected]> Signed-off-by: Nanley Chery <[email protected]> --- 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 _______________________________________________ Piglit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/piglit
