diff options
author | Jonas Devlieghere <jonas@devlieghere.com> | 2019-10-29 16:30:37 -0700 |
---|---|---|
committer | Jonas Devlieghere <jonas@devlieghere.com> | 2019-10-29 16:56:59 -0700 |
commit | 9f989559bad779f21fcb37fb544f9ecb96d6f567 (patch) | |
tree | 7a1f50d6d482c82346ec8983d588d7ab7740a4cd /lldb/packages/Python/lldbsuite/test_event/formatter | |
parent | 8a82000e486afe472519d288f2206399ada95aca (diff) | |
download | bcm5719-llvm-9f989559bad779f21fcb37fb544f9ecb96d6f567.tar.gz bcm5719-llvm-9f989559bad779f21fcb37fb544f9ecb96d6f567.zip |
[lldbsuite] Remove the DumpFormatter
This formatter is never used or referenced.
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test_event/formatter')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test_event/formatter/dump_formatter.py | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/lldb/packages/Python/lldbsuite/test_event/formatter/dump_formatter.py b/lldb/packages/Python/lldbsuite/test_event/formatter/dump_formatter.py deleted file mode 100644 index 2a0cda14c3b..00000000000 --- a/lldb/packages/Python/lldbsuite/test_event/formatter/dump_formatter.py +++ /dev/null @@ -1,22 +0,0 @@ -""" -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 -""" - -from __future__ import print_function -from __future__ import absolute_import - -# System modules -import pprint - -# Our modules -from .results_formatter import ResultsFormatter - - -class DumpFormatter(ResultsFormatter): - """Formats events to the file as their raw python dictionary format.""" - - def handle_event(self, test_event): - super(DumpFormatter, self).handle_event(test_event) - self.out_file.write("\n" + pprint.pformat(test_event) + "\n") |