Author: Armin Rigo <ar...@tunes.org>
Branch: 
Changeset: r79469:b71b4486a66b
Date: 2015-09-06 10:57 +0200
http://bitbucket.org/pypy/pypy/changeset/b71b4486a66b/

Log:    Wrong indentation! These tests were only half-run.

diff --git a/rpython/jit/backend/test/runner_test.py 
b/rpython/jit/backend/test/runner_test.py
--- a/rpython/jit/backend/test/runner_test.py
+++ b/rpython/jit/backend/test/runner_test.py
@@ -1111,12 +1111,12 @@
                             r_box = self.alloc_string("!???????!")
                             if r_box_is_const:
                                 r_box = r_box.constbox()
-                                self.execute_operation(rop.COPYSTRCONTENT,
-                                                       [s_box, r_box,
-                                                        srcstart_box,
-                                                        dststart_box,
-                                                        length_box], 'void')
-                                assert self.look_string(r_box) == "!??cdef?!"
+                            self.execute_operation(rop.COPYSTRCONTENT,
+                                                   [s_box, r_box,
+                                                    srcstart_box,
+                                                    dststart_box,
+                                                    length_box], 'void')
+                            assert self.look_string(r_box) == "!??cdef?!"
 
     def test_copyunicodecontent(self):
         s_box = self.alloc_unicode(u"abcdef")
@@ -1128,12 +1128,12 @@
                             r_box = self.alloc_unicode(u"!???????!")
                             if r_box_is_const:
                                 r_box = r_box.constbox()
-                                self.execute_operation(rop.COPYUNICODECONTENT,
-                                                       [s_box, r_box,
-                                                        srcstart_box,
-                                                        dststart_box,
-                                                        length_box], 'void')
-                                assert self.look_unicode(r_box) == u"!??cdef?!"
+                            self.execute_operation(rop.COPYUNICODECONTENT,
+                                                   [s_box, r_box,
+                                                    srcstart_box,
+                                                    dststart_box,
+                                                    length_box], 'void')
+                            assert self.look_unicode(r_box) == u"!??cdef?!"
 
     def test_do_unicode_basic(self):
         u = self.cpu.bh_newunicode(5)
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to