From a729b0ebaaaf20a5f0228927fea861dbaeb4edd9 Mon Sep 17 00:00:00 2001 From: Samuel Pitoiset Date: Wed, 19 Nov 2025 16:05:15 +0100 Subject: [PATCH] meson: require drm-shim for ACO tests Signed-off-by: Samuel Pitoiset Part-of: --- meson.build | 3 +++ 1 file changed, 3 insertions(+) diff --git a/meson.build b/meson.build index 8fbc3fcd44a..a64d518bd4b 100644 --- a/meson.build +++ b/meson.build @@ -375,6 +375,9 @@ endif if with_aco_tests and not with_amd_vk error('ACO tests require Radv') endif +if with_aco_tests and not with_tools.contains('drm-shim') + error('ACO tests require AMDGPU drm-shim') +endif if with_radv_tests and not with_amd_vk error('RADV tests require RADV') endif