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_io.py | |
parent | 707639f491eddb2d7db8a29a5233a890c7a4df72 (diff) | |
download | numpy-000030d48295a8c44001cfd7350dd959d7e3338d.tar.gz |
Tag known failure on win32.
Diffstat (limited to 'numpy/lib/tests/test_io.py')
-rw-r--r-- | numpy/lib/tests/test_io.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/numpy/lib/tests/test_io.py b/numpy/lib/tests/test_io.py index 935773134..da91101aa 100644 --- a/numpy/lib/tests/test_io.py +++ b/numpy/lib/tests/test_io.py @@ -76,6 +76,7 @@ class RoundtripTest(object): a = np.array([1, 2, 3, 4], int) self.roundtrip(a) + @np.testing.dec.knownfailureif(sys.platform=='win32', "Fail on Win32") def test_mmap(self): a = np.array([[1, 2.5], [4, 7.3]]) self.roundtrip(a, file_on_disk=True, load_kwds={'mmap_mode': 'r'}) @@ -112,6 +113,7 @@ class TestSavezLoad(RoundtripTest, TestCase): class TestSaveTxt(TestCase): + @np.testing.dec.knownfailureif(sys.platform=='win32', "Fail on Win32") def test_array(self): a =np.array([[1, 2], [3, 4]], float) c = StringIO.StringIO() |