summaryrefslogtreecommitdiffstats
path: root/lldb/packages/Python
diff options
context:
space:
mode:
authorSagar Thakur <sagar.thakur@imgtec.com>2016-01-25 12:33:03 +0000
committerSagar Thakur <sagar.thakur@imgtec.com>2016-01-25 12:33:03 +0000
commit9986ed6aa8d5a9ad6e9cd468edb85388d02f6c2e (patch)
tree1162ba8c741c6fed0d019cd92c68042af98d6ba3 /lldb/packages/Python
parent60481839c0df262095af71d5bafa79ffa149d171 (diff)
downloadbcm5719-llvm-9986ed6aa8d5a9ad6e9cd468edb85388d02f6c2e.tar.gz
bcm5719-llvm-9986ed6aa8d5a9ad6e9cd468edb85388d02f6c2e.zip
[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 llvm-svn: 258685
Diffstat (limited to 'lldb/packages/Python')
-rw-r--r--lldb/packages/Python/lldbsuite/test/python_api/lldbutil/process/TestPrintStackTraces.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/python_api/lldbutil/process/TestPrintStackTraces.py b/lldb/packages/Python/lldbsuite/test/python_api/lldbutil/process/TestPrintStackTraces.py
index b48ded4dd36..97bfa3956f6 100644
--- a/lldb/packages/Python/lldbsuite/test/python_api/lldbutil/process/TestPrintStackTraces.py
+++ b/lldb/packages/Python/lldbsuite/test/python_api/lldbutil/process/TestPrintStackTraces.py
@@ -22,6 +22,10 @@ class ThreadsStackTracesTestCase(TestBase):
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):
OpenPOWER on IntegriCloud