[LLDB] Remove decorator from XPASSes AArch64/Windows

This patch remove XFAIL decorator from tests which as passing on AArch64
Windows. This is tested on surface pro x using tot llvm and clang 14.0.3
as compiler with visual studio 2019 x86_arm64 environment.
This commit is contained in:
Muhammad Omair Javaid 2022-06-07 19:30:24 +04:00
parent d3d9bbd104
commit 7daa9a9b40
7 changed files with 7 additions and 8 deletions

View File

@ -15,7 +15,7 @@ class TestSBCommandReturnObject(TestBase):
@skipIfNoSBHeaders
@expectedFailureAll(
oslist=["windows"],
oslist=["windows"], archs=["i[3-6]86", "x86_64"],
bugnumber="llvm.org/pr43570")
def test_sb_command_return_object(self):
env = {self.dylibPath: self.getLLDBLibraryEnvVal()}

View File

@ -20,7 +20,7 @@ class TestMultipleTargets(TestBase):
@skipIfNoSBHeaders
@skipIfHostIncompatibleWithRemote
@expectedFailureAll(
oslist=["windows"],
oslist=["windows"], archs=["i[3-6]86", "x86_64"],
bugnumber="llvm.org/pr20282")
@expectedFlakeyNetBSD
def test_multiple_targets(self):

View File

@ -20,10 +20,9 @@ class ExprCharTestCase(TestBase):
def test_default_char(self):
self.do_test()
@skipIf(oslist=["linux"], archs=["arm"], bugnumber="llvm.org/pr23069")
@skipIf(oslist=["linux"], archs=["aarch64", "arm"], bugnumber="llvm.org/pr23069")
@expectedFailureAll(
archs=[
"aarch64",
"powerpc64le",
"s390x"],
bugnumber="llvm.org/pr23069")

View File

@ -7,7 +7,7 @@ class ExprXValuePrintingTestCase(TestBase):
mydir = TestBase.compute_mydir(__file__)
@expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr21765")
@expectedFailureAll(oslist=["windows"], archs=["i[3-6]86", "x86_64"], bugnumber="llvm.org/pr21765")
def test(self):
"""Printing an xvalue should work."""
self.build()

View File

@ -175,7 +175,7 @@ class ReturnValueTestCase(TestBase):
"3.6"],
archs=["i386"])
@expectedFailureAll(compiler=["gcc"], archs=["x86_64", "i386"])
@expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr24778")
@expectedFailureAll(oslist=["windows"], archs=["i[3-6]86", "x86_64"], bugnumber="llvm.org/pr24778")
def test_vector_values(self):
self.build()
exe = self.getBuildArtifact("a.out")

View File

@ -7,7 +7,7 @@ class TestCaseClassTemplateNonTypeParameterPack(TestBase):
mydir = TestBase.compute_mydir(__file__)
@expectedFailureAll(oslist=["windows"]) # Fails to read memory from target.
@expectedFailureAll(oslist=["windows"], archs=["i[3-6]86", "x86_64"]) # Fails to read memory from target.
@no_debug_info_test
def test(self):
self.build()

View File

@ -7,7 +7,7 @@ class TestCaseClassTemplateTypeParameterPack(TestBase):
mydir = TestBase.compute_mydir(__file__)
@expectedFailureAll(oslist=["windows"]) # Fails to read memory from target.
@expectedFailureAll(oslist=["windows"], archs=["i[3-6]86", "x86_64"]) # Fails to read memory from target.
@no_debug_info_test
def test(self):
self.build()