summaryrefslogtreecommitdiff
path: root/tests/test_examples.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_examples.py')
-rw-r--r--tests/test_examples.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/test_examples.py b/tests/test_examples.py
index 24cf16e..3c516e1 100644
--- a/tests/test_examples.py
+++ b/tests/test_examples.py
@@ -4,13 +4,14 @@ import time
import unittest
sys.path.insert(0, '.')
-from tests.test_util import run_exe
+from tests.test_util import run_exe, cpp_supported
EMIT_ELAPSED_TIME = False
# Runs all pycparser examples with no command-line arguments and makes sure they
# run successfully (return code = 0), without actually verifying their output.
class TestExamplesSucceed(unittest.TestCase):
+ @unittest.skipUnless(cpp_supported(), 'cpp only works on Unix')
def test_all_examples(self):
root = './examples'
for filename in os.listdir(root):