Author: Maciej Fijalkowski <[email protected]>
Branch: jitframe-on-heap
Changeset: r62149:f30e3aaca824
Date: 2013-03-07 00:33 +0200
http://bitbucket.org/pypy/pypy/changeset/f30e3aaca824/
Log: oops
diff --git a/rpython/jit/backend/llsupport/test/test_gc_integration.py
b/rpython/jit/backend/llsupport/test/test_gc_integration.py
--- a/rpython/jit/backend/llsupport/test/test_gc_integration.py
+++ b/rpython/jit/backend/llsupport/test/test_gc_integration.py
@@ -22,7 +22,7 @@
def getmap(frame):
r = ''
for elem in frame.jf_gcmap:
- r += bin(elem)[2:]
+ r = bin(elem)[2:] + r
return r[r.find('1'):]
class TestRegallocGcIntegration(BaseTestRegalloc):
@@ -85,7 +85,7 @@
else:
assert nos == [4, 5, 25]
elif self.cpu.backend_name.startswith('arm'):
- assert nos == [15, 25, 26]
+ assert nos == [9, 10, 47]
else:
raise Exception("write the data here")
assert frame.jf_frame[nos[0]]
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit