[Lldb-commits] [lldb] r243488 - Fix comment in TestExprOptions to match change of language from ObjC to ObjC++.
Dawn Perchik
dawn at burble.org
Tue Jul 28 15:19:43 PDT 2015
Author: dperchik
Date: Tue Jul 28 17:19:42 2015
New Revision: 243488
URL: http://llvm.org/viewvc/llvm-project?rev=243488&view=rev
Log:
Fix comment in TestExprOptions to match change of language from ObjC to ObjC++.
Modified:
lldb/trunk/test/expression_command/options/TestExprOptions.py
Modified: lldb/trunk/test/expression_command/options/TestExprOptions.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/expression_command/options/TestExprOptions.py?rev=243488&r1=243487&r2=243488&view=diff
==============================================================================
--- lldb/trunk/test/expression_command/options/TestExprOptions.py (original)
+++ lldb/trunk/test/expression_command/options/TestExprOptions.py Tue Jul 28 17:19:42 2015
@@ -68,7 +68,7 @@ class ExprOptionsTestCase(TestBase):
self.assertEqual(val.GetValueAsUnsigned(0), 0)
self.DebugSBValue(val)
- # Make sure it still works if language is set to ObjC:
+ # Make sure it still works if language is set to ObjC++:
options.SetLanguage(lldb.eLanguageTypeObjC_plus_plus)
val = frame.EvaluateExpression('id my_id = 0; my_id', options)
self.assertTrue(val.IsValid())
More information about the lldb-commits
mailing list