mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-27 04:59:27 -05:00
gnu: kwin: Disable failing test on aarch64.
* gnu/packages/kde-plasma.scm (kwin)[arguments]: Disable failing test on aarch64. Change-Id: Iecd9edbacca5805a54bcaf84bcec205367b96a05 Signed-off-by: Zheng Junjie <zhengjunjie@iscas.ac.cn>
This commit is contained in:
parent
444b4bbcc5
commit
e308bbe0bf
1 changed files with 6 additions and 0 deletions
|
@ -29,6 +29,7 @@ (define-module (gnu packages kde-plasma)
|
|||
#:use-module (guix git-download)
|
||||
#:use-module ((guix licenses) #:prefix license:)
|
||||
#:use-module (guix gexp)
|
||||
#:use-module (guix utils)
|
||||
#:use-module (guix build-system cmake)
|
||||
#:use-module (guix build-system trivial)
|
||||
#:use-module (guix build-system qt)
|
||||
|
@ -1429,6 +1430,11 @@ (define-public kwin
|
|||
"-E"
|
||||
(string-join
|
||||
(list
|
||||
;; Fails on an Apple M1 (aarch64) with the following error:
|
||||
;; TestColorspaces::roundtripConversion fails
|
||||
#$@(if (target-aarch64?)
|
||||
#~("kwin-testColorspaces")
|
||||
#~())
|
||||
"kwin-testDrm" ;; require Drm
|
||||
"kwin-testInputMethod"
|
||||
"kwin-testPlasmaWindow" ;; require plasma-workspace qml module.
|
||||
|
|
Loading…
Reference in a new issue