[Lldb-commits] [lldb] r327906 - [test] Skip flaky tests in TestMiSyntax on Darwin

Vedant Kumar via lldb-commits lldb-commits at lists.llvm.org
Mon Mar 19 13:50:50 PDT 2018


Author: vedantk
Date: Mon Mar 19 13:50:50 2018
New Revision: 327906

URL: http://llvm.org/viewvc/llvm-project?rev=327906&view=rev
Log:
[test] Skip flaky tests in TestMiSyntax on Darwin

These tests tend to time out locally and on our bots.

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

Modified: lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-mi/syntax/TestMiSyntax.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-mi/syntax/TestMiSyntax.py?rev=327906&r1=327905&r2=327906&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-mi/syntax/TestMiSyntax.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-mi/syntax/TestMiSyntax.py Mon Mar 19 13:50:50 2018
@@ -19,6 +19,7 @@ class MiSyntaxTestCase(lldbmi_testcase.M
     @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.M
     @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.M
 
     @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."""




More information about the lldb-commits mailing list