summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRalf Gommers <ralf.gommers@googlemail.com>2011-04-17 16:56:22 +0200
committerCharles Harris <charlesr.harris@gmail.com>2011-04-18 20:37:43 -0600
commitf98ffb560c54a804036dbdb04d21090c22853dc1 (patch)
tree570e643d5acd45a82e11815a05ae10802e4d6a9a
parent7ad8fefb71eedbccff654ec8dc40c06b89af8b9b (diff)
downloadnumpy-f98ffb560c54a804036dbdb04d21090c22853dc1.tar.gz
TST: fix regression on 64-bit Windows.
-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):