guix_mirror_bot pushed a commit to branch gnome-team
in repository guix.

commit 79cd8ab4f3cf2ef3c47b6b6f379cf284b23df17f
Author: Maxim Cournoyer <[email protected]>
AuthorDate: Mon Aug 3 15:14:58 2026 +0900

    gnu: qtdeclarative: Skip a few slow tests.
    
    * gnu/packages/qt.scm (qtdeclarative) [#:phases] {check}: Skip the
    tst_qquickpopup, tst_qquickmenu, tst_qquickdrawer and tst_fluentwinui3 
tests.
---
 gnu/packages/qt.scm | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/qt.scm b/gnu/packages/qt.scm
index 263445f4b1..c62cad600b 100644
--- a/gnu/packages/qt.scm
+++ b/gnu/packages/qt.scm
@@ -1932,7 +1932,15 @@ with JavaScript and C++.")))
                     ;; This test fails starting with 6.6.3 (see:
                     ;; https://bugreports.qt.io/browse/QTBUG-123748), for
                     ;; unknown reasons.
-                    "tst_qquickiconimage") "|")
+                    "tst_qquickiconimage"
+
+                    ;; These tests are slow (> 2 minutes) skip them (see:
+                    ;; <https://qt-project.atlassian.net/browse/QTBUG-148724>).
+                    "tst_qquickpopup"
+                    "tst_qquickmenu"
+                    "tst_qquickdrawer"
+                    "tst_fluentwinui3")
+                   "|")
                   ")")))))
           (add-after 'install 'delete-installed-tests
             (lambda _

Reply via email to