forked from OSchip/llvm-project
[LLDB] Fix window bot failure
This attempts to fix this bot failure: https://lab.llvm.org/buildbot/#/builders/83/builds/14736 caused by D118750 by un-xfail those expected failed tests. Differential Revision: https://reviews.llvm.org/D118866
This commit is contained in:
parent
961e954af5
commit
607ffa5515
|
@ -120,7 +120,6 @@ class RegisterCommandsTestCase(TestBase):
|
|||
|
||||
@skipIfiOSSimulator
|
||||
@skipIf(archs=no_match(['amd64', 'x86_64']))
|
||||
@expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr37683")
|
||||
def test_convenience_registers_with_process_attach(self):
|
||||
"""Test convenience registers after a 'process attach'."""
|
||||
self.build()
|
||||
|
@ -128,7 +127,6 @@ class RegisterCommandsTestCase(TestBase):
|
|||
|
||||
@skipIfiOSSimulator
|
||||
@skipIf(archs=no_match(['amd64', 'x86_64']))
|
||||
@expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr37683")
|
||||
def test_convenience_registers_16bit_with_process_attach(self):
|
||||
"""Test convenience registers after a 'process attach'."""
|
||||
self.build()
|
||||
|
|
|
@ -20,7 +20,6 @@ class CrashingInferiorTestCase(TestBase):
|
|||
self.build()
|
||||
self.inferior_crashing()
|
||||
|
||||
@expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr24778")
|
||||
def test_inferior_crashing_register(self):
|
||||
"""Test that lldb reliably reads registers from the inferior after crashing (command)."""
|
||||
self.build()
|
||||
|
|
|
@ -19,7 +19,6 @@ class CrashingInferiorStepTestCase(TestBase):
|
|||
self.build()
|
||||
self.inferior_crashing()
|
||||
|
||||
@expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr24778")
|
||||
def test_inferior_crashing_register(self):
|
||||
"""Test that lldb reliably reads registers from the inferior after crashing (command)."""
|
||||
self.build()
|
||||
|
@ -36,7 +35,6 @@ class CrashingInferiorStepTestCase(TestBase):
|
|||
self.build()
|
||||
self.inferior_crashing_expr()
|
||||
|
||||
@expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr24778")
|
||||
def test_inferior_crashing_step(self):
|
||||
"""Test that stepping after a crash behaves correctly."""
|
||||
self.build()
|
||||
|
|
|
@ -20,7 +20,6 @@ class CrashingRecursiveInferiorTestCase(TestBase):
|
|||
self.build()
|
||||
self.recursive_inferior_crashing()
|
||||
|
||||
@expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr24778")
|
||||
def test_recursive_inferior_crashing_register(self):
|
||||
"""Test that lldb reliably reads registers from the inferior after crashing (command)."""
|
||||
self.build()
|
||||
|
|
|
@ -12,7 +12,6 @@ class CrashingRecursiveInferiorStepTestCase(TestBase):
|
|||
|
||||
mydir = TestBase.compute_mydir(__file__)
|
||||
|
||||
@expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr24778")
|
||||
def test_recursive_inferior_crashing_step(self):
|
||||
"""Test that stepping after a crash behaves correctly."""
|
||||
self.build()
|
||||
|
|
Loading…
Reference in New Issue