[pypy-commit] pypy stmgc-c4: First first part of this test passes! :-) probably because it's small

arigo noreply at buildbot.pypy.org
Sat Jun 29 23:19:59 CEST 2013


Author: Armin Rigo <arigo at tunes.org>
Branch: stmgc-c4
Changeset: r65112:b1bac73d4f54
Date: 2013-06-29 23:19 +0200
http://bitbucket.org/pypy/pypy/changeset/b1bac73d4f54/

Log:	First first part of this test passes! :-) probably because it's
	small enough to avoid any minor collection.

diff --git a/rpython/translator/stm/test/test_ztranslated.py b/rpython/translator/stm/test/test_ztranslated.py
--- a/rpython/translator/stm/test/test_ztranslated.py
+++ b/rpython/translator/stm/test/test_ztranslated.py
@@ -20,6 +20,8 @@
             return 0
         #
         t, cbuilder = self.compile(entry_point, backendopt=True)
+        data = cbuilder.cmdexec('5')
+        assert '< 5 >' in data, "got: %r" % (data,)
         data = cbuilder.cmdexec('42')
         assert '< 42 >' in data, "got: %r" % (data,)
 


More information about the pypy-commit mailing list