From a90d0992b7eeca503d02dd119b3e949df83b79d0 Mon Sep 17 00:00:00 2001 From: Greg Clayton Date: Mon, 27 Jul 2015 23:02:14 +0000 Subject: [PATCH] Fix test suite. For now we can't disable C++ for expressions since the return value is returned as a reference and this test fails on MacOSX. llvm-svn: 243342 --- lldb/test/expression_command/options/TestExprOptions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lldb/test/expression_command/options/TestExprOptions.py b/lldb/test/expression_command/options/TestExprOptions.py index 17c2fa4..2b7519d 100644 --- a/lldb/test/expression_command/options/TestExprOptions.py +++ b/lldb/test/expression_command/options/TestExprOptions.py @@ -69,7 +69,7 @@ class ExprOptionsTestCase(TestBase): self.DebugSBValue(val) # Make sure it still works if language is set to ObjC: - options.SetLanguage(lldb.eLanguageTypeObjC) + options.SetLanguage(lldb.eLanguageTypeObjC_plus_plus) val = frame.EvaluateExpression('id my_id = 0; my_id', options) self.assertTrue(val.IsValid()) self.assertTrue(val.GetError().Success()) -- 2.7.4