From 268067bb6dcdb816010ae2dbc2c5edc9e260c59d Mon Sep 17 00:00:00 2001 From: Eli Bendersky Date: Fri, 29 Oct 2021 10:03:20 -0700 Subject: Only run example tests on Linux, since many require cpp --- examples/func_calls.py | 5 ----- 1 file changed, 5 deletions(-) (limited to 'examples/func_calls.py') diff --git a/examples/func_calls.py b/examples/func_calls.py index ce70232..d72bd8f 100644 --- a/examples/func_calls.py +++ b/examples/func_calls.py @@ -17,7 +17,6 @@ sys.path.extend(['.', '..']) from pycparser import c_ast, parse_file - # A visitor with some state information (the funcname it's looking for) class FuncCallVisitor(c_ast.NodeVisitor): def __init__(self, funcname): @@ -31,10 +30,6 @@ class FuncCallVisitor(c_ast.NodeVisitor): self.visit(node.args) -def cpp_supported(): - return platform.system() == 'Linux' - - def show_func_calls(filename, funcname): ast = parse_file(filename, use_cpp=True) v = FuncCallVisitor(funcname) -- cgit v1.2.1