[pypy-svn] r53723 - pypy/branch/io-improvements/pypy/rpython/lltypesystem/test

fijal at codespeak.net fijal at codespeak.net
Sat Apr 12 18:34:59 CEST 2008


Author: fijal
Date: Sat Apr 12 18:34:57 2008
New Revision: 53723

Modified:
   pypy/branch/io-improvements/pypy/rpython/lltypesystem/test/test_ll2ctypes.py
Log:
don't try to interpret this stuff


Modified: pypy/branch/io-improvements/pypy/rpython/lltypesystem/test/test_ll2ctypes.py
==============================================================================
--- pypy/branch/io-improvements/pypy/rpython/lltypesystem/test/test_ll2ctypes.py	(original)
+++ pypy/branch/io-improvements/pypy/rpython/lltypesystem/test/test_ll2ctypes.py	Sat Apr 12 18:34:57 2008
@@ -381,9 +381,10 @@
                  + llmemory.itemoffsetof(STR.chars, 0))
             buf = rffi.cast(rffi.VOIDP, b)
             return buf[2]
-        #assert f() == 'z'
-        res = interpret(f, [])
-        assert res == 'z'
+        assert f() == 'z'
+        # XXX let's say we don't run it on top of llinterp
+        #res = interpret(f, [])
+        #assert res == 'z'
     
     def test_funcptr1(self):
         def dummy(n):



More information about the Pypy-commit mailing list