diff options
author | David Cournapeau <cournape@gmail.com> | 2009-02-19 10:05:28 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2009-02-19 10:05:28 +0000 |
commit | 000030d48295a8c44001cfd7350dd959d7e3338d (patch) | |
tree | 155111be6d586219971f2384be4e5adf06f3c873 /numpy/lib/tests/test_recfunctions.py | |
parent | 707639f491eddb2d7db8a29a5233a890c7a4df72 (diff) | |
download | numpy-000030d48295a8c44001cfd7350dd959d7e3338d.tar.gz |
Tag known failure on win32.
Diffstat (limited to 'numpy/lib/tests/test_recfunctions.py')
-rw-r--r-- | numpy/lib/tests/test_recfunctions.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/numpy/lib/tests/test_recfunctions.py b/numpy/lib/tests/test_recfunctions.py index f7a72071c..424d60ae4 100644 --- a/numpy/lib/tests/test_recfunctions.py +++ b/numpy/lib/tests/test_recfunctions.py @@ -1,3 +1,4 @@ +import sys import numpy as np import numpy.ma as ma @@ -137,6 +138,7 @@ class TestRecFunctions(TestCase): assert_equal(test, control) + @np.testing.dec.knownfailureif(sys.platform=='win32', "Fail on Win32") def test_find_duplicates(self): "Test find_duplicates" a = ma.array([(2, (2., 'B')), (1, (2., 'B')), (2, (2., 'B')), @@ -171,6 +173,7 @@ class TestRecFunctions(TestCase): assert_equal(test[0], a[control]) + @np.testing.dec.knownfailureif(sys.platform=='win32', "Fail on Win32") def test_find_duplicates_ignoremask(self): "Test the ignoremask option of find_duplicates" ndtype = [('a', int)] |