[pypy-svn] r18608 - pypy/dist/pypy/rpython/l3interp/test

cfbolz at codespeak.net cfbolz at codespeak.net
Sat Oct 15 12:58:26 CEST 2005


Author: cfbolz
Date: Sat Oct 15 12:58:25 2005
New Revision: 18608

Modified:
   pypy/dist/pypy/rpython/l3interp/test/test_l3interp.py
Log:
remove view and actually run the compiled function


Modified: pypy/dist/pypy/rpython/l3interp/test/test_l3interp.py
==============================================================================
--- pypy/dist/pypy/rpython/l3interp/test/test_l3interp.py	(original)
+++ pypy/dist/pypy/rpython/l3interp/test/test_l3interp.py	Sat Oct 15 12:58:25 2005
@@ -28,6 +28,6 @@
     pol.allow_someobjects = False
     t.annotate([], policy=pol)
     t.specialize()
-    t.view()
     fn = t.ccompile()
+    assert fn() == 7
 



More information about the Pypy-commit mailing list