Skip to content

Commit

Permalink
Merge pull request #1110 from sosy-lab/metaval++-fix-input-task
Browse files Browse the repository at this point in the history
Update MetaVal++ to correctly pass the input file correctly in the command-line
  • Loading branch information
PhilippWendler authored Nov 15, 2024
2 parents 6009163 + bda5a54 commit 02675f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion benchexec/tools/metaval++.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def cmdline(self, executable, options, task, rlimits):
if data_model_param and "--data-model" not in options:
options += ["--data-model", data_model_param]

return [executable] + options + list(task.single_input_file)
return [executable] + options + [task.single_input_file]

def determine_result(self, run):
separator = ":"
Expand Down

0 comments on commit 02675f6

Please sign in to comment.