Skip to content

Commit

Permalink
Merge pull request #955 from ArpitaDutta/main
Browse files Browse the repository at this point in the history
Add tool-info module for TracerX-Del and TracerX-WP
  • Loading branch information
PhilippWendler authored Nov 6, 2023
2 parents 27610c8 + 18cd963 commit 035b06a
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
20 changes: 20 additions & 0 deletions benchexec/tools/tracerx-wp.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# 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.tracerx as tracerx


class Tool(tracerx.Tool):
"""
Tool info for TracerX-WP (https://www.comp.nus.edu.sg/~tracerx/).
"""

def executable(self, tool_locator):
return tool_locator.find_executable("tracerx-wp", subdir="bin")

def name(self):
return "TracerX-WP"
2 changes: 1 addition & 1 deletion benchexec/tools/tracerx.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def cmdline(self, executable, options, task, rlimits):
return [executable] + options + list(task.input_files_or_identifier)

def name(self):
return "Tracer-X"
return "TracerX-Del"

def project_url(self):
return "https://www.comp.nus.edu.sg/~tracerx/"
Expand Down

0 comments on commit 035b06a

Please sign in to comment.