piglit/suse_qa.py
Martin Pluskal 0c4604180f - Update to version 1~20250217:
* arb_direct_state_access: disable dithering
  * arb_program_interface_query: set vs_input2[1][0] as valid name
  * perf/pixel-rate: new pixel throughput microbenchmark
  * OVR_multiview: another num_views validation test
  * glx: don't fail test if the X server is inconsistent
  * ovr_multiview: add some basic glsl tests
  * arb_clear_texture: use floating point verification for format type GL_FLOAT
  * glx: don't expect a glx error

OBS-URL: https://build.opensuse.org/package/show/benchmark/piglit?expand=0&rev=63
2025-02-19 08:39:57 +00:00

19 lines
458 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/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)