[pypy-svn] r36777 - in pypy/dist/pypy/jit/codegen/llvm: . test

ericvrp at codespeak.net ericvrp at codespeak.net
Mon Jan 15 13:40:12 CET 2007


Author: ericvrp
Date: Mon Jan 15 13:40:11 2007
New Revision: 36777

Modified:
   pypy/dist/pypy/jit/codegen/llvm/genvarorconst.py
   pypy/dist/pypy/jit/codegen/llvm/test/test_operation.py
Log:
missing import and mark a test know to fail


Modified: pypy/dist/pypy/jit/codegen/llvm/genvarorconst.py
==============================================================================
--- pypy/dist/pypy/jit/codegen/llvm/genvarorconst.py	(original)
+++ pypy/dist/pypy/jit/codegen/llvm/genvarorconst.py	Mon Jan 15 13:40:11 2007
@@ -3,6 +3,7 @@
 from pypy.rpython.lltypesystem import lltype, llmemory
 from pypy.rlib.rarithmetic import intmask
 from pypy.jit.codegen.model import GenVar, GenConst
+from pypy.jit.codegen.llvm.logger import logger
 from pypy.jit.codegen.llvm.compatibility import i1, i8, i16, i32, f64
 
 

Modified: pypy/dist/pypy/jit/codegen/llvm/test/test_operation.py
==============================================================================
--- pypy/dist/pypy/jit/codegen/llvm/test/test_operation.py	(original)
+++ pypy/dist/pypy/jit/codegen/llvm/test/test_operation.py	Mon Jan 15 13:40:11 2007
@@ -60,6 +60,8 @@
     if llvm_version() < 2.0:
         test_unsigned = skip_too_minimal #uint_invert uses incorrect xor constant?
 
+    test_arithmetic = skip #XXX << 32 and >> 32 fail 
+
     test_float_arithmetic = skip #XXX llvmjit.execute() returns an int :-(
     test_float_cast = skip       #XXX llvmjit.execute() returns an int :-(
 



More information about the Pypy-commit mailing list