summaryrefslogtreecommitdiff
path: root/numpy
diff options
context:
space:
mode:
Diffstat (limited to 'numpy')
-rw-r--r--numpy/core/tests/test_regression.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/numpy/core/tests/test_regression.py b/numpy/core/tests/test_regression.py
index 3269b76c2..01d829668 100644
--- a/numpy/core/tests/test_regression.py
+++ b/numpy/core/tests/test_regression.py
@@ -138,7 +138,8 @@ class TestRegression(TestCase):
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 platform.architecture()[0] == "64bit"),
"numpy.intp('0xff', 16) not supported on Py3, "
"as it does not inherit from Python int")
def test_intp(self,level=rlevel):