guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

12/12: gnu: python2-cython: Exclude parallel tests on i686 systems.


From: guix-commits
Subject: 12/12: gnu: python2-cython: Exclude parallel tests on i686 systems.
Date: Thu, 19 Mar 2020 03:48:26 -0400 (EDT)

mbakke pushed a commit to branch master
in repository guix.

commit baab9eef27994575e3ce1ba7efb822725600f748
Author: Marius Bakke <address@hidden>
AuthorDate: Thu Mar 19 08:29:06 2020 +0100

    gnu: python2-cython: Exclude parallel tests on i686 systems.
    
    * gnu/packages/python-xyz.scm (python2-cython)[arguments]: When building on
    i686-linux, override the 'check' phase.
---
 gnu/packages/python-xyz.scm | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 86e87ae..07199aa 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -3685,6 +3685,18 @@ writing C extensions for Python as easy as Python 
itself.")
        (substitute-keyword-arguments (package-arguments base)
          ((#:phases phases)
           `(modify-phases ,phases
+             ;; XXX: On i686-linux, running the parallel tests fails on 
many-core
+             ;; systems, see <https://github.com/cython/cython/issues/2807>.
+             ;; TODO: Move this logic to the regular check phase in a future
+             ;; rebuild cycle.
+             ,@(if (string-prefix? "i686" (%current-system))
+                   '((replace 'check
+                       (lambda _
+                         (setenv "CFLAGS" "-O0")
+                         (invoke "python" "runtests.py" "-vv"
+                                 "-j" (number->string (parallel-job-count))
+                                 "-x" "run.parallel"))))
+                   '())
              (add-before 'check 'adjust-test_embed
                (lambda _
                  (substitute* "runtests.py"



reply via email to

[Prev in Thread] Current Thread [Next in Thread]