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.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 73080 in the body.
You can then email your comments to 73080 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#73080; Package guix-patches. (Fri, 06 Sep 2024 18:45:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Roman Scherer <roman <at> burningswell.com>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Fri, 06 Sep 2024 18:45:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

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





Reply sent to Z572 <zhengjunjie <at> iscas.ac.cn>:
You have taken responsibility. (Sat, 07 Sep 2024 16:11:03 GMT) Full text and rfc822 format available.

Notification sent to Roman Scherer <roman <at> burningswell.com>:
bug acknowledged by developer. (Sat, 07 Sep 2024 16:11:03 GMT) Full text and rfc822 format available.

Message #10 received at 73080-done <at> debbugs.gnu.org (full text, mbox):

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 1 (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)]

bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Sun, 06 Oct 2024 11:24:12 GMT) Full text and rfc822 format available.

This bug report was last modified 257 days ago.

Previous Next


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