[Lldb-commits] [lldb] [lldb][windows] deactivate unicode tests on Windows (PR #181698)
via lldb-commits
lldb-commits at lists.llvm.org
Mon Feb 16 08:32:44 PST 2026
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-lldb
Author: Charles Zablit (charles-zablit)
<details>
<summary>Changes</summary>
https://github.com/llvm/llvm-project/pull/181143 introduced a regression in Windows build bots, which is due to some Unicode characters not being rendered properly.
The proper fix is to be able to configure the characters that are rendered, and to force them to be ascii characters.
---
Full diff: https://github.com/llvm/llvm-project/pull/181698.diff
1 Files Affected:
- (modified) lldb/packages/Python/lldbsuite/test/decorators.py (+4)
``````````diff
diff --git a/lldb/packages/Python/lldbsuite/test/decorators.py b/lldb/packages/Python/lldbsuite/test/decorators.py
index b4658b149af90..69c88563f4ad9 100644
--- a/lldb/packages/Python/lldbsuite/test/decorators.py
+++ b/lldb/packages/Python/lldbsuite/test/decorators.py
@@ -452,6 +452,10 @@ def unicode_test(func):
previous value afterwards.
"""
+ if sys.platform == "win32":
+ # Unicode support on Windows is flaky in CI.
+ return expectedFailureWindows
+
def unicode_wrapped(*args, **kwargs):
import os
``````````
</details>
https://github.com/llvm/llvm-project/pull/181698
More information about the lldb-commits
mailing list