From 395b0030942ba91bbb5715933bb80c46da6c022f Mon Sep 17 00:00:00 2001 From: Roman Scherer Date: Sun, 14 Dec 2025 14:39:41 +0100 Subject: [PATCH] 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 --- 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 a1fbee4c963aaeda08d173f929321dbc11daa8c8..2ed467d52450d1f3ca4254da1369a745ac91c26a 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