[Numpy-svn] r8659 - branches/1.5.x/numpy/core/tests

numpy-svn at scipy.org numpy-svn at scipy.org
Sun Aug 22 01:25:27 EDT 2010


Author: rgommers
Date: 2010-08-22 00:25:27 -0500 (Sun, 22 Aug 2010)
New Revision: 8659

Modified:
   branches/1.5.x/numpy/core/tests/test_regression.py
Log:
TST: mark test for #99 as knownfail for 64 bit Windows.

Thanks to Christoph Gohkle.

Modified: branches/1.5.x/numpy/core/tests/test_regression.py
===================================================================
--- branches/1.5.x/numpy/core/tests/test_regression.py	2010-08-22 05:25:08 UTC (rev 8658)
+++ branches/1.5.x/numpy/core/tests/test_regression.py	2010-08-22 05:25:27 UTC (rev 8659)
@@ -136,7 +136,8 @@
         self.assertRaises(TypeError,np.dtype,
                               {'names':['a'],'formats':['foo']},align=1)
 
-    @dec.knownfailureif(sys.version_info[0] >= 3,
+    @dec.knownfailureif(sys.version_info[0] >= 3 or (
+                        sys.platform == 'win32' and '64 bit' in sys.version),
                         "numpy.intp('0xff', 16) not supported on Py3, "
                         "as it does not inherit from Python int")
     def test_intp(self,level=rlevel):




More information about the Numpy-svn mailing list