[pypy-svn] r28982 - pypy/dist/pypy/module/_socket/test

arigo at codespeak.net arigo at codespeak.net
Tue Jun 20 12:03:42 CEST 2006


Author: arigo
Date: Tue Jun 20 12:03:41 2006
New Revision: 28982

Modified:
   pypy/dist/pypy/module/_socket/test/test_socket2.py
Log:
Skip a test that doesn't make much sense for now.


Modified: pypy/dist/pypy/module/_socket/test/test_socket2.py
==============================================================================
--- pypy/dist/pypy/module/_socket/test/test_socket2.py	(original)
+++ pypy/dist/pypy/module/_socket/test/test_socket2.py	Tue Jun 20 12:03:41 2006
@@ -235,6 +235,7 @@
         raises(_socket.error, _socket.inet_pton, family, ip)
 
 def test_has_ipv6():
+    py.test.skip("has_ipv6 is always True on PyPy for now")
     res = space.appexec([w_socket], "(_socket): return _socket.has_ipv6")
     assert space.unwrap(res) == socket.has_ipv6
 



More information about the Pypy-commit mailing list