[pypy-svn] r73524 - pypy/branch/decouple-host-opcodes/pypy/translator/goal/test2

fijal at codespeak.net fijal at codespeak.net
Wed Apr 7 21:51:23 CEST 2010


Author: fijal
Date: Wed Apr  7 21:51:22 2010
New Revision: 73524

Modified:
   pypy/branch/decouple-host-opcodes/pypy/translator/goal/test2/test_targetpypy.py
Log:
A test that I would like to work


Modified: pypy/branch/decouple-host-opcodes/pypy/translator/goal/test2/test_targetpypy.py
==============================================================================
--- pypy/branch/decouple-host-opcodes/pypy/translator/goal/test2/test_targetpypy.py	(original)
+++ pypy/branch/decouple-host-opcodes/pypy/translator/goal/test2/test_targetpypy.py	Wed Apr  7 21:51:22 2010
@@ -1,8 +1,12 @@
 
+import py
 from pypy.translator.goal.targetpypystandalone import get_entry_point
 from pypy.config.pypyoption import get_pypy_config
 
 class TestTargetPyPy(object):
     def test_run(self):
-        config = get_pypy_config(translating=True)
-        entry_point = get_entry_point(config)
+        config = get_pypy_config(translating=False)
+        entry_point = get_entry_point(config)[0]
+        space = self.space
+        py.test.skip("not working so far")
+        entry_point(['pypy-c' , '-S', '-c', 'print 3'])



More information about the Pypy-commit mailing list