diff options
author | Emmanuel Ferdman <emmanuelferdman@gmail.com> | 2025-05-12 00:47:21 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-05-11 14:47:21 -0700 |
commit | 2ccfb99d81d9fa9be6b0be02649d987106797979 (patch) | |
tree | 94a83a976768d928bb1e02ffbf8d5b47185788ef | |
parent | 6f4dcaed6b7b910d582b6b45003b5ddcd3812975 (diff) | |
download | llvm-2ccfb99d81d9fa9be6b0be02649d987106797979.zip llvm-2ccfb99d81d9fa9be6b0be02649d987106797979.tar.gz llvm-2ccfb99d81d9fa9be6b0be02649d987106797979.tar.bz2 |
[lldb] Fix term settings completion tests (#139447)
# PR Summary
Small PR - Several test functions for `term-width/height` completions
had identical names, causing silent overriding. This gives them distinct
_width/_height suffixes to ensure all tests run.
Signed-off-by: Emmanuel Ferdman <emmanuelferdman@gmail.com>
-rw-r--r-- | lldb/test/API/functionalities/completion/TestCompletion.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lldb/test/API/functionalities/completion/TestCompletion.py b/lldb/test/API/functionalities/completion/TestCompletion.py index bf043c7..e7c5372 100644 --- a/lldb/test/API/functionalities/completion/TestCompletion.py +++ b/lldb/test/API/functionalities/completion/TestCompletion.py @@ -334,22 +334,22 @@ class CommandLineCompletionTestCase(TestBase): "settings replace target.ru", "settings replace target.run-args" ) - def test_settings_show_term(self): + def test_settings_show_term_width(self): self.complete_from_to("settings show term-w", "settings show term-width") - def test_settings_list_term(self): + def test_settings_list_term_width(self): self.complete_from_to("settings list term-w", "settings list term-width") - def test_settings_show_term(self): + def test_settings_show_term_height(self): self.complete_from_to("settings show term-h", "settings show term-height") - def test_settings_list_term(self): + def test_settings_list_term_height(self): self.complete_from_to("settings list term-h", "settings list term-height") - def test_settings_remove_term(self): + def test_settings_remove_term_width(self): self.complete_from_to("settings remove term-w", "settings remove term-width") - def test_settings_remove_term(self): + def test_settings_remove_term_height(self): self.complete_from_to("settings remove term-h", "settings remove term-height") def test_settings_s(self): |