[pypy-svn] r45411 - pypy/dist/pypy/translator/jvm/test

pdg at codespeak.net pdg at codespeak.net
Fri Jul 27 20:08:02 CEST 2007


Author: pdg
Date: Fri Jul 27 20:08:02 2007
New Revision: 45411

Modified:
   pypy/dist/pypy/translator/jvm/test/test_overflow.py
Log:
translator/jvm - updated the test_overflow with the real reason for skipping lshift instead of fixme (pdg)

Modified: pypy/dist/pypy/translator/jvm/test/test_overflow.py
==============================================================================
--- pypy/dist/pypy/translator/jvm/test/test_overflow.py	(original)
+++ pypy/dist/pypy/translator/jvm/test/test_overflow.py	Fri Jul 27 20:08:02 2007
@@ -3,11 +3,9 @@
 from pypy.translator.oosupport.test_template.overflow import BaseTestOverflow
 
 class TestOverflow(BaseTestOverflow, JvmTest):
-    #def test_sub(self):
-    #    py.test.skip('fixme!')
 
     def test_lshift(self):
-        py.test.skip('fixme!')
+        py.test.skip('Shift is currently not implemented in src/PyPy.java because the C version interacts with Pypy directly, and it\'s not clear how to do that in Java')
 
 
 



More information about the Pypy-commit mailing list