[pypy-svn] r22270 - pypy/dist/pypy/translator/llvm/test

ericvrp at codespeak.net ericvrp at codespeak.net
Wed Jan 18 11:19:14 CET 2006


Author: ericvrp
Date: Wed Jan 18 11:19:10 2006
New Revision: 22270

Modified:
   pypy/dist/pypy/translator/llvm/test/test_exc_operation.py
   pypy/dist/pypy/translator/llvm/test/test_extfunc.py
Log:
Disable some tests on 64 bit machines that are work in progress.
Part of the externalfunctions tests actualy start to work.


Modified: pypy/dist/pypy/translator/llvm/test/test_exc_operation.py
==============================================================================
--- pypy/dist/pypy/translator/llvm/test/test_exc_operation.py	(original)
+++ pypy/dist/pypy/translator/llvm/test/test_exc_operation.py	Wed Jan 18 11:19:10 2006
@@ -4,6 +4,9 @@
 from pypy.rpython.rarithmetic import r_uint, ovfcheck, ovfcheck_lshift
 from pypy.translator.test import snippet 
 
+if sys.maxint != 2**31-1:
+    py.test.skip("WIP")
+
 def test_zerodiv_int():
     def zerodiv_int(n):
         try:

Modified: pypy/dist/pypy/translator/llvm/test/test_extfunc.py
==============================================================================
--- pypy/dist/pypy/translator/llvm/test/test_extfunc.py	(original)
+++ pypy/dist/pypy/translator/llvm/test/test_extfunc.py	Wed Jan 18 11:19:10 2006
@@ -9,6 +9,9 @@
 from pypy.rpython.rarithmetic import r_uint
 from pypy.rpython import ros
 
+if sys.maxint != 2**31-1:
+    py.test.skip("WIP") 
+
 def test_external_function_ll_os_dup():
     def fn():
         return os.dup(0)



More information about the Pypy-commit mailing list