We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b74468e commit 76db37bCopy full SHA for 76db37b
Lib/distutils/tests/test_config_cmd.py
@@ -47,8 +47,7 @@ def test_search_cpp(self):
47
cmd = config(dist)
48
cmd._check_compiler()
49
compiler = cmd.compiler
50
- is_xlc = shutil.which(compiler.preprocessor[0]).startswith("/usr/vac")
51
- if is_xlc:
+ if sys.platform[:3] == "aix" and "xlc" in compiler.preprocessor[0].lower():
52
self.skipTest('xlc: The -E option overrides the -P, -o, and -qsyntaxonly options')
53
54
# simple pattern searches
0 commit comments