summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2023-02-06 17:03:43 -0500
committerJason R. Coombs <jaraco@jaraco.com>2023-02-06 17:03:43 -0500
commit2f16327060394b21fadb6342ea83eec324512aaa (patch)
treefdb56c594ff24346334c1caedbb33194d7cc7c6f
parentc2bc8135db186a007d02770af3419dc012404e6f (diff)
downloadpython-setuptools-git-2f16327060394b21fadb6342ea83eec324512aaa.tar.gz
Mark test as xfail on Windows. Ref pypa/distutils#195.
-rw-r--r--distutils/tests/test_ccompiler.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/distutils/tests/test_ccompiler.py b/distutils/tests/test_ccompiler.py
index c868a56b..aa4c7b35 100644
--- a/distutils/tests/test_ccompiler.py
+++ b/distutils/tests/test_ccompiler.py
@@ -55,6 +55,7 @@ def test_set_include_dirs(c_file):
compiler.compile(_make_strs([c_file]))
+@pytest.mark.xfail('platform.system() == "Windows"')
def test_has_function_prototype():
# Issue https://github.com/pypa/setuptools/issues/3648
# Test prototype-generating behavior.