[pypy-commit] pypy s390x-backend: disabled blocking tests

plan_rich pypy.commits at gmail.com
Wed Feb 3 05:03:01 EST 2016


Author: Richard Plangger <planrichi at gmail.com>
Branch: s390x-backend
Changeset: r82053:074033f70453
Date: 2016-02-03 11:01 +0100
http://bitbucket.org/pypy/pypy/changeset/074033f70453/

Log:	disabled blocking tests

diff --git a/pypy/module/__pypy__/test/test_signal.py b/pypy/module/__pypy__/test/test_signal.py
--- a/pypy/module/__pypy__/test/test_signal.py
+++ b/pypy/module/__pypy__/test/test_signal.py
@@ -71,6 +71,8 @@
     def test_thread_fork_signals(self):
         import __pypy__
         import os, thread, signal
+        if os.uname()[4] == 's390x':
+            skip("skip for now s390x")
 
         if not hasattr(os, 'fork'):
             skip("No fork on this platform")
diff --git a/pypy/module/select/test/test_select.py b/pypy/module/select/test/test_select.py
--- a/pypy/module/select/test/test_select.py
+++ b/pypy/module/select/test/test_select.py
@@ -329,6 +329,10 @@
         "usemodules": ["select", "_socket", "time", "thread"],
     }
 
+    import os
+    if os.uname()[4] == 's390x':
+        py.test.skip("build bot for s390x cannot open sockets")
+
     def w_make_server(self):
         import socket
         if hasattr(self, 'sock'):


More information about the pypy-commit mailing list