[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.
This commit is contained in:
Muhammad Omair Javaid 2022-06-24 13:41:30 +04:00
parent 54eff7da3c
commit 91d61c1431
1 changed files with 1 additions and 0 deletions

View File

@ -38,5 +38,6 @@ class ExprCharTestCase(TestBase):
'arm64_32'],
bugnumber="llvm.org/pr23069, <rdar://problem/28721938>")
@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'})