forked from pool/piglit
20 lines
517 B
Python
20 lines
517 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
# quick.tests minus tests that are known to fail
|
||
|
|
||
|
from __future__ import (
|
||
|
absolute_import, division, print_function, unicode_literals
|
||
|
)
|
||
|
|
||
|
from tests.quick import profile as _profile
|
||
|
from framework.test import GLSLParserTest
|
||
|
|
||
|
__all__ = ['profile']
|
||
|
|
||
|
profile = _profile.copy() # pylint: disable=invalid-name
|
||
|
|
||
|
with open("/usr/lib64/piglit/tests/suse_qa-skip-tests.txt") as f:
|
||
|
to_skip = frozenset(map(lambda line: line[:-1], f))
|
||
|
|
||
|
profile.filters.append(lambda p, _: p not in to_skip)
|