-
Notifications
You must be signed in to change notification settings - Fork 15.2k
[LLDB][SBProgress] Fix bad optional in sbprogress #128971
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -33,3 +33,15 @@ def test_without_external_bit_set(self): | |
| expected_string = "Test progress first increment" | ||
| progress.Increment(1, expected_string) | ||
| self.assertFalse(listener.PeekAtNextEvent(event)) | ||
|
|
||
| def test_with_external_bit_set(self): | ||
| """Test SBProgress can handle null events.""" | ||
|
|
||
| progress = lldb.SBProgress("Test SBProgress", "Test progress", self.dbg) | ||
| listener = lldb.SBListener("Test listener") | ||
| broadcaster = self.dbg.GetBroadcaster() | ||
| broadcaster.AddListener(listener, lldb.eBroadcastBitExternalProgress) | ||
| event = lldb.SBEvent() | ||
|
|
||
| progress.Increment(1, None) | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Would
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Good callout, I expanded the test case. |
||
| self.assertTrue(listener.PeekAtNextEvent(event)) | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
So this only calls increment if there is a non-null and non-empty description. Is that the correct behavior? Or should we still be calling increment with a
nulloptin that case?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No we only set the value of the description optional if non-null, non-empty description. So
Increment(1, NULL/None in Python)will bump the count by one but send no message.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah yeah, I read that wrong. Thanks for confirming.