From 22debc9b6544c483057235b8cd82b71405f2d198 Mon Sep 17 00:00:00 2001 From: Eric Engestrom Date: Thu, 19 Jun 2025 14:21:04 +0200 Subject: [PATCH] hasvk: only run tests on x86 (32 & 64 bit) Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/13305 Cc: mesa-stable Part-of: (cherry picked from commit 6addaca3d494bbccb27b5d179018ae2de243e73a) --- .pick_status.json | 2 +- src/intel/vulkan_hasvk/meson.build | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.pick_status.json b/.pick_status.json index bbc51c2c0a6..9266579c35b 100644 --- a/.pick_status.json +++ b/.pick_status.json @@ -6654,7 +6654,7 @@ "description": "hasvk: only run tests on x86 (32 & 64 bit)", "nominated": true, "nomination_type": 1, - "resolution": 0, + "resolution": 1, "main_sha": null, "because_sha": null, "notes": null diff --git a/src/intel/vulkan_hasvk/meson.build b/src/intel/vulkan_hasvk/meson.build index 5b46c44a9db..01a0762be1d 100644 --- a/src/intel/vulkan_hasvk/meson.build +++ b/src/intel/vulkan_hasvk/meson.build @@ -206,7 +206,8 @@ if with_symbols_check ) endif -if with_tests +# HasVK and its tests can only run on x86 +if with_tests and host_machine.cpu_family().startswith('x86') libvulkan_intel_hasvk_test = static_library( 'vulkan_intel_hasvk_test', [files('anv_gem_stubs.c'), anv_hasvk_entrypoints[0]],