Skip to content

Commit 61d323b

Browse files
committed
Update debugger to listen to external progress events by default
1 parent 2d56e1d commit 61d323b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lldb/source/Core/Debugger.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1952,7 +1952,8 @@ lldb::thread_result_t Debugger::DefaultEventHandler() {
19521952
listener_sp->StartListeningForEvents(
19531953
&m_broadcaster, lldb::eBroadcastBitProgress | lldb::eBroadcastBitWarning |
19541954
lldb::eBroadcastBitError |
1955-
lldb::eBroadcastSymbolChange);
1955+
lldb::eBroadcastSymbolChange |
1956+
lldb::eBroadcastBitExternalProgress);
19561957

19571958
// Let the thread that spawned us know that we have started up and that we
19581959
// are now listening to all required events so no events get missed

lldb/test/API/python_api/sbprogress/TestSBProgress.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55

66

77
class SBProgressTestCase(TestBase):
8-
98
def test_with_external_bit_set(self):
109
"""Test SBProgress events are listened to when the external bit is set."""
1110

0 commit comments

Comments
 (0)