[pypy-commit] pypy stm: Extra checks.

arigo noreply at buildbot.pypy.org
Fri Oct 21 14:08:44 CEST 2011


Author: Armin Rigo <arigo at tunes.org>
Branch: stm
Changeset: r48303:95787a032c12
Date: 2011-10-20 22:26 +0200
http://bitbucket.org/pypy/pypy/changeset/95787a032c12/

Log:	Extra checks.

diff --git a/pypy/translator/stm/test/test_rstm.py b/pypy/translator/stm/test/test_rstm.py
--- a/pypy/translator/stm/test/test_rstm.py
+++ b/pypy/translator/stm/test/test_rstm.py
@@ -70,6 +70,7 @@
     assert a.f == rf1
     assert float(a.sa) == float(rs1a)
     assert float(a.sb) == float(rs1b)
+    assert a.y == 10
     lltype.free(a, flavor='raw')
 
 def callback2(a):
@@ -142,6 +143,7 @@
     assert a.f == rf2
     assert float(a.sa) == float(rs2a)
     assert float(a.sb) == float(rs2b)
+    assert a.y == 10
     lltype.free(a, flavor='raw')
 
 # ____________________________________________________________


More information about the pypy-commit mailing list