mirror of
https://github.com/llvm/llvm-project.git
synced 2025-05-10 20:26:06 +00:00

This is an ongoing series of commits that are reformatting our Python code. Reformatting is done with `black` (23.1.0). 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. RFC: https://discourse.llvm.org/t/rfc-document-and-standardize-python-code-style Differential revision: https://reviews.llvm.org/D151460
18 lines
638 B
Python
18 lines
638 B
Python
from lldbsuite.support import seven
|
|
|
|
|
|
class BuildError(Exception):
|
|
def __init__(self, called_process_error):
|
|
super(BuildError, self).__init__("Error when building test subject")
|
|
self.command = seven.join_for_shell(called_process_error.cmd)
|
|
self.build_error = called_process_error.output
|
|
|
|
def __str__(self):
|
|
return self.format_build_error(self.command, self.build_error)
|
|
|
|
@staticmethod
|
|
def format_build_error(command, command_output):
|
|
return "Error when building test subject.\n\nBuild Command:\n{}\n\nBuild Command Output:\n{}".format(
|
|
command, command_output
|
|
)
|