summaryrefslogtreecommitdiff
path: root/numpy/f2py/tests/test_callback.py
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2017-09-30 17:59:13 -0600
committerGitHub <noreply@github.com>2017-09-30 17:59:13 -0600
commitd05fd3032cccabf5ed18840b43513a73499af5d6 (patch)
treea9a1d760547e5983c59400249bc8086d73e191c2 /numpy/f2py/tests/test_callback.py
parent697609cbb3b49dac0a61370ce7c8cd9b320fc43b (diff)
parent448bb82e6f6ad5d6ff98705a55fe34ccd938446c (diff)
downloadnumpy-d05fd3032cccabf5ed18840b43513a73499af5d6.tar.gz
Merge pull request #9645 from xoviat/appveyor
ENH: enable OpenBLAS on windows.
Diffstat (limited to 'numpy/f2py/tests/test_callback.py')
-rw-r--r--numpy/f2py/tests/test_callback.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/numpy/f2py/tests/test_callback.py b/numpy/f2py/tests/test_callback.py
index ea29043ed..cf7427d20 100644
--- a/numpy/f2py/tests/test_callback.py
+++ b/numpy/f2py/tests/test_callback.py
@@ -2,6 +2,7 @@ from __future__ import division, absolute_import, print_function
import math
import textwrap
+import sys
from numpy import array
from numpy.testing import run_module_suite, assert_, assert_equal, dec
@@ -119,6 +120,7 @@ cf2py intent(out) a
r = t(a.mth)
assert_(r == 9, repr(r))
+ @dec.knownfailureif(sys.platform=='win32', msg='Fails with MinGW64 Gfortran (Issue #9673)')
def test_string_callback(self):
def callback(code):