[Lldb-commits] [lldb] [lldb] Get shared cache path from inferior, open (PR #180323)
via lldb-commits
lldb-commits at lists.llvm.org
Fri Feb 6 22:11:03 PST 2026
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 origin/main...HEAD lldb/test/API/commands/platform/basic/TestPlatformCommand.py
``````````
:warning:
The reproduction instructions above might return results for more than one PR
in a stack if you are using a stacked PR workflow. You can limit the results by
changing `origin/main` to the base branch/commit you want to compare against.
:warning:
</details>
<details>
<summary>
View the diff from darker here.
</summary>
``````````diff
--- TestPlatformCommand.py 2026-02-07 06:08:17.000000 +0000
+++ TestPlatformCommand.py 2026-02-07 06:10:30.695114 +0000
@@ -69,11 +69,13 @@
self.expect("shell dir c:\\", substrs=["Windows", "Program Files"])
elif re.match(".*-.*-.*-android", triple):
self.expect("platform shell ls /", substrs=["cache", "dev", "system"])
self.expect("shell ls /", substrs=["cache", "dev", "system"])
else:
- self.expect("platform shell ls /", substrs=["dev", "tmp", "usr"], ordered=False)
+ self.expect(
+ "platform shell ls /", substrs=["dev", "tmp", "usr"], ordered=False
+ )
self.expect("shell ls /", substrs=["dev", "tmp", "usr"], ordered=False)
@no_debug_info_test
def test_shell_builtin(self):
"""Test a shell built-in command (echo)"""
``````````
</details>
https://github.com/llvm/llvm-project/pull/180323
More information about the lldb-commits
mailing list