[pypy-commit] pypy default: Skip these three tests, which occasionally fail

arigo noreply at buildbot.pypy.org
Sun Aug 31 13:20:23 CEST 2014


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r73224:94bbfc345092
Date: 2014-08-31 13:20 +0200
http://bitbucket.org/pypy/pypy/changeset/94bbfc345092/

Log:	Skip these three tests, which occasionally fail

diff --git a/rpython/rlib/test/test_rsocket.py b/rpython/rlib/test/test_rsocket.py
--- a/rpython/rlib/test/test_rsocket.py
+++ b/rpython/rlib/test/test_rsocket.py
@@ -520,6 +520,7 @@
     _test_cond_include('AF_NETLINK')
 
 def test_thread_safe_gethostbyaddr():
+    py.test.skip("hits non-thread-safe issues with ll2ctypes")
     import threading
     nthreads = 10
     ip = '8.8.8.8'
@@ -539,6 +540,7 @@
     assert sum(result) == nthreads
 
 def test_thread_safe_gethostbyname_ex():
+    py.test.skip("hits non-thread-safe issues with ll2ctypes")
     import threading
     nthreads = 10
     domain = 'google.com'
@@ -557,6 +559,7 @@
     assert sum(result) == nthreads
 
 def test_getaddrinfo_pydotorg_threadsafe():
+    py.test.skip("hits non-thread-safe issues with ll2ctypes")
     import threading
     nthreads = 10
     result = [0] * nthreads


More information about the pypy-commit mailing list