Skip to content

Commit

Permalink
Merge pull request #1021 from justfeelix/main
Browse files Browse the repository at this point in the history
minor changes to coccinelle tool
  • Loading branch information
PhilippWendler authored Apr 8, 2024
2 parents 64d73c4 + d983761 commit 2fb2a05
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions benchexec/tools/coccinelle.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,7 @@ def version(self, executable):
)

def cmdline(self, executable, options, task, resource_limits):
if task.property_file:
return (
[executable] + options + [task.single_input_file] + [task.property_file]
)
else:
return [executable] + options + [task.single_input_file]
return [executable] + options + [task.single_input_file]

def project_url(self):
return "https://github.com/coccinelle/coccinelle"

0 comments on commit 2fb2a05

Please sign in to comment.