[Lldb-commits] [lldb] [lldb][test] Add --make argument to dotest.py (PR #93883)
via lldb-commits
lldb-commits at lists.llvm.org
Fri May 31 09:08:29 PDT 2024
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 419d363385c7fa8bd969a817f95ab025ae94277c...60032f8510b7086e36a86172fbaa090e4d7ef66f lldb/packages/Python/lldbsuite/test/builders/builder.py lldb/packages/Python/lldbsuite/test/configuration.py lldb/packages/Python/lldbsuite/test/dotest.py lldb/packages/Python/lldbsuite/test/dotest_args.py
``````````
</details>
<details>
<summary>
View the diff from darker here.
</summary>
``````````diff
--- dotest.py 2024-05-31 16:05:25.000000 +0000
+++ dotest.py 2024-05-31 16:08:04.479627 +0000
@@ -266,11 +266,11 @@
configuration.compiler = candidate
break
if args.make:
configuration.make_path = args.make
- elif platform_system == "FreeBSD" or platform_system == "NetBSD":
+ elif platform_system == "FreeBSD" or platform_system == "NetBSD":
configuration.make_path = "gmake"
else:
configuration.make_path = "make"
if args.dsymutil:
``````````
</details>
https://github.com/llvm/llvm-project/pull/93883
More information about the lldb-commits
mailing list