Author: Armin Rigo <[email protected]>
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,)
 
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to