Author: Manuel Jacob
Branch: refactor-translator
Changeset: r61854:d84fec6b921f
Date: 2013-02-26 14:03 +0100
http://bitbucket.org/pypy/pypy/changeset/d84fec6b921f/

Log:    Fix tests to work with 40c8418ff476.

diff --git a/rpython/translator/test/test_driver.py 
b/rpython/translator/test/test_driver.py
--- a/rpython/translator/test/test_driver.py
+++ b/rpython/translator/test/test_driver.py
@@ -4,21 +4,22 @@
 
 def test_c_no_jit():
     td = TranslationDriver()
-    names = ['annotate', 'rtype', 'backendopt', 'database', 'source',
-             'compile']
+    names = ['annotate', 'rtype', 'backendopt', 'stackcheckinsertion_lltype',
+             'database', 'source', 'compile']
     assert [task.task_name for task in td.tasks] == names
 
 
 def test_c_with_jit():
     td = TranslationDriver({'jit': True})
-    names = ['annotate', 'rtype', 'pyjitpl', 'backendopt', 'database',
-             'source', 'compile']
+    names = ['annotate', 'rtype', 'pyjitpl', 'backendopt',
+             'stackcheckinsertion_lltype', 'database', 'source', 'compile']
     assert [task.task_name for task in td.tasks] == names
 
 
 def test_no_backendopt():
     td = TranslationDriver({'backendopt.none': True})
-    names = ['annotate', 'rtype', 'database', 'source', 'compile']
+    names = ['annotate', 'rtype', 'stackcheckinsertion_lltype', 'database',
+             'source', 'compile']
     assert [task.task_name for task in td.tasks] == names
 
 
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to