mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 13:58:15 -05:00
gnu: maliit-framework: Disable two mimpluginmanager tests.
* gnu/packages/freedesktop.scm (maliit-framework) [arguments]: Override the check phase to disable the ft_mimpluginmanager and ut_mimpluginmanager tests.
This commit is contained in:
parent
9c2b2a0105
commit
8d6838dfcd
1 changed files with 14 additions and 0 deletions
|
@ -406,6 +406,20 @@ (define-public maliit-framework
|
||||||
(base32
|
(base32
|
||||||
"1dkjxvfxg56hfy70j6ibfklfyv57jiha4vgc3ggl60r5kjx65s5b"))))
|
"1dkjxvfxg56hfy70j6ibfklfyv57jiha4vgc3ggl60r5kjx65s5b"))))
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:phases
|
||||||
|
#~(modify-phases %standard-phases
|
||||||
|
(replace 'check
|
||||||
|
(lambda* (#:key tests? #:allow-other-keys)
|
||||||
|
(when tests?
|
||||||
|
;; The Ft_MIMPluginManager::testPluginDescriptions test fails
|
||||||
|
;; with a QFATAL error: received signal 11, while
|
||||||
|
;; ut_mimpluginmanager fails at least on powerpc64le with a
|
||||||
|
;; subprocess aborted error (see:
|
||||||
|
;; https://github.com/maliit/framework/issues/120).
|
||||||
|
(invoke "ctest" "-E"
|
||||||
|
"(ft_mimpluginmanager|ut_mimpluginmanager)")))))))
|
||||||
(native-inputs (list extra-cmake-modules
|
(native-inputs (list extra-cmake-modules
|
||||||
wayland-protocols
|
wayland-protocols
|
||||||
pkg-config
|
pkg-config
|
||||||
|
|
Loading…
Reference in a new issue