guix-commits
[Top][All Lists]
Advanced

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

01/02: gnu: gtk+: Skip test that requires SVG support on non-x86_64.


From: guix-commits
Subject: 01/02: gnu: gtk+: Skip test that requires SVG support on non-x86_64.
Date: Thu, 25 Nov 2021 17:18:27 -0500 (EST)

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

commit fa35a5f649518a5c3e41aec796ee9b6b852d93c0
Author: Ludovic Courtès <ludo@gnu.org>
AuthorDate: Thu Nov 25 21:43:32 2021 +0100

    gnu: gtk+: Skip test that requires SVG support on non-x86_64.
    
    * gnu/packages/gtk.scm (gtk+)[arguments]: In 'disable-failing-tests',
    skip 'tree-relationships' when not 'target-x86-64?'.
---
 gnu/packages/gtk.scm | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm
index e8ac0b7..e264166 100644
--- a/gnu/packages/gtk.scm
+++ b/gnu/packages/gtk.scm
@@ -1061,6 +1061,12 @@ application suites.")
              (substitute* "testsuite/reftests/Makefile.in"
                (("TEST_PROGS = gtk-reftest")
                 "TEST_PROGS = "))
+             ,@(if (target-x86-64?)
+                   '()
+                   ;; The 'tree-relationships' test needs SVG support.
+                   '((substitute* "testsuite/a11y/Makefile.in"
+                       (("misc tree-relationships util")
+                        "misc util"))))
              #t))
          (add-before 'check 'pre-check
            (lambda _



reply via email to

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