Skip to content

Commit

Permalink
Merge pull request #957 from felixmaechtle/patch-1
Browse files Browse the repository at this point in the history
Update swat module-info
  • Loading branch information
PhilippWendler authored Nov 8, 2023
2 parents 72c4603 + 8f8abda commit 3a35d47
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion benchexec/tools/swat.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,25 @@ class Tool(BaseTool2):
SWAT is currently being developed by the Institute for IT Security at the University of Luebeck.
"""

REQUIRED_PATHS = [
"knife-fuzzer",
"local_z3_installation",
"WitnessCreator",
"run-swat.sh",
"run_swat.py",
]

def executable(self, tool_locator):
return tool_locator.find_executable("run-swat.sh")

def name(self):
return "SWAT"

def project_url(self):
return "https://www.its.uni-luebeck.de/en/institute.html"
return "https://www.its.uni-luebeck.de/en/research/tools/swat/"

def version(self, executable):
return self._version_from_tool(executable, arg="-v")

def cmdline(self, executable, options, task, rlimits):
cmd = [executable] + options
Expand Down

0 comments on commit 3a35d47

Please sign in to comment.