* [bug#73066] [PATCH] gnu: kwin: Disable failing test on aarch64.
@ 2024-09-06 10:23 Roman Scherer
2024-09-06 14:50 ` bug#73066: " Zheng Junjie
0 siblings, 1 reply; 2+ messages in thread
From: Roman Scherer @ 2024-09-06 10:23 UTC (permalink / raw)
To: 73066; +Cc: Roman Scherer, zhengjunjie
* gnu/packages/kde-plasma.scm (kwin): Disable failing test on aarch64.
Change-Id: Iecd9edbacca5805a54bcaf84bcec205367b96a05
---
gnu/packages/kde-plasma.scm | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/gnu/packages/kde-plasma.scm b/gnu/packages/kde-plasma.scm
index 5e9b9688d1..7294a7555c 100644
--- a/gnu/packages/kde-plasma.scm
+++ b/gnu/packages/kde-plasma.scm
@@ -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,9 @@ (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.
base-commit: 7d2ced8d6d9c38327592d312376d59a8c37fc160
--
2.45.2
^ permalink raw reply related [flat|nested] 2+ messages in thread
* bug#73066: [PATCH] gnu: kwin: Disable failing test on aarch64.
2024-09-06 10:23 [bug#73066] [PATCH] gnu: kwin: Disable failing test on aarch64 Roman Scherer
@ 2024-09-06 14:50 ` Zheng Junjie
0 siblings, 0 replies; 2+ messages in thread
From: Zheng Junjie @ 2024-09-06 14:50 UTC (permalink / raw)
To: Roman Scherer; +Cc: 73066-done
[-- Attachment #1: Type: text/plain, Size: 1659 bytes --]
Roman Scherer <roman@burningswell.com> writes:
> * gnu/packages/kde-plasma.scm (kwin): Disable failing test on aarch64.
>
> Change-Id: Iecd9edbacca5805a54bcaf84bcec205367b96a05
> ---
> gnu/packages/kde-plasma.scm | 4 ++++
> 1 file changed, 4 insertions(+)
>
> diff --git a/gnu/packages/kde-plasma.scm b/gnu/packages/kde-plasma.scm
> index 5e9b9688d1..7294a7555c 100644
> --- a/gnu/packages/kde-plasma.scm
> +++ b/gnu/packages/kde-plasma.scm
> @@ -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,9 @@ (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" "")
adjust it to use #$@(if (target-aarch64?)
#~("kwin-testColorspaces")
#~())
only change it on aarch64.
> "kwin-testDrm" ;; require Drm
> "kwin-testInputMethod"
> "kwin-testPlasmaWindow" ;; require plasma-workspace qml module.
>
> base-commit: 7d2ced8d6d9c38327592d312376d59a8c37fc160
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2024-09-06 14:52 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-09-06 10:23 [bug#73066] [PATCH] gnu: kwin: Disable failing test on aarch64 Roman Scherer
2024-09-06 14:50 ` bug#73066: " Zheng Junjie
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.