forked from OSchip/llvm-project
Fix buildbots after https://reviews.llvm.org/D119797
This value error is no longer needed with the new version of the patch
This commit is contained in:
parent
eafafbae92
commit
38054556a0
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue