Author: Charles Zablit Date: 2026-02-17T07:07:57+01:00 New Revision: a65c4f4d2b84b5a80ffc7ae2fb19781258167952
URL: https://github.com/llvm/llvm-project/commit/a65c4f4d2b84b5a80ffc7ae2fb19781258167952 DIFF: https://github.com/llvm/llvm-project/commit/a65c4f4d2b84b5a80ffc7ae2fb19781258167952.diff LOG: [lldb][windows] deactivate unicode tests on Windows (#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. Added: Modified: lldb/packages/Python/lldbsuite/test/decorators.py Removed: ################################################################################ diff --git a/lldb/packages/Python/lldbsuite/test/decorators.py b/lldb/packages/Python/lldbsuite/test/decorators.py index 0d3ae5b3cdd25..b4182b43cc502 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
