shlex.join is available in Python 3.8, which is the LLVM Project's minimum version. https://docs.python.org/3/library/shlex.html#shlex.join
18 lines
605 B
Python
18 lines
605 B
Python
import shlex
|
|
|
|
|
|
class BuildError(Exception):
|
|
def __init__(self, called_process_error):
|
|
super(BuildError, self).__init__("Error when building test subject")
|
|
self.command = shlex.join(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
|
|
)
|