[pypy-svn] r63696 - pypy/branch/pyjitpl5-simplify/pypy/jit/metainterp/test

fijal at codespeak.net fijal at codespeak.net
Mon Apr 6 00:29:36 CEST 2009


Author: fijal
Date: Mon Apr  6 00:29:36 2009
New Revision: 63696

Modified:
   pypy/branch/pyjitpl5-simplify/pypy/jit/metainterp/test/test_basic.py
Log:
add a flag


Modified: pypy/branch/pyjitpl5-simplify/pypy/jit/metainterp/test/test_basic.py
==============================================================================
--- pypy/branch/pyjitpl5-simplify/pypy/jit/metainterp/test/test_basic.py	(original)
+++ pypy/branch/pyjitpl5-simplify/pypy/jit/metainterp/test/test_basic.py	Mon Apr  6 00:29:36 2009
@@ -394,7 +394,7 @@
         x = lltype.malloc(TP, flavor='raw')
         expected = f(x, x)
         assert self.interp_operations(f, [x, x]) == expected
-        lltype.free(x)
+        lltype.free(x, flavor='raw')
 
 class TestOOtype(BasicTests, OOJitMixin):
     pass



More information about the Pypy-commit mailing list