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

Johnny Chen johnny.chen at apple.com
Tue Jul 26 16:35:39 PDT 2011


Author: johnny
Date: Tue Jul 26 18:35:38 2011
New Revision: 136184

URL: http://llvm.org/viewvc/llvm-project?rev=136184&view=rev
Log:
Add skip test for clang, which has insufficient debug info for call site in main().

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=136184&r1=136183&r2=136184&view=diff
==============================================================================
--- lldb/trunk/test/python_api/frame/inlines/TestInlinedFrame.py (original)
+++ lldb/trunk/test/python_api/frame/inlines/TestInlinedFrame.py Tue Jul 26 18:35:38 2011
@@ -14,7 +14,7 @@
 
     @unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
     @python_api_test
-    def test_stop_at_outer_inline_dsym(self):
+    def test_stop_at_outer_inline_with_dsym(self):
         """Exercise SBFrame.IsInlined() and SBFrame.GetFunctionName()."""
         self.buildDsym()
         self.do_stop_at_outer_inline()
@@ -70,6 +70,8 @@
         #
         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