[test] Skip flaky tests in TestMiSyntax on Darwin
authorVedant Kumar <vsk@apple.com>
Mon, 19 Mar 2018 20:50:50 +0000 (20:50 +0000)
committerVedant Kumar <vsk@apple.com>
Mon, 19 Mar 2018 20:50:50 +0000 (20:50 +0000)
These tests tend to time out locally and on our bots.

llvm-svn: 327906

lldb/packages/Python/lldbsuite/test/tools/lldb-mi/syntax/TestMiSyntax.py

index bf329fb..50a94b5 100644 (file)
@@ -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."""