[Lldb-commits] [lldb] r141595 - /lldb/trunk/test/python_api/frame/inlines/TestInlinedFrame.py

Johnny Chen johnny.chen at apple.com
Mon Oct 10 16:26:54 PDT 2011


Author: johnny
Date: Mon Oct 10 18:26:54 2011
New Revision: 141595

URL: http://llvm.org/viewvc/llvm-project?rev=141595&view=rev
Log:
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.

Modified:
    lldb/trunk/test/python_api/frame/inlines/TestInlinedFrame.py

Modified: lldb/trunk/test/python_api/frame/inlines/TestInlinedFrame.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/python_api/frame/inlines/TestInlinedFrame.py?rev=141595&r1=141594&r2=141595&view=diff
==============================================================================
--- lldb/trunk/test/python_api/frame/inlines/TestInlinedFrame.py (original)
+++ lldb/trunk/test/python_api/frame/inlines/TestInlinedFrame.py Mon Oct 10 18:26:54 2011
@@ -70,8 +70,6 @@
         #
         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,





More information about the lldb-commits mailing list