Skip to content

Commit a65c4f4

Browse files
[lldb][windows] deactivate unicode tests on Windows (#181698)
#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.
1 parent b37174e commit a65c4f4

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

lldb/packages/Python/lldbsuite/test/decorators.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -452,6 +452,10 @@ def unicode_test(func):
452452
previous value afterwards.
453453
"""
454454

455+
if sys.platform == "win32":
456+
# Unicode support on Windows is flaky in CI.
457+
return expectedFailureWindows
458+
455459
def unicode_wrapped(*args, **kwargs):
456460
import os
457461

0 commit comments

Comments
 (0)