me
/
guix
Archived
1
0
Fork 0

gnu: python@2.7: Delete faulty test on mips64el only.

This amends 8b732bf6d9 and avoids a
rebuild.

* gnu/packages/python.scm (python-2.7)[arguments] <pre-check>:
When (%current-system) starts with "mips64el", delete
Lib/test/test_ctypes.py.
master
Ludovic Courtès 2016-07-28 00:58:40 +02:00
parent 8b732bf6d9
commit 1bb163b0dd
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 8 additions and 3 deletions

View File

@ -125,9 +125,7 @@
"Lib/test/test_import.py"
"Lib/test/test_shutil.py"
"Lib/test/test_socket.py"
"Lib/test/test_subprocess.py"
;; The following test apparently fails only on mips64el.
"Lib/test/test_ctypes.py"))
"Lib/test/test_subprocess.py"))
#t))))
(outputs '("out"
"tk")) ;tkinter; adds 50 MiB to the closure
@ -198,6 +196,13 @@
(lambda _
;; 'Lib/test/test_site.py' needs a valid $HOME
(setenv "HOME" (getcwd))
,@(if (string-prefix? "mips64el" (%current-system))
;; XXX: The following test fails on mips64el.
'((false-if-exception
(delete-file "Lib/test/test_ctypes.py")))
'())
#t))
(add-after
'unpack 'set-source-file-times-to-1980