summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--numpy/tests/test_ctypeslib.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/numpy/tests/test_ctypeslib.py b/numpy/tests/test_ctypeslib.py
index f17860db4..aad6c96af 100644
--- a/numpy/tests/test_ctypeslib.py
+++ b/numpy/tests/test_ctypeslib.py
@@ -1,8 +1,11 @@
+import sys
+
import numpy as np
from numpy.ctypeslib import ndpointer, load_library
from numpy.testing import *
class TestLoadLibrary(TestCase):
+ @dec.knownfailureif(sys.platform=='cygwin', "This test is known to fail on cygwin")
def test_basic(self):
try:
cdll = load_library('multiarray',
@@ -12,6 +15,7 @@ class TestLoadLibrary(TestCase):
" (import error was: %s)" % str(e)
print msg
+ @dec.knownfailureif(sys.platform=='cygwin', "This test is known to fail on cygwin")
def test_basic2(self):
"""Regression for #801: load_library with a full library name
(including extension) does not work."""