blob: 5d0facbc290410e8dc70bf27f42c32c20a653d4f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
"""A profile that runs only GLSLParserTest instances."""
from __future__ import (
absolute_import, division, print_function, unicode_literals
)
from framework.test import GLSLParserTest
from tests.all import profile as _profile
__all__ = ['profile']
profile = _profile.copy() # pylint: disable=invalid-name
profile.filters.append(lambda _, t: isinstance(t, GLSLParserTest))
|