[Lldb-commits] [lldb] [lldb] Use validation combination of options in TestAbbreviations (PR #125270)
via lldb-commits
lldb-commits at lists.llvm.org
Fri Jan 31 11:20:03 PST 2025
github-actions[bot] wrote:
<!--LLVM CODE FORMAT COMMENT: {darker}-->
:warning: Python code formatter, darker found issues in your code. :warning:
<details>
<summary>
You can test this locally with the following command:
</summary>
``````````bash
darker --check --diff -r 1b0becf739ace0e04c57b50ab701b5e3d009ccbb...a33e43e56e8a58c1d53c566c0b9da7791254d68e lldb/test/API/functionalities/abbreviation/TestAbbreviations.py
``````````
</details>
<details>
<summary>
View the diff from darker here.
</summary>
``````````diff
--- TestAbbreviations.py 2025-01-31 19:10:57.000000 +0000
+++ TestAbbreviations.py 2025-01-31 19:19:05.426694 +0000
@@ -46,11 +46,13 @@
# Make sure an unabbreviated command is not mangled.
command_interpreter.ResolveCommand(
"breakpoint set --name main --ignore-count 123", result
)
self.assertTrue(result.Succeeded())
- self.assertEqual("breakpoint set --name main --ignore-count 123", result.GetOutput())
+ self.assertEqual(
+ "breakpoint set --name main --ignore-count 123", result.GetOutput()
+ )
# Create some aliases.
self.runCmd("com a alias com al")
self.runCmd("alias gurp help")
``````````
</details>
https://github.com/llvm/llvm-project/pull/125270
More information about the lldb-commits
mailing list