guix-commits
[Top][All Lists]
Advanced

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

01/01: gnu: python-cython: Disable tests that fail on armhf.


From: Marius Bakke
Subject: 01/01: gnu: python-cython: Disable tests that fail on armhf.
Date: Thu, 16 Aug 2018 14:55:42 -0400 (EDT)

mbakke pushed a commit to branch staging
in repository guix.

commit 37d203985e2817b0962129384e8b993a1bb92de9
Author: Marius Bakke <address@hidden>
Date:   Thu Aug 16 19:00:49 2018 +0200

    gnu: python-cython: Disable tests that fail on armhf.
    
    * gnu/packages/python.scm (python-cython)[arguments]: On armhf-linux, add
    phase to disable two tests.
---
 gnu/packages/python.scm | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 1d718bf..fa5d3f5 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -2845,6 +2845,24 @@ and is very extensible.")
          (add-before 'check 'set-HOME
            ;; some tests require access to "$HOME/.cython"
            (lambda _ (setenv "HOME" "/tmp") #t))
+
+         ;; FIXME: These tests started failing on armhf after the 0.28 update
+         ;; (commit c69d11c5930), both with an error such as this:
+         ;;  compiling (cpp) and running dictcomp ...
+         ;;  === C/C++ compiler error output: ===
+         ;;  ‘
+         ;;  dictcomp.cpp:5221: confused by earlier errors, bailing out
+         ;; See <https://hydra.gnu.org/build/2948724> for logs.
+         ,@(if (target-arm32?)
+               `((add-before 'check 'disable-failing-tests
+                  (lambda _
+                    (let ((disabled-tests (open-file "tests/bugs.txt" "a")))
+                      (for-each (lambda (test)
+                                  (format disabled-tests "~a\n" test))
+                                '("memslice" "dictcomp"))
+                      (close-port disabled-tests)))))
+               '())
+
          (replace 'check
            (lambda _ (invoke "python" "runtests.py" "-vv"))))))
     (home-page "http://cython.org/";)



reply via email to

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