gnu: kwayland: Disable kwayland-testXdgForeign test.
* gnu/packages/kde-frameworks.scm (kwayland) [phases] <check>: Disable kwayland-testXdgForeign test. Change-Id: I302cd80031e288ac3a155935c2fe35c009194859
This commit is contained in:
parent
ca92295971
commit
2d613a1e8d
1 changed files with 11 additions and 3 deletions
|
@ -1160,9 +1160,17 @@ protocols used in KDE Plasma.")
|
||||||
(lambda* (#:key tests? #:allow-other-keys)
|
(lambda* (#:key tests? #:allow-other-keys)
|
||||||
(when tests?
|
(when tests?
|
||||||
(invoke "ctest" "-E"
|
(invoke "ctest" "-E"
|
||||||
;; XXX: maybe is upstream bug
|
(string-append
|
||||||
"(kwayland-testWaylandRegistry|\
|
"("
|
||||||
kwayland-testPlasmaShell|kwayland-testPlasmaWindowModel)")))))))
|
(string-join
|
||||||
|
;; XXX: maybe is upstream bug
|
||||||
|
'("kwayland-testWaylandRegistry"
|
||||||
|
"kwayland-testPlasmaShell"
|
||||||
|
"kwayland-testPlasmaWindowModel"
|
||||||
|
;; The 'kwayland-testXdgForeign' may fail on
|
||||||
|
;; powerpc64le with a 'Subprocess aborted' error.
|
||||||
|
"kwayland-testXdgForeign") "|")
|
||||||
|
")"))))))))
|
||||||
(home-page "https://community.kde.org/Frameworks")
|
(home-page "https://community.kde.org/Frameworks")
|
||||||
(synopsis "Qt-style API to interact with the wayland client and server")
|
(synopsis "Qt-style API to interact with the wayland client and server")
|
||||||
(description "As the names suggest they implement a Client respectively a
|
(description "As the names suggest they implement a Client respectively a
|
||||||
|
|
Reference in a new issue