[Lldb-commits] [lldb] [lldb] Disable new TestLocationListLookup when clang version is <= 11 (PR #75102)
via lldb-commits
lldb-commits at lists.llvm.org
Mon Dec 11 13:33:18 PST 2023
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 13ef4fec26650a93b57709a23a3392582825afe7...0ec0f8ddf505ad30f8684e9452ebc4524f50a4b4 lldb/test/API/functionalities/location-list-lookup/TestLocationListLookup.py
``````````
</details>
<details>
<summary>
View the diff from darker here.
</summary>
``````````diff
--- TestLocationListLookup.py 2023-12-11 21:29:25.000000 +0000
+++ TestLocationListLookup.py 2023-12-11 21:33:11.003085 +0000
@@ -41,10 +41,10 @@
@skipIfDarwin
def test_loclist_frame_var(self):
self.build()
self.check_local_vars(self.launch(), check_expr=False)
- @skipIf(compiler="clang", compiler_version=['<=', '11.0'])
+ @skipIf(compiler="clang", compiler_version=["<=", "11.0"])
@skipUnlessDarwin
def test_loclist_expr(self):
self.build()
self.check_local_vars(self.launch(), check_expr=True)
``````````
</details>
https://github.com/llvm/llvm-project/pull/75102
More information about the lldb-commits
mailing list