me
/
guix
Archived
1
0
Fork 0

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
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
1 changed files with 5 additions and 1 deletions

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