gnu: Python: Delete broken test.
* gnu/packages/python.scm (python-3.7)[source](snippet): Delete test which may crash some systems.
This commit is contained in:
parent
9adaf1f408
commit
589aca1c18
|
@ -342,9 +342,15 @@ data types.")
|
||||||
(snippet
|
(snippet
|
||||||
'(begin
|
'(begin
|
||||||
(for-each delete-file
|
(for-each delete-file
|
||||||
'("Lib/ctypes/test/test_win32.py" ; fails on aarch64
|
'(;; This test may hang and eventually run out of
|
||||||
"Lib/test/test_fcntl.py" ; fails on aarch64
|
;; memory on some systems:
|
||||||
"Lib/test/test_posix.py")) ; fails on aarch64
|
;; <https://bugs.python.org/issue34587>
|
||||||
|
"Lib/test/test_socket.py"
|
||||||
|
|
||||||
|
;; These tests fail on AArch64.
|
||||||
|
"Lib/ctypes/test/test_win32.py"
|
||||||
|
"Lib/test/test_fcntl.py"
|
||||||
|
"Lib/test/test_posix.py"))
|
||||||
#t))))
|
#t))))
|
||||||
(arguments
|
(arguments
|
||||||
(substitute-keyword-arguments (package-arguments python-2)
|
(substitute-keyword-arguments (package-arguments python-2)
|
||||||
|
|
Loading…
Reference in New Issue