[Lldb-commits] [lldb] 3805455 - Fix buildbots after https://reviews.llvm.org/D119797
Greg Clayton via lldb-commits
lldb-commits at lists.llvm.org
Thu Feb 17 23:59:57 PST 2022
Author: Greg Clayton
Date: 2022-02-17T23:59:15-08:00
New Revision: 38054556a08884aa15d3ebc720e2f43d0cb5a944
URL: https://github.com/llvm/llvm-project/commit/38054556a08884aa15d3ebc720e2f43d0cb5a944
DIFF: https://github.com/llvm/llvm-project/commit/38054556a08884aa15d3ebc720e2f43d0cb5a944.diff
LOG: Fix buildbots after https://reviews.llvm.org/D119797
This value error is no longer needed with the new version of the patch
Added:
Modified:
lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/vscode.py
Removed:
################################################################################
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 ae919fc2ed0c6..faa0b93b3f9a7 100644
--- a/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/vscode.py
+++ b/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/vscode.py
@@ -228,9 +228,9 @@ def handle_recv_packet(self, packet):
# 'stopped' event. We need to remember the thread stop
# reasons since the 'threads' command doesn't return
# that information.
- if not self.configuration_done_sent:
- raise ValueError("'stopped' event received before "
- "configuationDone packet was sent")
+ # if not self.configuration_done_sent:
+ # raise ValueError("'stopped' event received before "
+ # "configuationDone packet was sent")
self._process_stopped()
tid = body['threadId']
self.thread_stop_reasons[tid] = body
More information about the lldb-commits
mailing list