Author: Armin Rigo <[email protected]>
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
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to