diff options
author | Pavel Labath <pavel@labath.sk> | 2019-12-16 14:15:11 +0100 |
---|---|---|
committer | Pavel Labath <pavel@labath.sk> | 2019-12-17 11:08:52 +0100 |
commit | dcd14324dced7d91aa8bf78a607055ca093b27bf (patch) | |
tree | 74260da97073af231df25d0c08bd23b89dde0b07 /lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/breakpoint | |
parent | 6e1fe4966c402d17a253b38192cfd5e8b919ab8e (diff) | |
download | bcm5719-llvm-dcd14324dced7d91aa8bf78a607055ca093b27bf.tar.gz bcm5719-llvm-dcd14324dced7d91aa8bf78a607055ca093b27bf.zip |
[lldb-vscode] Centrally skip debug info variants for vscode tests
Previously each test was annotated manually. This does the same thing.
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/breakpoint')
3 files changed, 0 insertions, 5 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/breakpoint/TestVSCode_setBreakpoints.py b/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/breakpoint/TestVSCode_setBreakpoints.py index f5438b2e817..8b13b9b161f 100644 --- a/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/breakpoint/TestVSCode_setBreakpoints.py +++ b/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/breakpoint/TestVSCode_setBreakpoints.py @@ -17,7 +17,6 @@ class TestVSCode_setBreakpoints(lldbvscode_testcase.VSCodeTestCaseBase): mydir = TestBase.compute_mydir(__file__) @skipIfWindows - @no_debug_info_test 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 @@ -149,7 +148,6 @@ class TestVSCode_setBreakpoints(lldbvscode_testcase.VSCodeTestCaseBase): "expect breakpoint still verified") @skipIfWindows - @no_debug_info_test def test_functionality(self): '''Tests hitting breakpoints and the functionality of a single breakpoint, like 'conditions' and 'hitCondition' settings.''' diff --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/breakpoint/TestVSCode_setExceptionBreakpoints.py b/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/breakpoint/TestVSCode_setExceptionBreakpoints.py index 3e28b578229..d20a3434188 100644 --- a/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/breakpoint/TestVSCode_setExceptionBreakpoints.py +++ b/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/breakpoint/TestVSCode_setExceptionBreakpoints.py @@ -18,7 +18,6 @@ class TestVSCode_setExceptionBreakpoints( @skipIfWindows @expectedFailureNetBSD - @no_debug_info_test def test_functionality(self): '''Tests setting and clearing exception breakpoints. This packet is a bit tricky on the debug adaptor side since there diff --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/breakpoint/TestVSCode_setFunctionBreakpoints.py b/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/breakpoint/TestVSCode_setFunctionBreakpoints.py index 9a2c98d6332..2c62bf80fcf 100644 --- a/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/breakpoint/TestVSCode_setFunctionBreakpoints.py +++ b/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/breakpoint/TestVSCode_setFunctionBreakpoints.py @@ -17,7 +17,6 @@ class TestVSCode_setFunctionBreakpoints( mydir = TestBase.compute_mydir(__file__) @skipIfWindows - @no_debug_info_test 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 @@ -108,7 +107,6 @@ class TestVSCode_setFunctionBreakpoints( "expect %u source breakpoints" % (len(functions))) @skipIfWindows - @no_debug_info_test def test_functionality(self): '''Tests hitting breakpoints and the functionality of a single breakpoint, like 'conditions' and 'hitCondition' settings.''' |