aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJohnny Chen <johnny.chen@apple.com>2011-10-10 23:26:54 +0000
committerJohnny Chen <johnny.chen@apple.com>2011-10-10 23:26:54 +0000
commit7c0787379a7399d559240e4d69f4fc5655da838d (patch)
treefd6fd33c086505e5d7d1a1f47dad02d643144f84 /test
parentb8f74aa72802d82466d3beadf2bd58616d2d26a6 (diff)
downloadlldb-7c0787379a7399d559240e4d69f4fc5655da838d.tar.gz
Remove test logic to check for clang and skip the rest due to insufficient debug info.
Recent changes in lldb inlining robustness seem to have fixed it. git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@141595 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r--test/python_api/frame/inlines/TestInlinedFrame.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/test/python_api/frame/inlines/TestInlinedFrame.py b/test/python_api/frame/inlines/TestInlinedFrame.py
index 73c8d50ac..dd4331e07 100644
--- a/test/python_api/frame/inlines/TestInlinedFrame.py
+++ b/test/python_api/frame/inlines/TestInlinedFrame.py
@@ -70,8 +70,6 @@ class InlinedFrameAPITestCase(TestBase):
#
frame0 = process.GetThreadAtIndex(0).GetFrameAtIndex(0)
if frame0.IsInlined():
- if self.getCompiler().endswith('clang'):
- self.skipTest("clang: insufficient debug info for call site in main()")
filename = frame0.GetLineEntry().GetFileSpec().GetFilename()
self.assertTrue(filename == self.source)
self.expect(stack_traces1, "First stop at %s:%d" % (self.source, self.first_stop), exe=False,