From 91d61c1431c2ec46fa7a243db1643154580ab043 Mon Sep 17 00:00:00 2001 From: Muhammad Omair Javaid Date: Fri, 24 Jun 2022 13:41:30 +0400 Subject: [PATCH] [LLDB] Mark TestExprsChar Xfail for Windows/AArch64 test_unsigned_char test in TestExprsChar.py fails on AArch64/Windows platform. There is known bug already present for the failure for various arch/os combinations. This patch marks the test as xfail for windows/AArch64. --- lldb/test/API/commands/expression/char/TestExprsChar.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lldb/test/API/commands/expression/char/TestExprsChar.py b/lldb/test/API/commands/expression/char/TestExprsChar.py index cd9c55b5a44b..849615ef9145 100644 --- a/lldb/test/API/commands/expression/char/TestExprsChar.py +++ b/lldb/test/API/commands/expression/char/TestExprsChar.py @@ -38,5 +38,6 @@ class ExprCharTestCase(TestBase): 'arm64_32'], bugnumber="llvm.org/pr23069, ") @expectedFailureAll(triple='mips*', bugnumber="llvm.org/pr23069") + @expectedFailureAll(oslist=['windows'], archs=['aarch64'], bugnumber="llvm.org/pr23069") def test_unsigned_char(self): self.do_test(dictionary={'CFLAGS_EXTRAS': '-funsigned-char'})