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.master
parent
612e38bd29
commit
8a8e491258
|
@ -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 = "))
|
||||
|
|
Reference in New Issue