[Lldb-commits] [lldb] r166131 - in /lldb/trunk: source/Expression/ClangExpressionParser.cpp test/lang/cpp/bool/ test/lang/cpp/bool/Makefile test/lang/cpp/bool/TestCPPBool.py test/lang/cpp/bool/main.cpp
Sean Callanan
scallanan at apple.com
Wed Oct 17 15:09:59 PDT 2012
Author: spyffe
Date: Wed Oct 17 17:09:59 2012
New Revision: 166131
URL: http://llvm.org/viewvc/llvm-project?rev=166131&view=rev
Log:
Added support for "bool", "true", and "false" to
the expression parser (also wchar_t) and added a
test case.
Added:
lldb/trunk/test/lang/cpp/bool/
lldb/trunk/test/lang/cpp/bool/Makefile
lldb/trunk/test/lang/cpp/bool/TestCPPBool.py
lldb/trunk/test/lang/cpp/bool/main.cpp
Modified:
lldb/trunk/source/Expression/ClangExpressionParser.cpp
Modified: lldb/trunk/source/Expression/ClangExpressionParser.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Expression/ClangExpressionParser.cpp?rev=166131&r1=166130&r2=166131&view=diff
==============================================================================
--- lldb/trunk/source/Expression/ClangExpressionParser.cpp (original)
+++ lldb/trunk/source/Expression/ClangExpressionParser.cpp Wed Oct 17 17:09:59 2012
@@ -274,6 +274,8 @@
break;
}
+ m_compiler->getLangOpts().Bool = true;
+ m_compiler->getLangOpts().WChar = true;
m_compiler->getLangOpts().DebuggerSupport = true; // Features specifically for debugger clients
if (expr.DesiredResultType() == ClangExpression::eResultTypeId)
m_compiler->getLangOpts().DebuggerCastResultToId = true;
Added: lldb/trunk/test/lang/cpp/bool/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lang/cpp/bool/Makefile?rev=166131&view=auto
==============================================================================
--- lldb/trunk/test/lang/cpp/bool/Makefile (added)
+++ lldb/trunk/test/lang/cpp/bool/Makefile Wed Oct 17 17:09:59 2012
@@ -0,0 +1,5 @@
+LEVEL = ../../../make
+
+CXX_SOURCES := main.cpp
+
+include $(LEVEL)/Makefile.rules
Added: lldb/trunk/test/lang/cpp/bool/TestCPPBool.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lang/cpp/bool/TestCPPBool.py?rev=166131&view=auto
==============================================================================
--- lldb/trunk/test/lang/cpp/bool/TestCPPBool.py (added)
+++ lldb/trunk/test/lang/cpp/bool/TestCPPBool.py Wed Oct 17 17:09:59 2012
@@ -0,0 +1,49 @@
+"""
+Tests that bool types work
+"""
+import lldb
+from lldbtest import *
+import lldbutil
+
+class CPPBoolTestCase(TestBase):
+
+ mydir = os.path.join("lang", "cpp", "bool")
+
+ @unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
+ @dsym_test
+ def test_with_dsym_and_run_command(self):
+ """Test that bool types work in the expression parser"""
+ self.buildDsym()
+ self.static_method_commands()
+
+ @dwarf_test
+ def test_with_dwarf_and_run_command(self):
+ """Test that bool types work in the expression parser"""
+ self.buildDwarf()
+ self.static_method_commands()
+
+ def setUp(self):
+ TestBase.setUp(self)
+
+ def set_breakpoint(self, line):
+ lldbutil.run_break_set_by_file_and_line (self, "main.cpp", line, num_expected_locations=1, loc_exact=False)
+
+ def static_method_commands(self):
+ """Test that bool types work in the expression parser"""
+ self.runCmd("file a.out", CURRENT_EXECUTABLE_SET)
+
+ self.set_breakpoint(line_number('main.cpp', '// breakpoint 1'))
+
+ self.runCmd("process launch", RUN_SUCCEEDED)
+
+ self.expect("expression -- bool second_bool = my_bool; second_bool",
+ startstr = "(bool) $0 = false")
+
+ self.expect("expression -- my_bool = true",
+ startstr = "(bool) $1 = true")
+
+if __name__ == '__main__':
+ import atexit
+ lldb.SBDebugger.Initialize()
+ atexit.register(lambda: lldb.SBDebugger.Terminate())
+ unittest2.main()
Added: lldb/trunk/test/lang/cpp/bool/main.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lang/cpp/bool/main.cpp?rev=166131&view=auto
==============================================================================
--- lldb/trunk/test/lang/cpp/bool/main.cpp (added)
+++ lldb/trunk/test/lang/cpp/bool/main.cpp Wed Oct 17 17:09:59 2012
@@ -0,0 +1,17 @@
+//===-- main.cpp ------------------------------------------------*- C++ -*-===//
+//
+// The LLVM Compiler Infrastructure
+//
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+
+#include <stdio.h>
+
+int main()
+{
+ bool my_bool = false;
+
+ printf("%s\n", my_bool ? "true" : "false"); // breakpoint 1
+}
More information about the lldb-commits
mailing list