forked from OSchip/llvm-project
[test] Skip flaky tests in TestMiSyntax on Darwin
These tests tend to time out locally and on our bots. llvm-svn: 327906
This commit is contained in:
parent
206f29b804
commit
1d2bd15821
|
@ -19,6 +19,7 @@ class MiSyntaxTestCase(lldbmi_testcase.MiTestCaseBase):
|
|||
@skipIfWindows # llvm.org/pr24452: Get lldb-mi tests working on Windows
|
||||
@skipIfFreeBSD # llvm.org/pr22411: Failure presumably due to known thread races
|
||||
@skipIfRemote # We do not currently support remote debugging via the MI.
|
||||
@skipIfDarwin
|
||||
def test_lldbmi_tokens(self):
|
||||
"""Test that 'lldb-mi --interpreter' prints command tokens."""
|
||||
|
||||
|
@ -43,6 +44,7 @@ class MiSyntaxTestCase(lldbmi_testcase.MiTestCaseBase):
|
|||
@skipIfWindows # llvm.org/pr24452: Get lldb-mi tests working on Windows
|
||||
@skipIfFreeBSD # llvm.org/pr22411: Failure presumably due to known thread races
|
||||
@skipIfRemote # We do not currently support remote debugging via the MI.
|
||||
@skipIfDarwin
|
||||
def test_lldbmi_specialchars(self):
|
||||
"""Test that 'lldb-mi --interpreter' handles complicated strings."""
|
||||
|
||||
|
@ -68,6 +70,7 @@ class MiSyntaxTestCase(lldbmi_testcase.MiTestCaseBase):
|
|||
|
||||
@skipIfWindows # llvm.org/pr24452: Get lldb-mi tests working on Windows
|
||||
@skipIfFreeBSD # llvm.org/pr22411: Failure presumably due to known thread races
|
||||
@skipIfDarwin
|
||||
@skipIfRemote # We do not currently support remote debugging via the MI.
|
||||
def test_lldbmi_output_grammar(self):
|
||||
"""Test that 'lldb-mi --interpreter' uses standard output syntax."""
|
||||
|
|
Loading…
Reference in New Issue