From 6a9767c7e6983c3211e35757899fb83afb2eb807 Mon Sep 17 00:00:00 2001 From: Jim Ingham Date: Tue, 8 Nov 2016 20:36:40 +0000 Subject: Clean up the stop printing header lines. I added a "thread-stop-format" to distinguish between the form that is just the thread info (since the stop printing immediately prints the frame info) and one with more frame 0 info - which is useful for "thread list" and the like. I also added a frame.no-debug boolean to the format entities so you can print frame information differently between frames with source info and those without. This closes https://reviews.llvm.org/D26383. llvm-svn: 286288 --- .../lldbsuite/test/functionalities/completion/TestCompletion.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'lldb/packages/Python/lldbsuite/test/functionalities/completion') diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/completion/TestCompletion.py b/lldb/packages/Python/lldbsuite/test/functionalities/completion/TestCompletion.py index aadd664dff5..9f55f64b2be 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/completion/TestCompletion.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/completion/TestCompletion.py @@ -190,8 +190,8 @@ class CommandLineCompletionTestCase(TestBase): @skipIfFreeBSD # timing out on the FreeBSD buildbot @no_debug_info_test def test_settings_set_th(self): - """Test that 'settings set th' completes to 'settings set thread-format'.""" - self.complete_from_to('settings set th', 'settings set thread-format') + """Test that 'settings set thread-f' completes to 'settings set thread-format'.""" + self.complete_from_to('settings set thread-f', 'settings set thread-format') @expectedFailureAll(hostoslist=["windows"], bugnumber="llvm.org/pr24679") @skipIfFreeBSD # timing out on the FreeBSD buildbot @@ -204,9 +204,9 @@ class CommandLineCompletionTestCase(TestBase): @skipIfFreeBSD # timing out on the FreeBSD buildbot @no_debug_info_test def test_settings_clear_th(self): - """Test that 'settings clear th' completes to 'settings clear thread-format'.""" + """Test that 'settings clear thread-f' completes to 'settings clear thread-format'.""" self.complete_from_to( - 'settings clear th', + 'settings clear thread-f', 'settings clear thread-format') @expectedFailureAll(hostoslist=["windows"], bugnumber="llvm.org/pr24679") -- cgit v1.2.3