Skip to content

[lldb][Progress] Fix test for trimmed progress reports (#78357) #7984

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
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -33,24 +33,19 @@ def do_test(self, term_width, pattern_list):
# PExpect uses many timeouts internally and doesn't play well
# under ASAN on a loaded machine..
@skipIfAsan
@skipUnlessDarwin
@skipIfEditlineSupportMissing
def test_trimmed_progress_message(self):
self.do_test(
19, ["Locating externa...", "Loading Apple DW...", "Parsing symbol t..."]
)
self.do_test(19, ["Locating e...", "Parsing sy..."])

# PExpect uses many timeouts internally and doesn't play well
# under ASAN on a loaded machine..
@skipIfAsan
@skipUnlessDarwin
@skipIfEditlineSupportMissing
def test_long_progress_message(self):
self.do_test(
80,
[
"Locating external symbol file for a.out...",
"Loading Apple DWARF index for a.out...",
"Parsing symbol table for dyld...",
"Locating external symbol file",
"Parsing symbol table",
],
)