Skip to content

Commit

Permalink
Refine the collections of required program files for MoXI model checkers
Browse files Browse the repository at this point in the history
  • Loading branch information
Po-Chun-Chien committed Dec 5, 2024
1 parent c35f6ad commit e1fee24
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
3 changes: 0 additions & 3 deletions benchexec/tools/moxi-mc-flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,6 @@ def name(self):
def project_url(self):
return "https://github.com/ModelChecker/moxi-mc-flow"

def program_files(self, executable):
return self._program_files_from_executable(executable, self.REQUIRED_PATHS)

def cmdline(self, executable, options, task, rlimits):
if rlimits.cputime and "--timeout" not in options:
options += ["--timeout", str(ceil(rlimits.cputime * 1.05))]
Expand Down
2 changes: 1 addition & 1 deletion benchexec/tools/moxichecker.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def version(self, executable):
return self._version_from_tool(executable)

def program_files(self, executable):
return self._program_files_from_executable(
return [executable] + self._program_files_from_executable(
executable, self.REQUIRED_PATHS, parent_dir=True
)

Expand Down

0 comments on commit e1fee24

Please sign in to comment.