summaryrefslogtreecommitdiff
path: root/lldb/packages
diff options
context:
space:
mode:
authorGeorge Hu <huyubohyb@gmail.com>2022-11-04 15:37:18 -0700
committerGeorge Hu <huyubohyb@gmail.com>2022-11-04 15:37:18 -0700
commit03c7cd3a616b731cf041fbf164078b349223c4ef (patch)
tree5ba39f3cf276171459b93a02620913871256e0bb /lldb/packages
parentde14befa7730093ff3d46c7628fa1084f251e98d (diff)
downloadllvm-03c7cd3a616b731cf041fbf164078b349223c4ef.tar.gz
Revert "[lldb-vscode] Send Statistics Dump in terminated event"
This reverts commit e3ccbae309273900a42e30b606c15c873d57f1ea. There is a bug which is failing the test running on mac.
Diffstat (limited to 'lldb/packages')
-rw-r--r--lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/vscode.py8
1 files changed, 1 insertions, 7 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/vscode.py b/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/vscode.py
index c2de4ad5c7d9..d6a6abca53e3 100644
--- a/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/vscode.py
+++ b/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/vscode.py
@@ -369,13 +369,7 @@ class DebugCommunication(object):
def wait_for_exited(self):
event_dict = self.wait_for_event('exited')
if event_dict is None:
- raise ValueError("didn't get exited event")
- return event_dict
-
- def wait_for_terminated(self):
- event_dict = self.wait_for_event('terminated')
- if event_dict is None:
- raise ValueError("didn't get terminated event")
+ raise ValueError("didn't get stopped event")
return event_dict
def get_initialize_value(self, key):