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

rxe at codespeak.net rxe at codespeak.net
Mon Oct 29 12:30:34 CET 2007


Author: rxe
Date: Mon Oct 29 12:30:33 2007
New Revision: 48149

Modified:
   pypy/dist/pypy/translator/llvm/test/test_extfunc.py
Log:
whatever it was, seems to have fixed itself

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	Mon Oct 29 12:30:33 2007
@@ -22,8 +22,6 @@
     assert abs(f()-fn()) < 10.0
 
 def test_math_frexp():
-    py.test.skip("what the hell is going on!")
-
     if sys.maxint != 2**31-1:
         py.test.skip("WIP on 64 bit architectures") 
 
@@ -36,8 +34,6 @@
     assert res == fn(10.123)
 
 def test_math_modf():
-    py.test.skip("what the hell is going on!")
-    
     from math import modf
     def fn(x):
         res = modf(x)



More information about the Pypy-commit mailing list