[pypy-svn] r44349 - in pypy/dist/pypy/translator/jvm: . test

antocuni at codespeak.net antocuni at codespeak.net
Mon Jun 18 20:55:03 CEST 2007


Author: antocuni
Date: Mon Jun 18 20:54:57 2007
New Revision: 44349

Modified:
   pypy/dist/pypy/translator/jvm/generator.py
   pypy/dist/pypy/translator/jvm/test/test_int.py
Log:
(antocuni, pdg)

a typo, but it took a bit to find it



Modified: pypy/dist/pypy/translator/jvm/generator.py
==============================================================================
--- pypy/dist/pypy/translator/jvm/generator.py	(original)
+++ pypy/dist/pypy/translator/jvm/generator.py	Mon Jun 18 20:54:57 2007
@@ -188,7 +188,7 @@
 ACONST_NULL=Opcode('aconst_null')
 DCONST_0 =  Opcode('dconst_0')
 DCONST_1 =  Opcode('dconst_0')
-LCONST_0 =  Opcode('lconst_1')
+LCONST_0 =  Opcode('lconst_0')
 LCONST_1 =  Opcode('lconst_1')
 GETFIELD =  Opcode('getfield')
 PUTFIELD =  Opcode('putfield')

Modified: pypy/dist/pypy/translator/jvm/test/test_int.py
==============================================================================
--- pypy/dist/pypy/translator/jvm/test/test_int.py	(original)
+++ pypy/dist/pypy/translator/jvm/test/test_int.py	Mon Jun 18 20:54:57 2007
@@ -18,12 +18,9 @@
 
     def test_rarithmetic(self):
         pass # does this make more sense in jvm
-        
-    def test_specializing_int_functions(self):
-        py.test.skip("Error with longlong precision results in 2 == 1")
-        
+    
     def test_float_conversion_implicit(self):
-        py.test.skip("Error with longlong precision results in 2 == 1")
+        py.test.skip("JVM backend lacks appropriate percision")
         
     def test_neg_abs_ovf(self):
         py.test.skip("Unaware how to handle overflow")



More information about the Pypy-commit mailing list