forked from OSchip/llvm-project
[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:
parent
54eff7da3c
commit
91d61c1431
|
@ -38,5 +38,6 @@ class ExprCharTestCase(TestBase):
|
||||||
'arm64_32'],
|
'arm64_32'],
|
||||||
bugnumber="llvm.org/pr23069, <rdar://problem/28721938>")
|
bugnumber="llvm.org/pr23069, <rdar://problem/28721938>")
|
||||||
@expectedFailureAll(triple='mips*', 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):
|
def test_unsigned_char(self):
|
||||||
self.do_test(dictionary={'CFLAGS_EXTRAS': '-funsigned-char'})
|
self.do_test(dictionary={'CFLAGS_EXTRAS': '-funsigned-char'})
|
||||||
|
|
Loading…
Reference in New Issue