[pypy-svn] r64084 - pypy/branch/pyjitpl5-simplify/pypy/jit/tl/test

fijal at codespeak.net fijal at codespeak.net
Wed Apr 15 07:16:53 CEST 2009


Author: fijal
Date: Wed Apr 15 07:16:53 2009
New Revision: 64084

Modified:
   pypy/branch/pyjitpl5-simplify/pypy/jit/tl/test/jitcrashers.py
Log:
Fix assertions etc. We should catch the exception and present it.


Modified: pypy/branch/pyjitpl5-simplify/pypy/jit/tl/test/jitcrashers.py
==============================================================================
--- pypy/branch/pyjitpl5-simplify/pypy/jit/tl/test/jitcrashers.py	(original)
+++ pypy/branch/pyjitpl5-simplify/pypy/jit/tl/test/jitcrashers.py	Wed Apr 15 07:16:53 2009
@@ -5,7 +5,6 @@
     while i < 200:
         i = i + 3
     print i
-    s
     #assert i == 102
 
 def jit_simple_inplace_add():
@@ -15,7 +14,6 @@
     while i < 200:
         i += 3
     print i
-    assert i == 102
 
 def jit_range():
     print "range object, but outside the loop"



More information about the Pypy-commit mailing list