[pypy-commit] pypy default: struct and array are needed for these tests

antocuni noreply at buildbot.pypy.org
Thu Mar 22 17:32:01 CET 2012


Author: Antonio Cuni <anto.cuni at gmail.com>
Branch: 
Changeset: r53911:dc87a37e0f7f
Date: 2012-03-22 16:33 +0100
http://bitbucket.org/pypy/pypy/changeset/dc87a37e0f7f/

Log:	struct and array are needed for these tests

diff --git a/pypy/module/_multiprocessing/test/test_connection.py b/pypy/module/_multiprocessing/test/test_connection.py
--- a/pypy/module/_multiprocessing/test/test_connection.py
+++ b/pypy/module/_multiprocessing/test/test_connection.py
@@ -92,7 +92,8 @@
 
 class AppTestSocketConnection(BaseConnectionTest):
     def setup_class(cls):
-        space = gettestobjspace(usemodules=('_multiprocessing', 'thread', 'signal'))
+        space = gettestobjspace(usemodules=('_multiprocessing', 'thread', 'signal',
+                                            'struct', 'array'))
         cls.space = space
         cls.w_connections = space.newlist([])
 


More information about the pypy-commit mailing list