[pypy-commit] pypy default: Fix this test for f6fbfecb93fd.

arigo noreply at buildbot.pypy.org
Mon Apr 30 09:56:57 CEST 2012


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r54813:3aeefa9caa40
Date: 2012-04-30 09:55 +0200
http://bitbucket.org/pypy/pypy/changeset/3aeefa9caa40/

Log:	Fix this test for f6fbfecb93fd.

diff --git a/pypy/jit/backend/llsupport/test/test_asmmemmgr.py b/pypy/jit/backend/llsupport/test/test_asmmemmgr.py
--- a/pypy/jit/backend/llsupport/test/test_asmmemmgr.py
+++ b/pypy/jit/backend/llsupport/test/test_asmmemmgr.py
@@ -217,7 +217,8 @@
     encoded = ''.join(writtencode).encode('hex').upper()
     ataddr = '@%x' % addr
     assert log == [('test-logname-section',
-                    [('debug_print', 'CODE_DUMP', ataddr, '+0 ', encoded)])]
+                    [('debug_print', 'SYS_EXECUTABLE', '??'),
+                     ('debug_print', 'CODE_DUMP', ataddr, '+0 ', encoded)])]
     
     lltype.free(p, flavor='raw')
 


More information about the pypy-commit mailing list