blob: 60442a2a4552785a24623f3a7487b5865df865e0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
"""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
__all__ = ['profile']
profile.filter_tests(lambda _, t: isinstance(t, GLSLParserTest))
|