[Lldb-commits] [lldb] r340112 - Skip tests on Darwin for now. The build bots are not passing due to heavy load and poor machines.

Greg Clayton via lldb-commits lldb-commits at lists.llvm.org
Fri Aug 17 17:33:15 PDT 2018


Author: gclayton
Date: Fri Aug 17 17:33:15 2018
New Revision: 340112

URL: http://llvm.org/viewvc/llvm-project?rev=340112&view=rev
Log:
Skip tests on Darwin for now. The build bots are not passing due to heavy load and poor machines.

Modified:
    lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-vscode/attach/TestVSCode_attach.py
    lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-vscode/breakpoint/TestVSCode_setBreakpoints.py
    lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-vscode/breakpoint/TestVSCode_setExceptionBreakpoints.py
    lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-vscode/breakpoint/TestVSCode_setFunctionBreakpoints.py
    lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-vscode/launch/TestVSCode_launch.py
    lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-vscode/stackTrace/TestVSCode_stackTrace.py
    lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-vscode/step/TestVSCode_step.py
    lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-vscode/variables/TestVSCode_variables.py

Modified: lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-vscode/attach/TestVSCode_attach.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-vscode/attach/TestVSCode_attach.py?rev=340112&r1=340111&r2=340112&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-vscode/attach/TestVSCode_attach.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-vscode/attach/TestVSCode_attach.py Fri Aug 17 17:33:15 2018
@@ -46,6 +46,7 @@ class TestVSCode_attach(lldbvscode_testc
 
 
     @skipIfWindows
+    @skipIfDarwin # Skip this test for now until we can figure out why tings aren't working on build bots
     @no_debug_info_test
     def test_by_pid(self):
         '''
@@ -61,6 +62,7 @@ class TestVSCode_attach(lldbvscode_testc
         self.set_and_hit_breakpoint(continueToExit=True)
 
     @skipIfWindows
+    @skipIfDarwin # Skip this test for now until we can figure out why tings aren't working on build bots
     @no_debug_info_test
     def test_by_name(self):
         '''
@@ -89,7 +91,7 @@ class TestVSCode_attach(lldbvscode_testc
                                         stdout=subprocess.PIPE,
                                         stderr=subprocess.PIPE)
         # Wait for a bit to ensure the process is launched
-        time.sleep(1)
+        time.sleep(5)
         self.attach(program=program)
         self.set_and_hit_breakpoint(continueToExit=True)
 
@@ -111,6 +113,7 @@ class TestVSCode_attach(lldbvscode_testc
         self.set_and_hit_breakpoint(continueToExit=True)
 
     @skipIfWindows
+    @skipIfDarwin # Skip this test for now until we can figure out why tings aren't working on build bots
     @no_debug_info_test
     def test_commands(self):
         '''

Modified: lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-vscode/breakpoint/TestVSCode_setBreakpoints.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-vscode/breakpoint/TestVSCode_setBreakpoints.py?rev=340112&r1=340111&r2=340112&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-vscode/breakpoint/TestVSCode_setBreakpoints.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-vscode/breakpoint/TestVSCode_setBreakpoints.py Fri Aug 17 17:33:15 2018
@@ -19,6 +19,7 @@ class TestVSCode_setBreakpoints(lldbvsco
     mydir = TestBase.compute_mydir(__file__)
 
     @skipIfWindows
+    @skipIfDarwin # Skip this test for now until we can figure out why tings aren't working on build bots
     @no_debug_info_test
     def test_set_and_clear(self):
         '''Tests setting and clearing source file and line breakpoints.
@@ -151,6 +152,7 @@ class TestVSCode_setBreakpoints(lldbvsco
                                 "expect breakpoint still verified")
 
     @skipIfWindows
+    @skipIfDarwin # Skip this test for now until we can figure out why tings aren't working on build bots
     @no_debug_info_test
     def test_functionality(self):
         '''Tests hitting breakpoints and the functionality of a single

Modified: lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-vscode/breakpoint/TestVSCode_setExceptionBreakpoints.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-vscode/breakpoint/TestVSCode_setExceptionBreakpoints.py?rev=340112&r1=340111&r2=340112&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-vscode/breakpoint/TestVSCode_setExceptionBreakpoints.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-vscode/breakpoint/TestVSCode_setExceptionBreakpoints.py Fri Aug 17 17:33:15 2018
@@ -20,6 +20,7 @@ class TestVSCode_setExceptionBreakpoints
     mydir = TestBase.compute_mydir(__file__)
 
     @skipIfWindows
+    @skipIfDarwin # Skip this test for now until we can figure out why tings aren't working on build bots
     @no_debug_info_test
     def test_functionality(self):
         '''Tests setting and clearing exception breakpoints.

Modified: lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-vscode/breakpoint/TestVSCode_setFunctionBreakpoints.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-vscode/breakpoint/TestVSCode_setFunctionBreakpoints.py?rev=340112&r1=340111&r2=340112&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-vscode/breakpoint/TestVSCode_setFunctionBreakpoints.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-vscode/breakpoint/TestVSCode_setFunctionBreakpoints.py Fri Aug 17 17:33:15 2018
@@ -20,6 +20,7 @@ class TestVSCode_setFunctionBreakpoints(
     mydir = TestBase.compute_mydir(__file__)
 
     @skipIfWindows
+    @skipIfDarwin # Skip this test for now until we can figure out why tings aren't working on build bots
     @no_debug_info_test
     def test_set_and_clear(self):
         '''Tests setting and clearing function breakpoints.
@@ -111,6 +112,7 @@ class TestVSCode_setFunctionBreakpoints(
                             "expect %u source breakpoints" % (len(functions)))
 
     @skipIfWindows
+    @skipIfDarwin # Skip this test for now until we can figure out why tings aren't working on build bots
     @no_debug_info_test
     def test_functionality(self):
         '''Tests hitting breakpoints and the functionality of a single

Modified: lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-vscode/launch/TestVSCode_launch.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-vscode/launch/TestVSCode_launch.py?rev=340112&r1=340111&r2=340112&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-vscode/launch/TestVSCode_launch.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-vscode/launch/TestVSCode_launch.py Fri Aug 17 17:33:15 2018
@@ -20,6 +20,7 @@ class TestVSCode_launch(lldbvscode_testc
     mydir = TestBase.compute_mydir(__file__)
 
     @skipIfWindows
+    @skipIfDarwin # Skip this test for now until we can figure out why tings aren't working on build bots
     @no_debug_info_test
     def test_default(self):
         '''
@@ -38,6 +39,7 @@ class TestVSCode_launch(lldbvscode_testc
                         "make sure program path is in first argument")
 
     @skipIfWindows
+    @skipIfDarwin # Skip this test for now until we can figure out why tings aren't working on build bots
     @no_debug_info_test
     def test_stopOnEntry(self):
         '''
@@ -58,6 +60,7 @@ class TestVSCode_launch(lldbvscode_testc
                         'verify stop isn\'t "main" breakpoint')
 
     @skipIfWindows
+    @skipIfDarwin # Skip this test for now until we can figure out why tings aren't working on build bots
     @no_debug_info_test
     def test_cwd(self):
         '''
@@ -85,6 +88,7 @@ class TestVSCode_launch(lldbvscode_testc
         self.assertTrue(found, "verified program working directory")
 
     @skipIfWindows
+    @skipIfDarwin # Skip this test for now until we can figure out why tings aren't working on build bots
     @no_debug_info_test
     def test_debuggerRoot(self):
         '''
@@ -113,6 +117,7 @@ class TestVSCode_launch(lldbvscode_testc
         self.continue_to_exit()
 
     @skipIfWindows
+    @skipIfDarwin # Skip this test for now until we can figure out why tings aren't working on build bots
     @no_debug_info_test
     def test_sourcePath(self):
         '''
@@ -139,6 +144,7 @@ class TestVSCode_launch(lldbvscode_testc
         self.continue_to_exit()
 
     @skipIfWindows
+    @skipIfDarwin # Skip this test for now until we can figure out why tings aren't working on build bots
     @no_debug_info_test
     def test_disableSTDIO(self):
         '''
@@ -153,8 +159,8 @@ class TestVSCode_launch(lldbvscode_testc
         self.assertTrue(output is None or len(output) == 0,
                         "expect no program output")
 
-    @skipUnlessDarwin
-    @skipIfDarwinEmbedded
+    @skipIfWindows
+    @skipIfDarwin # Skip this test for now until we can figure out why tings aren't working on build bots
     @no_debug_info_test
     def test_shellExpandArguments_enabled(self):
         '''
@@ -179,6 +185,7 @@ class TestVSCode_launch(lldbvscode_testc
                                     glob, program))
 
     @skipIfWindows
+    @skipIfDarwin # Skip this test for now until we can figure out why tings aren't working on build bots
     @no_debug_info_test
     def test_shellExpandArguments_disabled(self):
         '''
@@ -205,6 +212,7 @@ class TestVSCode_launch(lldbvscode_testc
                                     glob, glob))
 
     @skipIfWindows
+    @skipIfDarwin # Skip this test for now until we can figure out why tings aren't working on build bots
     @no_debug_info_test
     def test_args(self):
         '''
@@ -231,6 +239,7 @@ class TestVSCode_launch(lldbvscode_testc
                             'arg[%i] "%s" not in "%s"' % (i+1, quoted_arg, lines[i]))
 
     @skipIfWindows
+    @skipIfDarwin # Skip this test for now until we can figure out why tings aren't working on build bots
     @no_debug_info_test
     def test_environment(self):
         '''
@@ -264,6 +273,7 @@ class TestVSCode_launch(lldbvscode_testc
                                 var, lines))
 
     @skipIfWindows
+    @skipIfDarwin # Skip this test for now until we can figure out why tings aren't working on build bots
     @no_debug_info_test
     def test_commands(self):
         '''

Modified: lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-vscode/stackTrace/TestVSCode_stackTrace.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-vscode/stackTrace/TestVSCode_stackTrace.py?rev=340112&r1=340111&r2=340112&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-vscode/stackTrace/TestVSCode_stackTrace.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-vscode/stackTrace/TestVSCode_stackTrace.py Fri Aug 17 17:33:15 2018
@@ -53,6 +53,7 @@ class TestVSCode_stackTrace(lldbvscode_t
                                                      expected_line))
 
     @skipIfWindows
+    @skipIfDarwin # Skip this test for now until we can figure out why tings aren't working on build bots
     @no_debug_info_test
     def test_stackTrace(self):
         '''

Modified: lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-vscode/step/TestVSCode_step.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-vscode/step/TestVSCode_step.py?rev=340112&r1=340111&r2=340112&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-vscode/step/TestVSCode_step.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-vscode/step/TestVSCode_step.py Fri Aug 17 17:33:15 2018
@@ -18,6 +18,7 @@ class TestVSCode_step(lldbvscode_testcas
     mydir = TestBase.compute_mydir(__file__)
 
     @skipIfWindows
+    @skipIfDarwin # Skip this test for now until we can figure out why tings aren't working on build bots
     @no_debug_info_test
     def test_step(self):
         '''

Modified: lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-vscode/variables/TestVSCode_variables.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-vscode/variables/TestVSCode_variables.py?rev=340112&r1=340111&r2=340112&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-vscode/variables/TestVSCode_variables.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-vscode/variables/TestVSCode_variables.py Fri Aug 17 17:33:15 2018
@@ -75,6 +75,7 @@ class TestVSCode_variables(lldbvscode_te
             self.verify_values(verify_dict[name], variable, varref_dict)
 
     @skipIfWindows
+    @skipIfDarwin # Skip this test for now until we can figure out why tings aren't working on build bots
     @no_debug_info_test
     def test_scopes_variables_setVariable_evaluate(self):
         '''




More information about the lldb-commits mailing list