-
Notifications
You must be signed in to change notification settings - Fork 203
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #966 from MartinSpiessl/liv
Add tool-info module for LIV
- Loading branch information
Showing
1 changed file
with
84 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
# This file is part of BenchExec, a framework for reliable benchmarking: | ||
# https://github.com/sosy-lab/benchexec | ||
# | ||
# SPDX-FileCopyrightText: 2007-2020 Dirk Beyer <https://www.sosy-lab.org> | ||
# | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
import logging | ||
|
||
import benchexec.result | ||
from benchexec.tools.sv_benchmarks_util import ILP32, LP64, get_data_model_from_task | ||
from benchexec.tools.template import BaseTool2 | ||
|
||
|
||
class Tool(BaseTool2): | ||
""" | ||
Tool info for LIV. | ||
""" | ||
|
||
REQUIRED_PATHS = ["liv", "lib", "bin", "actors", ".venv"] | ||
|
||
def executable(self, tool_locator: BaseTool2.ToolLocator): | ||
return tool_locator.find_executable("liv", subdir="bin") | ||
|
||
def program_files(self, executable): | ||
return [executable] + self._program_files_from_executable( | ||
executable, self.REQUIRED_PATHS, parent_dir=True | ||
) | ||
|
||
def version(self, executable): | ||
return self._version_from_tool(executable) | ||
|
||
def name(self): | ||
return "LIV" | ||
|
||
def project_url(self): | ||
return "https://gitlab.com/sosy-lab/software/liv" | ||
|
||
def cmdline(self, executable, options, task, rlimits): | ||
if task.property_file: | ||
options = options + ["--property", task.property_file] | ||
|
||
data_model_param = get_data_model_from_task( | ||
task, {ILP32: "ILP32", LP64: "LP64"} | ||
) | ||
|
||
if data_model_param and "--data-model" not in options: | ||
options += ["--data-model", data_model_param] | ||
|
||
return [executable] + options + list(task.input_files_or_identifier) | ||
|
||
def determine_result(self, run): | ||
if not run.output: | ||
return benchexec.result.RESULT_ERROR | ||
lastline = run.output[-1] | ||
if "true" in lastline: | ||
return benchexec.result.RESULT_TRUE_PROP | ||
elif "false" in lastline: | ||
return benchexec.result.RESULT_FALSE_PROP | ||
elif "unknown" in lastline: | ||
return benchexec.result.RESULT_UNKNOWN | ||
else: | ||
return benchexec.result.RESULT_ERROR | ||
|
||
def get_value_from_output(self, output, identifier): | ||
# search for the text in output and get its value, | ||
# search the first line, that starts with the searched text | ||
# warn if there are more lines (multiple statistics from sequential analysis?) | ||
match = None | ||
for line in output: | ||
if line.lstrip().startswith(identifier): | ||
startPosition = line.find(":") + 1 | ||
endPosition = line.find("(", startPosition) | ||
if endPosition == -1: | ||
endPosition = len(line) | ||
if match is None: | ||
match = line[startPosition:endPosition].strip() | ||
else: | ||
logging.warning( | ||
"skipping repeated match for identifier '%s': '%s'", | ||
identifier, | ||
line, | ||
) | ||
return match |