From 88c643b6fec27eec436c8d138fee6346e92337d6 Mon Sep 17 00:00:00 2001 From: Dimitry Andric Date: Tue, 20 Aug 2019 18:01:57 +0000 Subject: Remove upstream files and directories from vendor/lldb/dist that we do not use. This saves on repository space, and reduces the number of tree conflicts when merging. --- packages/Python/lldbsuite/test_event/build_exception.py | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 packages/Python/lldbsuite/test_event/build_exception.py (limited to 'packages/Python/lldbsuite/test_event/build_exception.py') diff --git a/packages/Python/lldbsuite/test_event/build_exception.py b/packages/Python/lldbsuite/test_event/build_exception.py deleted file mode 100644 index 5b00b92d47386..0000000000000 --- a/packages/Python/lldbsuite/test_event/build_exception.py +++ /dev/null @@ -1,16 +0,0 @@ -class BuildError(Exception): - - def __init__(self, called_process_error): - super(BuildError, self).__init__("Error when building test subject") - self.command = called_process_error.lldb_extensions.get( - "command", "") - self.build_error = called_process_error.lldb_extensions.get( - "stderr_content", "") - - 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) -- cgit v1.2.3