From 38054556a08884aa15d3ebc720e2f43d0cb5a944 Mon Sep 17 00:00:00 2001 From: Greg Clayton Date: Thu, 17 Feb 2022 23:59:15 -0800 Subject: [PATCH] Fix buildbots after https://reviews.llvm.org/D119797 This value error is no longer needed with the new version of the patch --- lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/vscode.py | 6 +++--- 1 file changed, 3 insertions(+), 3 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 ae919fc..faa0b93 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 @@ class DebugCommunication(object): # '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 -- 2.7.4