[pypy-svn] r29911 - pypy/dist/pypy/rpython/ootypesystem/test

arigo at codespeak.net arigo at codespeak.net
Sun Jul 9 19:09:49 CEST 2006


Author: arigo
Date: Sun Jul  9 19:09:47 2006
New Revision: 29911

Modified:
   pypy/dist/pypy/rpython/ootypesystem/test/test_bltann.py
Log:
Is that what this test is supposed to test?


Modified: pypy/dist/pypy/rpython/ootypesystem/test/test_bltann.py
==============================================================================
--- pypy/dist/pypy/rpython/ootypesystem/test/test_bltann.py	(original)
+++ pypy/dist/pypy/rpython/ootypesystem/test/test_bltann.py	Sun Jul  9 19:09:47 2006
@@ -78,13 +78,15 @@
     assert s.knowntype is int
 
 class CB(BasicExternal):
-    pass
+    _fields = {
+        'm': MethodDesc([], 3),    # XXX maybe
+        }
 
 def some_int():
     return 3
     
 def test_flowin():
-    #py.test.skip("Can we assume that it might work?")
+    import py; py.test.skip("something is missing somewhere")
     def set_callback():
         a = CB()
         a.m = some_int



More information about the Pypy-commit mailing list