[llvm-branch-commits] [lldb] r259374 - Merging r258685:
Hans Wennborg via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Mon Feb 1 09:26:49 PST 2016
Author: hans
Date: Mon Feb 1 11:26:49 2016
New Revision: 259374
URL: http://llvm.org/viewvc/llvm-project?rev=259374&view=rev
Log:
Merging r258685:
------------------------------------------------------------------------
r258685 | slthakur | 2016-01-25 04:33:03 -0800 (Mon, 25 Jan 2016) | 10 lines
[LLDB][MIPS] Fix TestPrintStackTraces.py
Patch by Nitesh Jain.
Summary: The thread_start function in libc doesn't contain any epilogue and prologue instructions. Hence unwinding fail when we are stopped in thread_start.
Reviewers: ovyalov, clayborg
Subscribers: lldb-commits, mohit.bhakkad, sagar, bhushan, jaydeep
Differential: reviews.llvm.org/D16136
------------------------------------------------------------------------
Modified:
lldb/branches/release_38/ (props changed)
lldb/branches/release_38/packages/Python/lldbsuite/test/python_api/lldbutil/process/TestPrintStackTraces.py
Propchange: lldb/branches/release_38/
------------------------------------------------------------------------------
--- svn:mergeinfo (original)
+++ svn:mergeinfo Mon Feb 1 11:26:49 2016
@@ -1,3 +1,3 @@
/lldb/branches/apple/python-GIL:156467-162159
/lldb/branches/iohandler:198360-200250
-/lldb/trunk:257691-257692,258684,259188
+/lldb/trunk:257691-257692,258684-258685,259188
Modified: lldb/branches/release_38/packages/Python/lldbsuite/test/python_api/lldbutil/process/TestPrintStackTraces.py
URL: http://llvm.org/viewvc/llvm-project/lldb/branches/release_38/packages/Python/lldbsuite/test/python_api/lldbutil/process/TestPrintStackTraces.py?rev=259374&r1=259373&r2=259374&view=diff
==============================================================================
--- lldb/branches/release_38/packages/Python/lldbsuite/test/python_api/lldbutil/process/TestPrintStackTraces.py (original)
+++ lldb/branches/release_38/packages/Python/lldbsuite/test/python_api/lldbutil/process/TestPrintStackTraces.py Mon Feb 1 11:26:49 2016
@@ -22,6 +22,10 @@ class ThreadsStackTracesTestCase(TestBas
self.line = line_number('main.cpp', '// Set break point at this line.')
@expectedFailureAll("llvm.org/pr23043", ["linux"], archs=["i386"]) # We are unable to produce a backtrace of the main thread when the thread is blocked in fgets
+
+ #The __thread_start function in libc doesn't contain any epilogue and prologue instructions
+ #hence unwinding fail when we are stopped in __thread_start
+ @expectedFailureAll(triple = 'mips*')
@expectedFailureWindows("llvm.org/pr24778")
@add_test_categories(['pyapi'])
def test_stack_traces(self):
More information about the llvm-branch-commits
mailing list