Remove XFAIL arm-linux decorator from passing tests

This commit is contained in:
Muhammad Omair Javaid 2020-05-11 04:44:57 +05:00
parent 634b359cf2
commit e179e7234f
4 changed files with 1 additions and 18 deletions

View File

@ -45,10 +45,6 @@ class IRInterpreterTestCase(TestBase):
oslist=['windows'],
bugnumber="http://llvm.org/pr21765")
@expectedFailureNetBSD
@expectedFailureAll(
oslist=['linux'],
archs=['arm'],
bugnumber="llvm.org/pr27868")
def test_ir_interpreter(self):
self.build_and_run()

View File

@ -23,7 +23,7 @@ class BuiltinTrapTestCase(TestBase):
# gcc generates incorrect linetable
@expectedFailureAll(archs="arm", compiler="gcc", triple=".*-android")
@expectedFailureAll(archs=['arm', 'aarch64'])
@expectedFailureAll(archs=['aarch64'])
@skipIfWindows
def test_with_run_command(self):
"""Test that LLDB handles a function with __builtin_trap correctly."""

View File

@ -18,10 +18,6 @@ class CreateDuringInstructionStepTestCase(TestBase):
@skipUnlessPlatform(['linux'])
@expectedFailureAndroid('llvm.org/pr24737', archs=['arm'])
@expectedFailureAll(
oslist=["linux"],
archs=["arm"],
bugnumber="llvm.org/pr24737")
def test_step_inst(self):
self.build(dictionary=self.getBuildFlags())
exe = self.getBuildArtifact("a.out")

View File

@ -21,15 +21,6 @@ class TestGdbRemoteSingleStep(gdbremote_testcase.GdbRemoteTestCaseBase):
@skipIfWindows # No pty support to test any inferior std -i/e/o
@llgs_test
@expectedFailureAndroid(
bugnumber="llvm.org/pr24739",
archs=[
"arm",
"aarch64"])
@expectedFailureAll(
oslist=["linux"],
archs=["arm"],
bugnumber="llvm.org/pr24739")
@skipIf(triple='^mips')
def test_single_step_only_steps_one_instruction_with_s_llgs(self):
self.init_llgs_test()