diff options
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test')
2 files changed, 5 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/sbapi_support/TestTailCallFrameSBAPI.py b/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/sbapi_support/TestTailCallFrameSBAPI.py index 517d8012621..8cf65529f8e 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/sbapi_support/TestTailCallFrameSBAPI.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/sbapi_support/TestTailCallFrameSBAPI.py @@ -4,6 +4,7 @@ Test SB API support for identifying artificial (tail call) frames. import lldb import lldbsuite.test.lldbutil as lldbutil +from lldbsuite.test.decorators import * from lldbsuite.test.lldbtest import * class TestTailCallFrameSBAPI(TestBase): @@ -14,6 +15,7 @@ class TestTailCallFrameSBAPI(TestBase): # each debug info format. NO_DEBUG_INFO_TESTCASE = True + @expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr26265") def test_tail_call_frame_sbapi(self): self.build() self.do_test() diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/thread_step_out_or_return/TestSteppingOutWithArtificialFrames.py b/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/thread_step_out_or_return/TestSteppingOutWithArtificialFrames.py index 1c9d6c77083..2b432e56a74 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/thread_step_out_or_return/TestSteppingOutWithArtificialFrames.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/thread_step_out_or_return/TestSteppingOutWithArtificialFrames.py @@ -4,6 +4,7 @@ Test SB API support for identifying artificial (tail call) frames. import lldb import lldbsuite.test.lldbutil as lldbutil +from lldbsuite.test.decorators import * from lldbsuite.test.lldbtest import * class TestArtificialFrameThreadStepOut1(TestBase): @@ -51,6 +52,7 @@ class TestArtificialFrameThreadStepOut1(TestBase): # frame #4: ... a.out`main at main.cpp:23:3 [opt] return thread + @expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr26265") def test_stepping_out_past_artificial_frame(self): self.build() thread = self.prepare_thread() @@ -68,6 +70,7 @@ class TestArtificialFrameThreadStepOut1(TestBase): self.assertEqual(frame4.GetDisplayFunctionName(), "main") self.assertFalse(frame2.IsArtificial()) + @expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr26265") def test_return_past_artificial_frame(self): self.build() thread = self.prepare_thread() |