-
Notifications
You must be signed in to change notification settings - Fork 14.3k
[lldb] Improve editline completion formatting #116456
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
Merged
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
3434c7d
[lldb] Improve editline completion formatting
JDevlieghere f6c8827
Address Pavel's code review comments
JDevlieghere 5e0304f
Add test
JDevlieghere 6279665
Address another one of Pavel's comments
JDevlieghere 67a7db0
Appease the formatter
JDevlieghere fde3069
Address Pavel's feedback
JDevlieghere File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
import lldb | ||
from lldbsuite.test.decorators import * | ||
from lldbsuite.test.lldbtest import * | ||
from lldbsuite.test import lldbutil | ||
from lldbsuite.test.lldbpexpect import PExpectTest | ||
|
||
|
||
class EditlineCompletionsTest(PExpectTest): | ||
@skipIfAsan | ||
@skipIfEditlineSupportMissing | ||
def test_completion_truncated(self): | ||
"""Test that the completion is correctly truncated.""" | ||
self.launch(dimensions=(10, 20)) | ||
self.child.send("_regexp-\t") | ||
self.child.expect(" _regexp-a...") | ||
self.child.expect(" _regexp-b...") | ||
|
||
@skipIfAsan | ||
@skipIfEditlineSupportMissing | ||
def test_description_truncated(self): | ||
"""Test that the description is correctly truncated.""" | ||
self.launch(dimensions=(10, 70)) | ||
self.child.send("_regexp-\t") | ||
self.child.expect( | ||
" _regexp-attach -- Attach to process by ID or name." | ||
) | ||
self.child.expect( | ||
" _regexp-break -- Set a breakpoint using one of several..." | ||
) | ||
|
||
@skipIfAsan | ||
@skipIfEditlineSupportMissing | ||
def test_separator_omitted(self): | ||
"""Test that the separated is correctly omitted.""" | ||
self.launch(dimensions=(10, 32)) | ||
self.child.send("_regexp-\t") | ||
self.child.expect(" _regexp-attach \r\n") | ||
self.child.expect(" _regexp-break \r\n") | ||
|
||
@skipIfAsan | ||
@skipIfEditlineSupportMissing | ||
def test_separator(self): | ||
"""Test that the separated is correctly printed.""" | ||
self.launch(dimensions=(10, 33)) | ||
self.child.send("_regexp-\t") | ||
self.child.expect(" _regexp-attach -- A...") | ||
self.child.expect(" _regexp-break -- S...") | ||
|
||
@skipIfAsan | ||
@skipIfEditlineSupportMissing | ||
def test_multiline_description(self): | ||
"""Test that multi-line descriptions are correctly padded and truncated.""" | ||
self.launch(dimensions=(10, 72)) | ||
self.child.send("k\t") | ||
self.child.expect( | ||
" kdp-remote -- Connect to a process via remote KDP server." | ||
) | ||
self.child.expect( | ||
" If no UDP port is specified, port 41139 is assu..." | ||
) | ||
self.child.expect( | ||
" kdp-remote is an abbreviation for 'process conn..." | ||
) | ||
self.child.expect(" kill -- Terminate the current target process.") |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.