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?'.
This commit is contained in:
parent
efb0a04ee0
commit
fa35a5f649
1 changed files with 6 additions and 0 deletions
|
@ -1061,6 +1061,12 @@ application suites.")
|
||||||
(substitute* "testsuite/reftests/Makefile.in"
|
(substitute* "testsuite/reftests/Makefile.in"
|
||||||
(("TEST_PROGS = gtk-reftest")
|
(("TEST_PROGS = gtk-reftest")
|
||||||
"TEST_PROGS = "))
|
"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))
|
#t))
|
||||||
(add-before 'check 'pre-check
|
(add-before 'check 'pre-check
|
||||||
(lambda _
|
(lambda _
|
||||||
|
|
Reference in a new issue