mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-04-03 05:32:24 +00:00
[lldb/Test] Skip VSCode test on embedded Darwin
These tests are not configured to run on the device.
This commit is contained in:
parent
a750422609
commit
6990eaf1fe
@ -46,6 +46,7 @@ class TestVSCode_attach(lldbvscode_testcase.VSCodeTestCaseBase):
|
||||
|
||||
@skipIfWindows
|
||||
@skipIfNetBSD # Hangs on NetBSD as well
|
||||
@skipIfDarwinEmbedded
|
||||
def test_by_pid(self):
|
||||
'''
|
||||
Tests attaching to a process by process ID.
|
||||
@ -61,6 +62,7 @@ class TestVSCode_attach(lldbvscode_testcase.VSCodeTestCaseBase):
|
||||
|
||||
@skipIfWindows
|
||||
@skipIfNetBSD # Hangs on NetBSD as well
|
||||
@skipIfDarwinEmbedded
|
||||
def test_by_name(self):
|
||||
'''
|
||||
Tests attaching to a process by process name.
|
||||
|
@ -17,6 +17,7 @@ class TestVSCode_setBreakpoints(lldbvscode_testcase.VSCodeTestCaseBase):
|
||||
mydir = TestBase.compute_mydir(__file__)
|
||||
|
||||
@skipIfWindows
|
||||
@skipIfDarwinEmbedded
|
||||
def test_set_and_clear(self):
|
||||
'''Tests setting and clearing source file and line breakpoints.
|
||||
This packet is a bit tricky on the debug adaptor side since there
|
||||
@ -148,6 +149,7 @@ class TestVSCode_setBreakpoints(lldbvscode_testcase.VSCodeTestCaseBase):
|
||||
"expect breakpoint still verified")
|
||||
|
||||
@skipIfWindows
|
||||
@skipIfDarwinEmbedded
|
||||
def test_functionality(self):
|
||||
'''Tests hitting breakpoints and the functionality of a single
|
||||
breakpoint, like 'conditions' and 'hitCondition' settings.'''
|
||||
|
@ -18,6 +18,7 @@ class TestVSCode_setExceptionBreakpoints(
|
||||
|
||||
@skipIfWindows
|
||||
@expectedFailureNetBSD
|
||||
@skipIfDarwinEmbedded
|
||||
def test_functionality(self):
|
||||
'''Tests setting and clearing exception breakpoints.
|
||||
This packet is a bit tricky on the debug adaptor side since there
|
||||
|
@ -17,6 +17,7 @@ class TestVSCode_setFunctionBreakpoints(
|
||||
mydir = TestBase.compute_mydir(__file__)
|
||||
|
||||
@skipIfWindows
|
||||
@skipIfDarwinEmbedded
|
||||
def test_set_and_clear(self):
|
||||
'''Tests setting and clearing function breakpoints.
|
||||
This packet is a bit tricky on the debug adaptor side since there
|
||||
@ -107,6 +108,7 @@ class TestVSCode_setFunctionBreakpoints(
|
||||
"expect %u source breakpoints" % (len(functions)))
|
||||
|
||||
@skipIfWindows
|
||||
@skipIfDarwinEmbedded
|
||||
def test_functionality(self):
|
||||
'''Tests hitting breakpoints and the functionality of a single
|
||||
breakpoint, like 'conditions' and 'hitCondition' settings.'''
|
||||
|
@ -18,6 +18,7 @@ class TestVSCode_launch(lldbvscode_testcase.VSCodeTestCaseBase):
|
||||
|
||||
@skipIfWindows
|
||||
@skipIfDarwin # Flaky
|
||||
@skipIfDarwinEmbedded
|
||||
def test_default(self):
|
||||
'''
|
||||
Tests the default launch of a simple program. No arguments,
|
||||
@ -35,6 +36,7 @@ class TestVSCode_launch(lldbvscode_testcase.VSCodeTestCaseBase):
|
||||
"make sure program path is in first argument")
|
||||
|
||||
@skipIfWindows
|
||||
@skipIfDarwinEmbedded
|
||||
def test_stopOnEntry(self):
|
||||
'''
|
||||
Tests the default launch of a simple program that stops at the
|
||||
@ -54,6 +56,7 @@ class TestVSCode_launch(lldbvscode_testcase.VSCodeTestCaseBase):
|
||||
'verify stop isn\'t "main" breakpoint')
|
||||
|
||||
@skipIfWindows
|
||||
@skipIfDarwinEmbedded
|
||||
def test_cwd(self):
|
||||
'''
|
||||
Tests the default launch of a simple program with a current working
|
||||
@ -81,6 +84,7 @@ class TestVSCode_launch(lldbvscode_testcase.VSCodeTestCaseBase):
|
||||
self.assertTrue(found, "verified program working directory")
|
||||
|
||||
@skipIfWindows
|
||||
@skipIfDarwinEmbedded
|
||||
def test_debuggerRoot(self):
|
||||
'''
|
||||
Tests the "debuggerRoot" will change the working directory of
|
||||
@ -109,6 +113,7 @@ class TestVSCode_launch(lldbvscode_testcase.VSCodeTestCaseBase):
|
||||
self.continue_to_exit()
|
||||
|
||||
@skipIfWindows
|
||||
@skipIfDarwinEmbedded
|
||||
def test_sourcePath(self):
|
||||
'''
|
||||
Tests the "sourcePath" will set the target.source-map.
|
||||
@ -134,6 +139,7 @@ class TestVSCode_launch(lldbvscode_testcase.VSCodeTestCaseBase):
|
||||
self.continue_to_exit()
|
||||
|
||||
@skipIfWindows
|
||||
@skipIfDarwinEmbedded
|
||||
def test_disableSTDIO(self):
|
||||
'''
|
||||
Tests the default launch of a simple program with STDIO disabled.
|
||||
@ -150,6 +156,7 @@ class TestVSCode_launch(lldbvscode_testcase.VSCodeTestCaseBase):
|
||||
@skipIfWindows
|
||||
@skipIfLinux # shell argument expansion doesn't seem to work on Linux
|
||||
@expectedFailureNetBSD
|
||||
@skipIfDarwinEmbedded
|
||||
def test_shellExpandArguments_enabled(self):
|
||||
'''
|
||||
Tests the default launch of a simple program with shell expansion
|
||||
@ -173,6 +180,7 @@ class TestVSCode_launch(lldbvscode_testcase.VSCodeTestCaseBase):
|
||||
glob, program))
|
||||
|
||||
@skipIfWindows
|
||||
@skipIfDarwinEmbedded
|
||||
def test_shellExpandArguments_disabled(self):
|
||||
'''
|
||||
Tests the default launch of a simple program with shell expansion
|
||||
@ -198,6 +206,7 @@ class TestVSCode_launch(lldbvscode_testcase.VSCodeTestCaseBase):
|
||||
glob, glob))
|
||||
|
||||
@skipIfWindows
|
||||
@skipIfDarwinEmbedded
|
||||
def test_args(self):
|
||||
'''
|
||||
Tests launch of a simple program with arguments
|
||||
@ -223,6 +232,7 @@ class TestVSCode_launch(lldbvscode_testcase.VSCodeTestCaseBase):
|
||||
'arg[%i] "%s" not in "%s"' % (i+1, quoted_arg, lines[i]))
|
||||
|
||||
@skipIfWindows
|
||||
@skipIfDarwinEmbedded
|
||||
def test_environment(self):
|
||||
'''
|
||||
Tests launch of a simple program with environment variables
|
||||
@ -255,6 +265,7 @@ class TestVSCode_launch(lldbvscode_testcase.VSCodeTestCaseBase):
|
||||
var, lines))
|
||||
|
||||
@skipIfWindows
|
||||
@skipIfDarwinEmbedded
|
||||
def test_commands(self):
|
||||
'''
|
||||
Tests the "initCommands", "preRunCommands", "stopCommands" and
|
||||
@ -321,6 +332,7 @@ class TestVSCode_launch(lldbvscode_testcase.VSCodeTestCaseBase):
|
||||
self.verify_commands('exitCommands', output, exitCommands)
|
||||
|
||||
@skipIfWindows
|
||||
@skipIfDarwinEmbedded
|
||||
def test_extra_launch_commands(self):
|
||||
'''
|
||||
Tests the "luanchCommands" with extra launching settings
|
||||
|
@ -52,6 +52,7 @@ class TestVSCode_stackTrace(lldbvscode_testcase.VSCodeTestCaseBase):
|
||||
expected_line))
|
||||
|
||||
@skipIfWindows
|
||||
@skipIfDarwinEmbedded
|
||||
def test_stackTrace(self):
|
||||
'''
|
||||
Tests the 'stackTrace' packet and all its variants.
|
||||
|
@ -16,6 +16,7 @@ class TestVSCode_step(lldbvscode_testcase.VSCodeTestCaseBase):
|
||||
mydir = TestBase.compute_mydir(__file__)
|
||||
|
||||
@skipIfWindows
|
||||
@skipIfDarwinEmbedded
|
||||
def test_step(self):
|
||||
'''
|
||||
Tests the stepping in/out/over in threads.
|
||||
|
@ -74,6 +74,7 @@ class TestVSCode_variables(lldbvscode_testcase.VSCodeTestCaseBase):
|
||||
self.verify_values(verify_dict[name], variable, varref_dict)
|
||||
|
||||
@skipIfWindows
|
||||
@skipIfDarwinEmbedded
|
||||
def test_scopes_variables_setVariable_evaluate(self):
|
||||
'''
|
||||
Tests the "scopes", "variables", "setVariable", and "evaluate"
|
||||
|
Loading…
x
Reference in New Issue
Block a user