[pypy-svn] r22972 - pypy/dist/pypy/translator/c/test

ericvrp at codespeak.net ericvrp at codespeak.net
Fri Feb 3 12:31:03 CET 2006


Author: ericvrp
Date: Fri Feb  3 12:31:02 2006
New Revision: 22972

Modified:
   pypy/dist/pypy/translator/c/test/test_ext__socket.py
Log:
Skip one socket test on little endian machines. There seems to be
an issue with the portnumber that gets returned from the test.


Modified: pypy/dist/pypy/translator/c/test/test_ext__socket.py
==============================================================================
--- pypy/dist/pypy/translator/c/test/test_ext__socket.py	(original)
+++ pypy/dist/pypy/translator/c/test/test_ext__socket.py	Fri Feb  3 12:31:02 2006
@@ -131,6 +131,9 @@
         tn.close()
 
     def test_connect(self):
+        import sys
+        if sys.byteorder == 'little':
+            py.test.skip("endian issue on little endian architectures")
         import os
         from pypy.module._socket.rpython import rsocket
         def does_stuff():



More information about the Pypy-commit mailing list