[pypy-svn] r22509 - in pypy/dist/pypy/rpython/l3interp: . test

mwh at codespeak.net mwh at codespeak.net
Mon Jan 23 12:21:06 CET 2006


Author: mwh
Date: Mon Jan 23 12:21:04 2006
New Revision: 22509

Modified:
   pypy/dist/pypy/rpython/l3interp/l3interp.py
   pypy/dist/pypy/rpython/l3interp/test/test_convert.py
Log:
disable some of last check in as it broke the translation of the l3 interpreter.


Modified: pypy/dist/pypy/rpython/l3interp/l3interp.py
==============================================================================
--- pypy/dist/pypy/rpython/l3interp/l3interp.py	(original)
+++ pypy/dist/pypy/rpython/l3interp/l3interp.py	Mon Jan 23 12:21:04 2006
@@ -169,7 +169,7 @@
         else:
             self.stack_int.append(0)
 
-    def op_getfield_int(self):
+    def later_op_getfield_int(self):
         p = self.getptr()
         o = self.getoffset()
         self.stack_int.append((p + o).signed[0])

Modified: pypy/dist/pypy/rpython/l3interp/test/test_convert.py
==============================================================================
--- pypy/dist/pypy/rpython/l3interp/test/test_convert.py	(original)
+++ pypy/dist/pypy/rpython/l3interp/test/test_convert.py	Mon Jan 23 12:21:04 2006
@@ -40,7 +40,7 @@
     assert isinstance(result, l3interp.L3Integer)
     assert result.intval == 1
     
-def test_convert_getfield():
+def dont_test_convert_getfield():
     class C:
         def __init__(self, x):
             self.x = x



More information about the Pypy-commit mailing list