[pypy-svn] r64536 - pypy/trunk/pypy/module/_rawffi/test

afa at codespeak.net afa at codespeak.net
Tue Apr 21 18:15:29 CEST 2009


Author: afa
Date: Tue Apr 21 18:15:26 2009
New Revision: 64536

Modified:
   pypy/trunk/pypy/module/_rawffi/test/test_nested.py
Log:
Try to enable these tests, which are not linux specific.


Modified: pypy/trunk/pypy/module/_rawffi/test/test_nested.py
==============================================================================
--- pypy/trunk/pypy/module/_rawffi/test/test_nested.py	(original)
+++ pypy/trunk/pypy/module/_rawffi/test/test_nested.py	Tue Apr 21 18:15:26 2009
@@ -1,13 +1,8 @@
 from pypy.conftest import gettestobjspace
-import os, sys, py
-
-def setup_module(mod):
-    if sys.platform != 'linux2':
-        py.test.skip("Linux only tests by now")
 
 class AppTestNested:
     def setup_class(cls):
-        space = gettestobjspace(usemodules=('_rawffi','struct'))
+        space = gettestobjspace(usemodules=('_rawffi', 'struct'))
         cls.space = space
 
     def test_inspect_structure(self):



More information about the Pypy-commit mailing list