[PATCH] qemucapabilitiesdata: Enable GTK graphics for 'caps_10.0.0_x86_64'

Peter Krempa via Devel posted 1 patch 7 months, 3 weeks ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/libvirt tags/patchew/f789ed9a4bd765abecc4b8debc231bf304a2e101.1745843060.git.pkrempa@redhat.com
tests/qemucapabilitiesdata/caps_10.0.0_x86_64.replies | 8 ++++++++
1 file changed, 8 insertions(+)
[PATCH] qemucapabilitiesdata: Enable GTK graphics for 'caps_10.0.0_x86_64'
Posted by Peter Krempa via Devel 7 months, 3 weeks ago
From: Peter Krempa <pkrempa@redhat.com>

The common x86_64 test output was usually built without GTK as I've had
that in my build script for a long time. Enable it now as GTK UI is
enabled by many distros and upcoming patches plan to add support to
libvirt as well.

Signed-off-by: Peter Krempa <pkrempa@redhat.com>
---
 tests/qemucapabilitiesdata/caps_10.0.0_x86_64.replies | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/tests/qemucapabilitiesdata/caps_10.0.0_x86_64.replies b/tests/qemucapabilitiesdata/caps_10.0.0_x86_64.replies
index c2fd4f8d3d..6b2a2c2af7 100644
--- a/tests/qemucapabilitiesdata/caps_10.0.0_x86_64.replies
+++ b/tests/qemucapabilitiesdata/caps_10.0.0_x86_64.replies
@@ -5581,6 +5581,10 @@
       "name": "142",
       "tag": "type",
       "variants": [
+        {
+          "case": "gtk",
+          "type": "422"
+        },
         {
           "case": "curses",
           "type": "424"
@@ -13701,6 +13705,9 @@
         {
           "name": "none"
         },
+        {
+          "name": "gtk"
+        },
         {
           "name": "sdl"
         },
@@ -13721,6 +13728,7 @@
       "values": [
         "default",
         "none",
+        "gtk",
         "sdl",
         "egl-headless",
         "curses",
-- 
2.49.0
Re: [PATCH] qemucapabilitiesdata: Enable GTK graphics for 'caps_10.0.0_x86_64'
Posted by Pavel Hrdina via Devel 7 months, 3 weeks ago
On Mon, Apr 28, 2025 at 02:24:20PM +0200, Peter Krempa via Devel wrote:
> From: Peter Krempa <pkrempa@redhat.com>
> 
> The common x86_64 test output was usually built without GTK as I've had
> that in my build script for a long time. Enable it now as GTK UI is
> enabled by many distros and upcoming patches plan to add support to
> libvirt as well.
> 
> Signed-off-by: Peter Krempa <pkrempa@redhat.com>
> ---
>  tests/qemucapabilitiesdata/caps_10.0.0_x86_64.replies | 8 ++++++++
>  1 file changed, 8 insertions(+)

Reviewed-by: Pavel Hrdina <phrdina@redhat.com>