forked from sosy-lab/benchexec
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
1 changed file
with
46 additions
and
46 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 |
---|---|---|
@@ -1,46 +1,46 @@ | ||
# 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 benchexec.tools.template | ||
import benchexec.result as result | ||
|
||
|
||
class Tool(benchexec.tools.template.BaseTool2): | ||
""" | ||
Tool info for jcwit | ||
""" | ||
|
||
def executable(self, tool_locator): | ||
return tool_locator.find_executable("jcwit.py") | ||
|
||
def version(self, executable): | ||
return self._version_from_tool(executable) | ||
|
||
def name(self): | ||
return "jcwit" | ||
|
||
def project_url(self): | ||
return "https://github.com/Chriszai/JCWIT" | ||
|
||
def cmdline(self, executable, options, task, rlimits): | ||
return [executable] + options + list(task.input_files) | ||
|
||
def determine_result(self, run): | ||
for line in run.output: | ||
if ( | ||
"Witness result: Unknown" in line | ||
or "Witness validation: Unknown" in line | ||
): | ||
return result.RESULT_UNKNOWN | ||
|
||
if "Witness result: False" in line or "Witness validation: False" in line: | ||
return result.RESULT_FALSE_PROP | ||
|
||
if "Witness validation: True" in line: | ||
return result.RESULT_TRUE_PROP | ||
|
||
return result.RESULT_ERROR | ||
# 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 benchexec.tools.template | ||
import benchexec.result as result | ||
|
||
|
||
class Tool(benchexec.tools.template.BaseTool2): | ||
""" | ||
Tool info for jcwit | ||
""" | ||
|
||
def executable(self, tool_locator): | ||
return tool_locator.find_executable("jcwit.py") | ||
|
||
def version(self, executable): | ||
return self._version_from_tool(executable) | ||
|
||
def name(self): | ||
return "jcwit" | ||
|
||
def project_url(self): | ||
return "https://github.com/Chriszai/JCWIT" | ||
|
||
def cmdline(self, executable, options, task, rlimits): | ||
return [executable] + options + list(task.input_files) | ||
|
||
def determine_result(self, run): | ||
for line in run.output: | ||
if ( | ||
"Witness result: Unknown" in line | ||
or "Witness validation: Unknown" in line | ||
): | ||
return result.RESULT_UNKNOWN | ||
|
||
if "Witness result: False" in line or "Witness validation: False" in line: | ||
return result.RESULT_FALSE_PROP | ||
|
||
if "Witness validation: True" in line: | ||
return result.RESULT_TRUE_PROP | ||
|
||
return result.RESULT_ERROR |