[Lldb-commits] [lldb] [lldb][windows] re-enable unicode tests on Windows (PR #190828)
via lldb-commits
lldb-commits at lists.llvm.org
Fri Apr 10 09:45:53 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 lldb/packages/Python/lldbsuite/test/decorators.py lldb/test/API/terminal/hidden_frame_markers/TestHiddenFrameMarkers.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
--- test/API/terminal/hidden_frame_markers/TestHiddenFrameMarkers.py 2026-04-10 16:42:21.000000 +0000
+++ test/API/terminal/hidden_frame_markers/TestHiddenFrameMarkers.py 2026-04-10 16:45:22.731809 +0000
@@ -8,11 +8,13 @@
from lldbsuite.test import lldbutil
class HiddenFrameMarkerTest(TestBase):
@unicode_test
- @expectedFailureWindows(bugnumber="https://github.com/llvm/llvm-project/issues/191459")
+ @expectedFailureWindows(
+ bugnumber="https://github.com/llvm/llvm-project/issues/191459"
+ )
def test_hidden_frame_markers(self):
"""Test that hidden frame markers are rendered in backtraces"""
self.build()
lldbutil.run_to_source_breakpoint(
self, "// break here first", lldb.SBFileSpec("main.cpp")
@@ -48,11 +50,13 @@
" frame #4:",
],
)
@unicode_test
- @expectedFailureWindows(bugnumber="https://github.com/llvm/llvm-project/issues/191459")
+ @expectedFailureWindows(
+ bugnumber="https://github.com/llvm/llvm-project/issues/191459"
+ )
def test_nested_hidden_frame_markers(self):
"""Test that nested hidden frame markers are rendered in backtraces"""
self.build()
lldbutil.run_to_source_breakpoint(
self, "// break here after", lldb.SBFileSpec("main.cpp")
``````````
</details>
https://github.com/llvm/llvm-project/pull/190828
More information about the lldb-commits
mailing list