guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch core-updates-frozen updated: gnu: gtk+: Conditionally disable the


From: guix-commits
Subject: branch core-updates-frozen updated: gnu: gtk+: Conditionally disable the tree-relationships test.
Date: Thu, 25 Nov 2021 14:20:30 -0500

This is an automated email from the git hooks/post-receive script.

apteryx pushed a commit to branch core-updates-frozen
in repository guix.

The following commit(s) were added to refs/heads/core-updates-frozen by this 
push:
     new 8a8e491  gnu: gtk+: Conditionally disable the tree-relationships test.
8a8e491 is described below

commit 8a8e491258adadcb6983a4051fa71e60c0dd7849
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Thu Nov 25 14:01:04 2021 -0500

    gnu: gtk+: Conditionally disable the tree-relationships test.
    
    * gnu/packages/gtk.scm (gtk+)[phases] {disable-failing-tests}: Disable the
    tree-relationships test on non-x86_64 targets.
---
 gnu/packages/gtk.scm | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm
index 042eb63..e8ac0b7 100644
--- a/gnu/packages/gtk.scm
+++ b/gnu/packages/gtk.scm
@@ -1053,7 +1053,11 @@ application suites.")
                      '()))
              (substitute* "testsuite/a11y/Makefile.in"
                (("accessibility-dump tree-performance text children derive")
-                "tree-performance text children derive"))
+                "tree-performance text children derive")
+               ,@(if (not (target-x86-64?))
+                     '((("value misc tree-relationships util")
+                        "value misc util"))
+                     '()))
              (substitute* "testsuite/reftests/Makefile.in"
                (("TEST_PROGS = gtk-reftest")
                 "TEST_PROGS = "))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]