[Numpy-svn] r6513 - trunk/numpy/core/tests

numpy-svn at scipy.org numpy-svn at scipy.org
Fri Feb 27 07:00:45 EST 2009


Author: cdavid
Date: 2009-02-27 06:00:41 -0600 (Fri, 27 Feb 2009)
New Revision: 6513

Modified:
   trunk/numpy/core/tests/test_scalarmath.py
Log:
Remove one more win64 known failure which now passes.

Modified: trunk/numpy/core/tests/test_scalarmath.py
===================================================================
--- trunk/numpy/core/tests/test_scalarmath.py	2009-02-27 11:59:26 UTC (rev 6512)
+++ trunk/numpy/core/tests/test_scalarmath.py	2009-02-27 12:00:41 UTC (rev 6513)
@@ -7,10 +7,6 @@
          np.single, np.double, np.longdouble, np.csingle,
          np.cdouble, np.clongdouble]
 
-def iswin64():
-    import platform
-    return platform.architecture()[0] == "64bit" and sys.platform == "win32"
-
 # This compares scalarmath against ufuncs.
 
 class TestTypes(TestCase):
@@ -47,7 +43,6 @@
             b = a ** 4
             assert b == 81, "error with %r: got %r" % (t,b)
 
-    @dec.knownfailureif(iswin64(), "Crash on win64")
     def test_large_types(self):
         for t in [np.int32, np.int64, np.float32, np.float64, np.longdouble]:
             a = t(51)




More information about the Numpy-svn mailing list