[llvm-branch-commits] [llvm] Make script-mode default, change args, update tests accordingly (PR #204367)

via llvm-branch-commits llvm-branch-commits at lists.llvm.org
Wed Jun 17 08:17:57 PDT 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 cross-project-tests/debuginfo-tests/dexter/dex/debugger/dbgeng/dbgeng.py cross-project-tests/debuginfo-tests/dexter/dex/debugger/lldb/LLDB.py cross-project-tests/debuginfo-tests/dexter/dex/debugger/visualstudio/VisualStudio.py cross-project-tests/debuginfo-tests/dexter/dex/tools/TestToolBase.py cross-project-tests/debuginfo-tests/dexter/dex/tools/test/Tool.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
--- debugger/visualstudio/VisualStudio.py	2026-06-17 14:59:04.000000 +0000
+++ debugger/visualstudio/VisualStudio.py	2026-06-17 15:09:16.362579 +0000
@@ -392,20 +392,16 @@
             stop_reason=stop_reason,
             program_state=program_state,
         )
 
     def get_stack_frames(self, step_index: int) -> StepIR:
-        raise NotImplementedError(
-            "--use-heuristic required for visual studio."
-        )
+        raise NotImplementedError("--use-heuristic required for visual studio.")
 
     def collect_watches(
         self, step: StepIR, frame_idx: int, watches: List[str], scope_watches: List[str]
     ):
-        raise NotImplementedError(
-            "--use-heuristic required for visual studio."
-        )
+        raise NotImplementedError("--use-heuristic required for visual studio.")
 
     @property
     def is_running(self):
         return self._mode == VisualStudio.dbgRunMode
 

``````````

</details>


https://github.com/llvm/llvm-project/pull/204367


More information about the llvm-branch-commits mailing list