unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#53552] [PATCH] gnu: python-uvloop: Skip failing test on PowerPC.
@ 2022-01-26 17:48 Lars-Dominik Braun
  0 siblings, 0 replies; only message in thread
From: Lars-Dominik Braun @ 2022-01-26 17:48 UTC (permalink / raw)
  To: 53552

* gnu/packages/python-web.scm (python-uvloop)[arguments]: Conditionally
skip test on target-powerpc?.
---
 gnu/packages/python-web.scm | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)


Hi,

can someone using a PowerPC machine please verify this fixes the build
failure here: https://ci.guix.gnu.org/build/424653/details

Thanks,
Lars

diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 406c6cb51b..1c90fde331 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -4644,7 +4644,11 @@ (define-public python-uvloop
                               ;; It looks like pytest is preventing
                               ;; custom stdout/stderr redirection,
                               ;; even with -s.
-                              "and not test_process_streams_redirect "))))))))
+                              "and not test_process_streams_redirect "
+                              ;; Fails for unknown reasons.
+                              (if target-powerpc?
+                                  "and not test_write_buffer_full "
+                                  "")))))))))
     (native-inputs
      (list python-aiohttp
            python-cython
-- 
2.34.1





^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2022-01-26 17:58 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-01-26 17:48 [bug#53552] [PATCH] gnu: python-uvloop: Skip failing test on PowerPC Lars-Dominik Braun

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).