guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 8c9a1f92481bb49d7ccb59c5d097595ca37e8824
Author: Roman Scherer <[email protected]>
AuthorDate: Sun Dec 14 14:39:41 2025 +0100
gnu: kwin: Skip failing tests on AArch64.
* gnu/packages/kde-plasma.scm (kwin)[arguments]: Add
kwin-testSecurityContext and kwin-testXwaylandSelection to test-exclude.
Change-Id: I0256e0e390552deb54eb0b5368f1799800ec8cb0
Signed-off-by: Rutherther <[email protected]>
---
gnu/packages/kde-plasma.scm | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/kde-plasma.scm b/gnu/packages/kde-plasma.scm
index a1fbee4c96..2ed467d524 100644
--- a/gnu/packages/kde-plasma.scm
+++ b/gnu/packages/kde-plasma.scm
@@ -1475,7 +1475,7 @@ you login.")
#:test-exclude
(string-append "("
(string-join
- '(;; Fails on an Apple M1 (aarch64) with the
following error:
+ `(;; Fails on an Apple M1 (aarch64) with the
following error:
;; TestColorspaces::roundtripConversion fails
"kwin-testColorspaces"
@@ -1517,7 +1517,11 @@ you login.")
"kwin-testFractionalRepaint"
"kwin-testDrmLegacy"
"kwin-testInputCapture"
- "kwin-testMockDrm")
+ "kwin-testMockDrm"
+ ,@(if (target-aarch64?)
+ '("kwin-testSecurityContext"
+ "kwin-testXwaylandSelection")
+ '()))
"|")
")")
#:phases