* gl/frameworks: Use piglit_set_destroy_func() when gl_fw->destroy is set * arb_framebuffer_object: add missing MSAA alpha-to-coverage and alpha-to-one tests * ARB_ubo/referenced-by-shader: pass if shader compiler moves UBOs between shaders * glsl: test loop unroll with uint overflow * glsl-1.30: add more loop unroll tests * glsl-1.10: test mesa bug conflict between globals * ext_image_dma_buf_import-export-tex: fix multi plane export * tests: add ext_image_dma_buf_import-tex-modifier * glsl-1.10: test mesa bug with forward declaration OBS-URL: https://build.opensuse.org/package/show/benchmark/piglit?expand=0&rev=61
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)
|