forked from pool/piglit
030594e652
* arb_bindless_texture: add basic function param bindless tests * generated_tests: fix numpy overflow warnings that are errors in numpy 2.0 * generated_tests: print mako exceptions * arb_texture_buffer_object: don't leak src strings * gl-1.0: Add a test for glPushAttrib/glPopAttrib * ext_texture_format_bgra8888: test GL_BGRA8_EXT as well * perf: port glsl-compile-time perf-test from mesa demos * perf: port vertexrate perf-test from mesa demos * perf: port vbo perf-test from mesa demos * perf: port teximage perf-test from mesa demos OBS-URL: https://build.opensuse.org/package/show/benchmark/piglit?expand=0&rev=55
19 lines
462 B
Python
19 lines
462 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 framework.profile import load_test_profile
|
|
|
|
__all__ = ['profile']
|
|
|
|
profile = load_test_profile('quick')
|
|
|
|
with open("/usr/lib64/piglit/tests/opensuse_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)
|