blob: ac1b6361db90f80ac6c1a2877dd69cb79369f7d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# All GLESv2 tests that come with piglit, using default settings
from framework.core import *
from framework.exectest import *
######
# Collecting all tests
profile = TestProfile()
spec = Group()
# Group ext_unpack_subimage
ext_unpack_subimage = Group()
spec['EXT_unpack_subimage'] = ext_unpack_subimage
ext_unpack_subimage['basic'] = PlainExecTest(['ext_unpack_subimage', '-auto'])
ext_unpack_subimage['basic'].runConcurrent = True
oes_compressed_etc1_rgb8_texture = Group()
spec['OES_compressed_ETC1_RGB8_texture'] = oes_compressed_etc1_rgb8_texture
oes_compressed_etc1_rgb8_texture['miptree'] = PlainExecTest(['oes_compressed_etc1_rgb8_texture-miptree', '-auto'])
profile.tests['spec'] = spec
|