From 8a8e491258adadcb6983a4051fa71e60c0dd7849 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Thu, 25 Nov 2021 14:01:04 -0500 Subject: 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 042eb639c7..e8ac0b79bb 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 = ")) -- cgit v1.2.3