GNU bug report logs - #73080
[PATCH] gnu: plasma-workspace: Disable failing test on aarch64.

Previous Next

Package: guix-patches;

Reported by: Roman Scherer <roman <at> burningswell.com>

Date: Fri, 6 Sep 2024 18:45:02 UTC

Severity: normal

Tags: patch

Done: Z572 <zhengjunjie <at> iscas.ac.cn>

Bug is archived. No further changes may be made.

Full log


View this message in rfc822 format

From: help-debbugs <at> gnu.org (GNU bug Tracking System)
To: Roman Scherer <roman <at> burningswell.com>
Subject: bug#73080: closed (Re: [bug#73080] [PATCH] gnu: plasma-workspace:
 Disable failing test on aarch64.)
Date: Sat, 07 Sep 2024 16:11:03 +0000
[Message part 1 (text/plain, inline)]
Your bug report

#73080: [PATCH] gnu: plasma-workspace: Disable failing test on aarch64.

which was filed against the guix-patches package, has been closed.

The explanation is attached below, along with your original report.
If you require more details, please reply to 73080 <at> debbugs.gnu.org.

-- 
73080: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=73080
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
From: Z572 <zhengjunjie <at> iscas.ac.cn>
To: Roman Scherer <roman <at> burningswell.com>
Cc: 73080-done <at> debbugs.gnu.org
Subject: Re: [bug#73080] [PATCH] gnu: plasma-workspace: Disable failing test
 on aarch64.
Date: Sun, 08 Sep 2024 00:10:27 +0800
[Message part 3 (text/plain, inline)]
Roman Scherer <roman <at> burningswell.com> writes:

> * gnu/packages/kde-plasma.scm (plasma-workspace): Disable failing test on aarch64.
>
> Change-Id: Ieb62dbd5bf51366ec949a98a6d490dd7175395fc
> ---
>  gnu/packages/kde-plasma.scm | 34 ++++++++++++++++++++++++++++------
>  1 file changed, 28 insertions(+), 6 deletions(-)
>
> diff --git a/gnu/packages/kde-plasma.scm b/gnu/packages/kde-plasma.scm
> index fb5eb0c563..56213bed08 100644
> --- a/gnu/packages/kde-plasma.scm
> +++ b/gnu/packages/kde-plasma.scm
> @@ -2880,12 +2880,34 @@ (define-public plasma-workspace
>                               "--output-on-failure"
>                               "--rerun-failed"
>                               "-E"
> -                             "(appstreamtest|tasktoolstest|tasksmodeltest|\
> -fetchinitialplayertest|mprisdeclarativetest|mediakeystest|shelltest|\
> -locationsrunnertest|testimagefinder|testimagelistmodel|\
> -testpackageimagelistmodel|testimageproxymodel|testslidemodel|testimagefrontend|\
> -dbusservicewatchertest|klippertest|keystatetest|lockedtest|tst_triangleFilter|\
> -testimagebackend)"))))
> +                             (string-join
> +                              (list
> +                               ;; Fails on an Apple M1 (aarch64) with the following error:
> +                               ;; Compared values are not the same "2'\uFFFD''\uFFFD'"
> +                               #$@(if (target-aarch64?)
> +                                      #~("calculatorrunnertest")
> +                                      #~())
> +                               "appstreamtest"
> +                               "dbusservicewatchertest"
> +                               "fetchinitialplayertest"
> +                               "keystatetest"
> +                               "klippertest"
> +                               "locationsrunnertest"
> +                               "lockedtest"
> +                               "mediakeystest"
> +                               "mprisdeclarativetest"
> +                               "shelltest"
> +                               "tasksmodeltest"
> +                               "tasktoolstest"
> +                               "testimagebackend"
> +                               "testimagefinder"
> +                               "testimagefrontend"
> +                               "testimagelistmodel"
> +                               "testimageproxymodel"
> +                               "testpackageimagelistmodel"
> +                               "testslidemodel"
> +                               "tst_triangleFilter")
> +                              "|")))))
>                 ;; share/dbus-1/system-services have same name file
>                 ;; when dbus-root-service-type merge it, wail report
>                 ;; "file exists".
>
> base-commit: 904631033ef8c5af94d3c2ec5e2762fdddf74c28

push, close.
[signature.asc (application/pgp-signature, inline)]
[Message part 5 (message/rfc822, inline)]
From: Roman Scherer <roman <at> burningswell.com>
To: guix-patches <at> gnu.org
Cc: Roman Scherer <roman <at> burningswell.com>, zhengjunjie <at> iscas.ac.cn
Subject: [PATCH] gnu: plasma-workspace: Disable failing test on aarch64.
Date: Fri,  6 Sep 2024 20:43:56 +0200
* gnu/packages/kde-plasma.scm (plasma-workspace): Disable failing test on aarch64.

Change-Id: Ieb62dbd5bf51366ec949a98a6d490dd7175395fc
---
 gnu/packages/kde-plasma.scm | 34 ++++++++++++++++++++++++++++------
 1 file changed, 28 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/kde-plasma.scm b/gnu/packages/kde-plasma.scm
index fb5eb0c563..56213bed08 100644
--- a/gnu/packages/kde-plasma.scm
+++ b/gnu/packages/kde-plasma.scm
@@ -2880,12 +2880,34 @@ (define-public plasma-workspace
                              "--output-on-failure"
                              "--rerun-failed"
                              "-E"
-                             "(appstreamtest|tasktoolstest|tasksmodeltest|\
-fetchinitialplayertest|mprisdeclarativetest|mediakeystest|shelltest|\
-locationsrunnertest|testimagefinder|testimagelistmodel|\
-testpackageimagelistmodel|testimageproxymodel|testslidemodel|testimagefrontend|\
-dbusservicewatchertest|klippertest|keystatetest|lockedtest|tst_triangleFilter|\
-testimagebackend)"))))
+                             (string-join
+                              (list
+                               ;; Fails on an Apple M1 (aarch64) with the following error:
+                               ;; Compared values are not the same "2'\uFFFD''\uFFFD'"
+                               #$@(if (target-aarch64?)
+                                      #~("calculatorrunnertest")
+                                      #~())
+                               "appstreamtest"
+                               "dbusservicewatchertest"
+                               "fetchinitialplayertest"
+                               "keystatetest"
+                               "klippertest"
+                               "locationsrunnertest"
+                               "lockedtest"
+                               "mediakeystest"
+                               "mprisdeclarativetest"
+                               "shelltest"
+                               "tasksmodeltest"
+                               "tasktoolstest"
+                               "testimagebackend"
+                               "testimagefinder"
+                               "testimagefrontend"
+                               "testimagelistmodel"
+                               "testimageproxymodel"
+                               "testpackageimagelistmodel"
+                               "testslidemodel"
+                               "tst_triangleFilter")
+                              "|")))))
                ;; share/dbus-1/system-services have same name file
                ;; when dbus-root-service-type merge it, wail report
                ;; "file exists".

base-commit: 904631033ef8c5af94d3c2ec5e2762fdddf74c28
-- 
2.45.2




This bug report was last modified 258 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.