This is an ongoing series of commits that are reformatting our Python code. This catches the last of the python files to reformat. Since they where so few I bunched them together. Reformatting is done with `black`. If you end up having problems merging this commit because you have made changes to a python file, the best way to handle that is to run git checkout --ours <yourfile> and then reformat it with black. If you run into any problems, post to discourse about it and we will try to help. RFC Thread below: https://discourse.llvm.org/t/rfc-document-and-standardize-python-code-style Reviewed By: jhenderson, #libc, Mordante, sivachandra Differential Revision: https://reviews.llvm.org/D150784
53 lines
1.7 KiB
Python
53 lines
1.7 KiB
Python
# DExTer : Debugging Experience Tester
|
|
# ~~~~~~ ~ ~~ ~ ~~
|
|
#
|
|
# Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
# See https://llvm.org/LICENSE.txt for license information.
|
|
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
"""This is a special subtool that is run when no subtool is specified.
|
|
It just provides a welcome message and simple usage instructions.
|
|
"""
|
|
|
|
from dex.tools import ToolBase, get_tool_names
|
|
from dex.utils.Exceptions import Error
|
|
from dex.utils.ReturnCode import ReturnCode
|
|
|
|
|
|
# This is a special "tool" that is run when no subtool has been specified on
|
|
# the command line. Its only job is to provide useful usage info.
|
|
class Tool(ToolBase):
|
|
"""Welcome to DExTer (Debugging Experience Tester).
|
|
Please choose a subtool from the list below. Use 'dexter.py help' for more
|
|
information.
|
|
"""
|
|
|
|
@property
|
|
def name(self):
|
|
return "DExTer"
|
|
|
|
def add_tool_arguments(self, parser, defaults):
|
|
parser.description = Tool.__doc__
|
|
parser.add_argument(
|
|
"subtool",
|
|
choices=[t for t in get_tool_names() if not t.endswith("-")],
|
|
nargs="?",
|
|
help="name of subtool",
|
|
)
|
|
parser.add_argument(
|
|
"subtool_options",
|
|
metavar="subtool-options",
|
|
nargs="*",
|
|
help="subtool specific options",
|
|
)
|
|
|
|
def handle_options(self, defaults):
|
|
if not self.context.options.subtool:
|
|
raise Error(
|
|
"<d>no subtool specified</>\n\n{}\n".format(self.parser.format_help())
|
|
)
|
|
|
|
def go(self) -> ReturnCode:
|
|
# This fn is never called because not specifying a subtool raises an
|
|
# exception.
|
|
return ReturnCode._ERROR
|