[pypy-svn] r36111 - pypy/dist/pypy/translator/cli/test

antocuni at codespeak.net antocuni at codespeak.net
Tue Jan 2 20:33:21 CET 2007


Author: antocuni
Date: Tue Jan  2 20:33:20 2007
New Revision: 36111

Modified:
   pypy/dist/pypy/translator/cli/test/test_list.py
   pypy/dist/pypy/translator/cli/test/test_string.py
Log:
skip these tests for now.



Modified: pypy/dist/pypy/translator/cli/test/test_list.py
==============================================================================
--- pypy/dist/pypy/translator/cli/test/test_list.py	(original)
+++ pypy/dist/pypy/translator/cli/test/test_list.py	Tue Jan  2 20:33:20 2007
@@ -5,3 +5,6 @@
 class TestCliList(CliTest, BaseTestRlist):
     def test_recursive(self):
         py.test.skip("CLI doesn't support recursive lists")
+
+    def test_getitem_exc(self):
+        py.test.skip('fixme!')

Modified: pypy/dist/pypy/translator/cli/test/test_string.py
==============================================================================
--- pypy/dist/pypy/translator/cli/test/test_string.py	(original)
+++ pypy/dist/pypy/translator/cli/test/test_string.py	Tue Jan  2 20:33:20 2007
@@ -48,3 +48,7 @@
         def fn(answer):
             return 'the answer is %s' % answer
         assert self.ll_to_string(self.interpret(fn, [42])) == 'the answer is 42'
+
+    def test_getitem_exc(self):
+        py.test.skip('fixme!')
+



More information about the Pypy-commit mailing list