[pypy-commit] pypy inline-dict-ops: Fix broken test, sorry.

arigo noreply at buildbot.pypy.org
Sat Jul 23 20:46:04 CEST 2011


Author: Armin Rigo <arigo at tunes.org>
Branch: inline-dict-ops
Changeset: r45913:e2b65a520ac8
Date: 2011-07-23 20:46 +0200
http://bitbucket.org/pypy/pypy/changeset/e2b65a520ac8/

Log:	Fix broken test, sorry.

diff --git a/pypy/jit/codewriter/test/test_jtransform.py b/pypy/jit/codewriter/test/test_jtransform.py
--- a/pypy/jit/codewriter/test/test_jtransform.py
+++ b/pypy/jit/codewriter/test/test_jtransform.py
@@ -510,7 +510,7 @@
 
 def test_rename_on_links():
     v1 = Variable()
-    v2 = Variable()
+    v2 = Variable(); v2.concretetype = llmemory.Address
     v3 = Variable()
     block = Block([v1])
     block.operations = [SpaceOperation('cast_pointer', [v1], v2)]


More information about the pypy-commit mailing list