diff options
author | Greg Clayton <gclayton@apple.com> | 2018-08-18 00:33:15 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2018-08-18 00:33:15 +0000 |
commit | c1f10e34ed14372d9b4080db116c8e7f4fd0f7fb (patch) | |
tree | 23dd2ee83818e6176a5cdf302393076fd7f3ab18 /lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/launch | |
parent | 59b2485ba2850e4b60512eee80e13ddfe3abcfbc (diff) | |
download | bcm5719-llvm-c1f10e34ed14372d9b4080db116c8e7f4fd0f7fb.tar.gz bcm5719-llvm-c1f10e34ed14372d9b4080db116c8e7f4fd0f7fb.zip |
Skip tests on Darwin for now. The build bots are not passing due to heavy load and poor machines.
llvm-svn: 340112
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/launch')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/launch/TestVSCode_launch.py | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/launch/TestVSCode_launch.py b/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/launch/TestVSCode_launch.py index edaee299416..bc9e4f3a725 100644 --- a/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/launch/TestVSCode_launch.py +++ b/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/launch/TestVSCode_launch.py @@ -20,6 +20,7 @@ class TestVSCode_launch(lldbvscode_testcase.VSCodeTestCaseBase): 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_testcase.VSCodeTestCaseBase): "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_testcase.VSCodeTestCaseBase): '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_testcase.VSCodeTestCaseBase): 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_testcase.VSCodeTestCaseBase): 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_testcase.VSCodeTestCaseBase): 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_testcase.VSCodeTestCaseBase): 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_testcase.VSCodeTestCaseBase): 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_testcase.VSCodeTestCaseBase): 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_testcase.VSCodeTestCaseBase): '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_testcase.VSCodeTestCaseBase): 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): ''' |