forked from OSchip/llvm-project
Skip tests on Darwin for now. The build bots are not passing due to heavy load and poor machines.
llvm-svn: 340112
This commit is contained in:
parent
59b2485ba2
commit
c1f10e34ed
|
@ -46,6 +46,7 @@ class TestVSCode_attach(lldbvscode_testcase.VSCodeTestCaseBase):
|
|||
|
||||
|
||||
@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_testcase.VSCodeTestCaseBase):
|
|||
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_testcase.VSCodeTestCaseBase):
|
|||
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_testcase.VSCodeTestCaseBase):
|
|||
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):
|
||||
'''
|
||||
|
|
|
@ -19,6 +19,7 @@ class TestVSCode_setBreakpoints(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_set_and_clear(self):
|
||||
'''Tests setting and clearing source file and line breakpoints.
|
||||
|
@ -151,6 +152,7 @@ class TestVSCode_setBreakpoints(lldbvscode_testcase.VSCodeTestCaseBase):
|
|||
"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
|
||||
|
|
|
@ -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.
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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):
|
||||
'''
|
||||
|
|
|
@ -53,6 +53,7 @@ class TestVSCode_stackTrace(lldbvscode_testcase.VSCodeTestCaseBase):
|
|||
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):
|
||||
'''
|
||||
|
|
|
@ -18,6 +18,7 @@ class TestVSCode_step(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_step(self):
|
||||
'''
|
||||
|
|
|
@ -75,6 +75,7 @@ class TestVSCode_variables(lldbvscode_testcase.VSCodeTestCaseBase):
|
|||
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):
|
||||
'''
|
||||
|
|
Loading…
Reference in New Issue