diff options
| -rw-r--r-- | lldb/test/class_static/TestStaticVariables.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/test/class_static/TestStaticVariables.py b/lldb/test/class_static/TestStaticVariables.py index c9a5f6685d4..f84099b9c9e 100644 --- a/lldb/test/class_static/TestStaticVariables.py +++ b/lldb/test/class_static/TestStaticVariables.py @@ -108,6 +108,7 @@ class StaticVariableTestCase(TestBase): 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) |

