[PATCH] D53415: [lldbsuite, windows] Disable two tail call frames tests that fail on Windows
Stella Stamenova via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Oct 19 09:03:38 PDT 2018
This revision was automatically updated to reflect the committed changes.
Closed by commit rL344788: [lldbsuite, windows] Disable two tail call frames tests that fail on Windows (authored by stella.stamenova, committed by ).
Herald added a subscriber: llvm-commits.
Changed prior to commit:
https://reviews.llvm.org/D53415?vs=170135&id=170209#toc
Repository:
rL LLVM
https://reviews.llvm.org/D53415
Files:
lldb/trunk/packages/Python/lldbsuite/test/functionalities/tail_call_frames/sbapi_support/TestTailCallFrameSBAPI.py
lldb/trunk/packages/Python/lldbsuite/test/functionalities/tail_call_frames/thread_step_out_or_return/TestSteppingOutWithArtificialFrames.py
Index: lldb/trunk/packages/Python/lldbsuite/test/functionalities/tail_call_frames/sbapi_support/TestTailCallFrameSBAPI.py
===================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/tail_call_frames/sbapi_support/TestTailCallFrameSBAPI.py
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/tail_call_frames/sbapi_support/TestTailCallFrameSBAPI.py
@@ -4,6 +4,7 @@
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 @@
# 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()
Index: lldb/trunk/packages/Python/lldbsuite/test/functionalities/tail_call_frames/thread_step_out_or_return/TestSteppingOutWithArtificialFrames.py
===================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/tail_call_frames/thread_step_out_or_return/TestSteppingOutWithArtificialFrames.py
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/tail_call_frames/thread_step_out_or_return/TestSteppingOutWithArtificialFrames.py
@@ -4,6 +4,7 @@
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 @@
# 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 @@
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()
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D53415.170209.patch
Type: text/x-patch
Size: 2208 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20181019/bfedd66a/attachment.bin>
More information about the llvm-commits
mailing list