all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Roman Scherer <roman@burningswell.com>
To: 74728@debbugs.gnu.org
Cc: Roman Scherer <roman@burningswell.com>, sharlatanus@gmail.com
Subject: [bug#74728] [PATCH] gnu: python-asyncssh: Disable failing tests on aarch64.
Date: Sun,  8 Dec 2024 18:31:42 +0100	[thread overview]
Message-ID: <c1b79d996391b7ab324c7a1b17b3a58c5617c02f.1733679075.git.roman@burningswell.com> (raw)
In-Reply-To: <8403c5159deb34bf4dac119d55c57c9dba530a20.1733594283.git.roman@burningswell.com>

* gnu/packages/ssh.scm (python-asyncssh): Disable failing tests on aarch64.

Change-Id: I9f3a746bdf820c1d357fd655f1ed1ff197327856
---
 gnu/packages/ssh.scm | 19 +++++++++++++------
 1 file changed, 13 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/ssh.scm b/gnu/packages/ssh.scm
index 95ad38a642..bf4e04d55b 100644
--- a/gnu/packages/ssh.scm
+++ b/gnu/packages/ssh.scm
@@ -820,12 +820,19 @@ (define-public python-asyncssh
      (list
       #:test-flags
       #~(list "-k" (string-join
-                    ;; TODO Test fails for unknown reason
-                    (list "not test_confirm"
-                          ;; Tests fail with: asyncssh.misc.ConnectionLost:
-                          ;; Connection lost
-                          "test_get_server_host_key_proxy"
-                          "test_connect_reverse_proxy")
+                    (list
+                     ;; TODO Test fails for unknown reason
+                     "not test_confirm"
+                     #$@(if (target-aarch64?)
+                            (list
+                             ;; Tests fail with: asyncssh.misc.ConnectionLost:
+                             ;; Connection lost
+                             "test_connect_non_tcp_sock"
+                             "test_connect_reverse_proxy"
+                             "test_get_server_auth_methods_no_sockn"
+                             "test_get_server_auth_methods_no_sockname"
+                             "test_get_server_host_key_proxy")
+                            '()))
                     " and not " ))
       #:phases
       #~(modify-phases %standard-phases

base-commit: 17d86ac9df841deca4f2f5e173f50bd2461fe680
-- 
2.46.0





  parent reply	other threads:[~2024-12-08 17:33 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-12-07 18:00 [bug#74728] [PATCH] gnu: python-asyncssh: Disable flaky connection tests Roman Scherer
2024-12-07 22:40 ` Sharlatan Hellseher
2024-12-08 12:33 ` bug#74728: " Sharlatan Hellseher
2024-12-08 14:15 ` [bug#74728] [PATCH] gnu: python-asyncssh: Disable more tests Roman Scherer
2024-12-08 16:43   ` Sharlatan Hellseher
2024-12-08 17:32     ` Roman Scherer
     [not found] ` <handler.74728.D74728.173366126726317.notifdone@debbugs.gnu.org>
2024-12-08 14:18   ` [bug#74728] closed ([PATCH] gnu: python-asyncssh: Disable flaky connection tests.) Roman Scherer
2024-12-08 17:31 ` Roman Scherer [this message]
2024-12-09 21:27 ` [bug#74728] [PATCH] gnu: python-asyncssh: Disable flaky connection tests Sharlatan Hellseher

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=c1b79d996391b7ab324c7a1b17b3a58c5617c02f.1733679075.git.roman@burningswell.com \
    --to=roman@burningswell.com \
    --cc=74728@debbugs.gnu.org \
    --cc=sharlatanus@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.