32c7b8950a
* enqueue-fill-buffer: fill whole buffer with zeroes * enqueue-fill-buffer: improve array formatting * s3tc: require float-texture support * piglit-util: Add a sanity check for subtests * glsl: update recently added implicit matching test * glsl: test function overload resolution * glsl: check for implicit conversion error in glsl 1.10 * Reapply "arb_bindless_texture: add another function param bindless test" * write-after-clear: Add testcases with the zero values * Python: Drop Python 3.7 support * Python: Test both 1.x and 2.x of NumPy * generators: Support NumPy 2.x * Python: Support Python 3.12 for tox * tests/replayer: Use correct Path.exists() check * Python: Lock numpy to 1.x * fbo-blending-formats: skip unsupported formats * traces: Lock pixelmatch version to pre-ES6 * arb_bindless_texture: test image/sampler constructors * Revert "arb_bindless_texture: add another function param bindless test" * arb_gpu_shader5: add linker version of function overloads test * arb_bindless_texture: add another function param bindless test * glsl: test function linking with implicit param conversions - Update to version 1~20240729: * 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 OBS-URL: https://build.opensuse.org/package/show/benchmark/piglit?expand=0&rev=57
19 lines
458 B
Python
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)
|