https://github.com/charles-zablit created 
https://github.com/llvm/llvm-project/pull/181698

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.

>From 66e28926de6af4c8d83e09212f6c0e3901234abd Mon Sep 17 00:00:00 2001
From: Charles Zablit <[email protected]>
Date: Mon, 16 Feb 2026 17:29:12 +0100
Subject: [PATCH] [lldb][windows] deactivate unicode tests on Windows

---
 lldb/packages/Python/lldbsuite/test/decorators.py | 4 ++++
 1 file changed, 4 insertions(+)

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
 

_______________________________________________
lldb-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to