[pypy-commit] pypy jit-targets: fix test

hakanardo noreply at buildbot.pypy.org
Sun Dec 4 12:54:00 CET 2011


Author: Hakan Ardo <hakan at debian.org>
Branch: jit-targets
Changeset: r50111:26267a7217be
Date: 2011-12-04 12:30 +0100
http://bitbucket.org/pypy/pypy/changeset/26267a7217be/

Log:	fix test

diff --git a/pypy/module/pypyjit/test_pypy_c/test_containers.py b/pypy/module/pypyjit/test_pypy_c/test_containers.py
--- a/pypy/module/pypyjit/test_pypy_c/test_containers.py
+++ b/pypy/module/pypyjit/test_pypy_c/test_containers.py
@@ -115,5 +115,5 @@
             i35 = int_add_ovf(i5, i34)
             guard_no_overflow(descr=...)
             --TICK--
-            jump(p0, p1, p2, p3, p4, i35, p13, i7, descr=<Loop0>)
-        """)
\ No newline at end of file
+            jump(p0, p1, p2, p3, p4, i35, p13, i7, descr=...)
+        """)
diff --git a/pypy/module/pypyjit/test_pypy_c/test_exception.py b/pypy/module/pypyjit/test_pypy_c/test_exception.py
--- a/pypy/module/pypyjit/test_pypy_c/test_exception.py
+++ b/pypy/module/pypyjit/test_pypy_c/test_exception.py
@@ -42,7 +42,7 @@
         i12 = int_sub_ovf(i3, 1)
         guard_no_overflow(descr=...)
         --TICK--
-        jump(..., descr=<Loop0>)
+        jump(..., descr=...)
         """)
 
     def test_exception_inside_loop_2(self):
@@ -89,5 +89,5 @@
             --EXC-TICK--
             i14 = int_add(i4, 1)
             --TICK--
-            jump(..., descr=<Loop0>)
+            jump(..., descr=...)
         """)


More information about the pypy-commit mailing list