Skip to content

Commit

Permalink
Rename parameter in benchexec/tools/spf.py
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilippWendler authored Dec 18, 2024
1 parent dd61ae1 commit dc0c97d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions benchexec/tools/spf.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ def version(self, executable):
first_line = output.splitlines()[0]
return first_line.strip()

def cmdline(self, executable, options, tasks, rlimits):
options = options + ["--propertyfile", tasks.property_file]
return [executable] + options + list(tasks.input_files)
def cmdline(self, executable, options, task, rlimits):
options = options + ["--propertyfile", task.property_file]
return [executable] + options + list(task.input_files)

def determine_result(self, run):
output = run.output
Expand Down

0 comments on commit dc0c97d

Please sign in to comment.