diff options
author | Vedant Kumar <vsk@apple.com> | 2018-03-19 20:50:50 +0000 |
---|---|---|
committer | Vedant Kumar <vsk@apple.com> | 2018-03-19 20:50:50 +0000 |
commit | 1d2bd158213520acc9788027b3b58adc0be02d19 (patch) | |
tree | feea07b9420da24824f61d0300a9847bf6af3323 /lldb/packages/Python/lldbsuite/test/tools | |
parent | 206f29b8048d510c746f9dd2c702c7179d8ca93f (diff) | |
download | bcm5719-llvm-1d2bd158213520acc9788027b3b58adc0be02d19.tar.gz bcm5719-llvm-1d2bd158213520acc9788027b3b58adc0be02d19.zip |
[test] Skip flaky tests in TestMiSyntax on Darwin
These tests tend to time out locally and on our bots.
llvm-svn: 327906
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/tools')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/tools/lldb-mi/syntax/TestMiSyntax.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/syntax/TestMiSyntax.py b/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/syntax/TestMiSyntax.py index bf329fbacd5..50a94b53a18 100644 --- a/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/syntax/TestMiSyntax.py +++ b/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/syntax/TestMiSyntax.py @@ -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.""" |