blob: d3f9f886d8dec7ca2d010c6f52a4c9a841e434ca (
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
25
26
|
"""Profile that removes all GPU based tests.
This profile is the inverse of gpu.py.
It runs GLSLParserTests, asmparsertests, and ARB_vertex_program and
ARB_fragment_program tests only.
Using driver specific overrides these can be forced to run on arbitrary
hardware.
"""
from tests.quick import profile
from framework.test import GLSLParserTest
__all__ = ['profile']
def filter_gpu(name, test):
"""Remove all tests that are run on the GPU."""
if isinstance(test, GLSLParserTest) or name.startswith('asmparsertest'):
return True
return False
profile.filter_tests(filter_gpu)
|