turnip: set the API version
authorJonathan Marek <jonathan@marek.ca>
Wed, 17 Jun 2020 13:57:56 +0000 (09:57 -0400)
committerMarge Bot <eric+marge@anholt.net>
Thu, 18 Jun 2020 09:54:48 +0000 (09:54 +0000)
Some CTS tests don't run because of this.

Fixes: 91c757b7963f458 ("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>

.gitlab-ci/deqp-freedreno-a630-fails.txt
.gitlab-ci/deqp-freedreno-a630-skips.txt
src/freedreno/vulkan/tu_extensions.py

index 6243f34cf7414481dbc7efda33cfad6fac8dbdd3..73d3b3c41af792f68ed200840d6feed5733f036c 100644 (file)
@@ -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
index 6007aeb4e20f9b488f9eea25457be11c632c1d9a..b4a473f8aea170b3ffb99bc46c97782ba530c1c1 100644 (file)
@@ -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
 #
index f19a8cbd90bd739a9ba660d3a0708d7b1263a718..7d5c3eacc808d57e88a6e72acc9b9c1ec423bc5a 100644 (file)
@@ -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()