[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH] tests/qtest: Don't run the dbus-display-test without CONFIG_VGA_
From: |
Thomas Huth |
Subject: |
[PATCH] tests/qtest: Don't run the dbus-display-test without CONFIG_VGA_PCI |
Date: |
Mon, 19 Feb 2024 13:39:00 +0100 |
When compiling with "configure --without-default-devices", the
dbus-display-test fails since it implicitly assumes that the
machine comes with the standard VGA card. Thus add a check to
meson.build to disable the test if the VGA card is not available.
Signed-off-by: Thomas Huth <thuth@redhat.com>
---
tests/qtest/meson.build | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/qtest/meson.build b/tests/qtest/meson.build
index 2b89e8634b..c8e6d7df40 100644
--- a/tests/qtest/meson.build
+++ b/tests/qtest/meson.build
@@ -108,7 +108,7 @@ qtests_i386 = \
'numa-test'
]
-if dbus_display
+if dbus_display and config_all_devices.has_key('CONFIG_VGA_PCI')
qtests_i386 += ['dbus-display-test']
endif
--
2.43.2
- [PATCH] tests/qtest: Don't run the dbus-display-test without CONFIG_VGA_PCI,
Thomas Huth <=