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.
This commit is contained in:
Maxim Cournoyer 2021-11-25 14:01:04 -05:00
parent 612e38bd29
commit 8a8e491258
No known key found for this signature in database
GPG Key ID: 1260E46482E63562

View File

@ -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 = "))