mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-04 05:28:05 +02:00
turnip: set the API version
Some CTS tests don't run because of this.
Fixes: 91c757b796 ("turnip: use the common code for generating extensions and dispatch tables")
Signed-off-by: Jonathan Marek <jonathan@marek.ca>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5522>
This commit is contained in:
parent
fa149b996d
commit
c95b250a4c
3 changed files with 7 additions and 1 deletions
|
|
@ -13,6 +13,9 @@ dEQP-VK.renderpass.dedicated_allocation.formats.d24_unorm_s8_uint.input.load.don
|
|||
dEQP-VK.renderpass.suballocation.formats.d24_unorm_s8_uint.input.clear.dont_care.draw
|
||||
dEQP-VK.renderpass.suballocation.formats.d24_unorm_s8_uint.input.dont_care.dont_care.clear_draw
|
||||
dEQP-VK.renderpass.suballocation.formats.d24_unorm_s8_uint.input.load.dont_care.clear_draw_use_input_aspect_stencil_read_only
|
||||
dEQP-VK.spirv_assembly.instruction.compute.float_controls.fp32.input_args.denorm_fma_inf_preserve
|
||||
dEQP-VK.subgroups.basic.framebuffer.subgroupmemorybarrierbuffer_vertex
|
||||
dEQP-VK.subgroups.quad.framebuffer.subgroupquadbroadcast_bvec2_geometry
|
||||
dEQP-VK.synchronization.signal_order.shared_binary_semaphore.write_blit_image_read_blit_image.image_128_r32_uint_opaque_fd
|
||||
dEQP-VK.synchronization.signal_order.shared_binary_semaphore.write_blit_image_read_image_compute_indirect.image_128x128_r8_unorm_opaque_fd
|
||||
dEQP-VK.synchronization.signal_order.shared_binary_semaphore.write_copy_buffer_read_ssbo_fragment.buffer_262144_opaque_fd
|
||||
|
|
|
|||
|
|
@ -65,6 +65,9 @@ dEQP-GLES3.functional.transform_feedback.array_element.separate.triangles.lowp_m
|
|||
# Non-sysmem flakes
|
||||
dEQP-VK.pipeline.spec_constant.compute.composite.matrix.mat3x2
|
||||
|
||||
# Fails NIR_VALIDATE so probably flaky
|
||||
dEQP-VK.memory_model.write_after_read.core11.u32.coherent.fence_fence.atomicwrite.workgroup.payload_nonlocal.workgroup.guard_local.buffer.comp
|
||||
|
||||
# Sysmem flake: this one is fairly frequent, but if you enable it then
|
||||
# it moves to dEQP-VK.renderpass.dedicated_allocation.attachment.3.393
|
||||
#
|
||||
|
|
|
|||
|
|
@ -82,7 +82,7 @@ EXTENSIONS = [
|
|||
]
|
||||
|
||||
MAX_API_VERSION = VkVersion(MAX_API_VERSION)
|
||||
API_VERSIONS = []
|
||||
API_VERSIONS = [ ApiVersion(MAX_API_VERSION, True) ]
|
||||
|
||||
if __name__ == '__main__':
|
||||
parser = argparse.ArgumentParser()
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue