From 24a8ef503308f97fa7cf9ea68768c364c2bb52bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20=C3=85dahl?= Date: Tue, 18 Jun 2024 16:07:57 +0200 Subject: [PATCH] build: Fix KVM tests summary It used the option, and ignored `have_tests`. Part-of: --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 9f18f33c1..76b7c9241 100644 --- a/meson.build +++ b/meson.build @@ -757,7 +757,7 @@ summary('Enabled', have_tests, section: 'Tests') summary('Core tests', have_core_tests, section: 'Tests') summary('Cogl tests', have_cogl_tests, section: 'Tests') summary('Clutter tests', have_clutter_tests, section: 'Tests') -summary('KVM tests', get_option('kvm_tests'), section: 'Tests') +summary('KVM tests', have_kvm_tests, section: 'Tests') summary('X11 backend', have_x11_tests, section: 'Tests') summary('Installed tests', have_installed_tests, section: 'Tests') summary('Coverage', get_option('b_coverage'), section: 'Tests')