[Lldb-commits] [lldb] r120355 - /lldb/trunk/test/class_static/TestStaticVariables.py
Johnny Chen
johnny.chen at apple.com
Mon Nov 29 15:58:04 PST 2010
Author: johnny
Date: Mon Nov 29 17:58:04 2010
New Revision: 120355
URL: http://llvm.org/viewvc/llvm-project?rev=120355&view=rev
Log:
Add comment for a branch of test logic which applies to ['clang', 'llvm-gcc'] only.
Modified:
lldb/trunk/test/class_static/TestStaticVariables.py
Modified: lldb/trunk/test/class_static/TestStaticVariables.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/class_static/TestStaticVariables.py?rev=120355&r1=120354&r2=120355&view=diff
==============================================================================
--- lldb/trunk/test/class_static/TestStaticVariables.py (original)
+++ lldb/trunk/test/class_static/TestStaticVariables.py Mon Nov 29 17:58:04 2010
@@ -108,6 +108,7 @@
if name == 'g_points':
self.assertTrue(val.GetNumChildren() == 2)
elif name == 'A::g_points' and self.getCompiler() in ['clang', 'llvm-gcc']:
+ # On Mac OS X, gcc 4.2 emits the wrong debug info for A::g_points.
self.assertTrue(val.GetNumChildren() == 2)
child1 = val.GetChildAtIndex(1)
self.DebugSBValue(frame, child1)
More information about the lldb-commits
mailing list