summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEli Bendersky <eliben@gmail.com>2021-10-29 10:23:28 -0700
committerEli Bendersky <eliben@gmail.com>2021-10-29 10:23:28 -0700
commitf19cd1412849aaf8759d8db8199ddd66ac789e87 (patch)
tree5e94da0e3fb08dbe901f846177a14d45c9484cfa
parent268067bb6dcdb816010ae2dbc2c5edc9e260c59d (diff)
downloadpycparser-f19cd1412849aaf8759d8db8199ddd66ac789e87.tar.gz
Don't run cpp/gcc-needing tests on Darwin: not all Macs have the tools
-rw-r--r--tests/test_util.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_util.py b/tests/test_util.py
index 435962d..38dfdf5 100644
--- a/tests/test_util.py
+++ b/tests/test_util.py
@@ -15,7 +15,7 @@ import sys
def cpp_supported():
"""Is cpp (the C preprocessor) supported as a native command?"""
- return platform.system() == 'Linux' or platform.system() == 'Darwin'
+ return platform.system() == 'Linux'
def cpp_path():