blob: b5338f87ddee95643a73e95512f6af324ec6efaf (
plain)
1
2
3
4
5
6
7
8
|
"""A profile that runs only GLSLParserTest instances."""
from framework.test import GLSLParserTest
from tests.all import profile
__all__ = ['profile']
profile.filter_tests(lambda _, t: isinstance(t, GLSLParserTest))
|