From baab9eef27994575e3ce1ba7efb822725600f748 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Thu, 19 Mar 2020 08:29:06 +0100 Subject: 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(+) (limited to 'gnu/packages/python-xyz.scm') diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 86e87ae4dc..07199aa7ca 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 . + ;; 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" -- cgit v1.2.3