teak-llvm/lldb/packages/Python/lldbsuite/test/expression_command/top-level/TestTopLevelExprs.py
Sean Callanan 863fab69a2 Expose top-level Clang expressions via the command line and the API.
Top-level Clang expressions are expressions that act as new translation units,
and define their own symbols.  They do not have function wrappers like regular
expressions do, and declarations are persistent regardless of use of the dollar
sign in identifiers.  Names defined by these are given priority over all other
symbol lookups.

This patch adds a new expression option, '-p' or '--top-level,' which controls
whether the expression is treated this way.  It also adds a flag controlling 
this to SBExpressionOptions so that this API is usable externally.  It also adds
a test that validates that this works.  (The test requires a fix to the Clang
AST importer which I will be committing shortly.)

<rdar://problem/22864976>

llvm-svn: 264662
2016-03-28 21:20:05 +00:00

84 lines
2.4 KiB
Python

"""
Test top-level expressions.
"""
from __future__ import print_function
import unittest2
import os, time
import lldb
from lldbsuite.test.decorators import *
from lldbsuite.test.lldbtest import *
from lldbsuite.test import lldbutil
class TopLevelExpressionsTestCase(TestBase):
mydir = TestBase.compute_mydir(__file__)
def setUp(self):
# Call super's setUp().
TestBase.setUp(self)
# Find the line number to break for main.c.
self.line = line_number('main.cpp',
'// Set breakpoint here')
self.dummy_line = line_number('dummy.cpp',
'// Set breakpoint here')
# Disable confirmation prompt to avoid infinite wait
self.runCmd("settings set auto-confirm true")
self.addTearDownHook(lambda: self.runCmd("settings clear auto-confirm"))
def build_and_run(self):
"""Test top-level expressions."""
self.build()
self.runCmd("file a.out", CURRENT_EXECUTABLE_SET)
lldbutil.run_break_set_by_file_and_line (self, "main.cpp", self.line, num_expected_locations=1, loc_exact=False)
self.runCmd("run", RUN_SUCCEEDED)
def run_dummy(self):
self.runCmd("file dummy", CURRENT_EXECUTABLE_SET)
lldbutil.run_break_set_by_file_and_line (self, "dummy.cpp", self.dummy_line, num_expected_locations=1, loc_exact=False)
self.runCmd("run", RUN_SUCCEEDED)
@add_test_categories(['pyapi'])
def test_top_level_expressions(self):
self.build_and_run()
resultFromCode = self.frame().EvaluateExpression("doTest()").GetValueAsUnsigned()
self.runCmd("kill")
self.run_dummy()
codeFile = open('test.cpp', 'r')
expressions = []
current_expression = ""
for line in codeFile:
if line.startswith("// --"):
expressions.append(current_expression)
current_expression = ""
else:
current_expression += line
options = lldb.SBExpressionOptions()
options.SetLanguage(lldb.eLanguageTypeC_plus_plus)
options.SetTopLevel(True)
for expression in expressions:
self.frame().EvaluateExpression(expression, options)
resultFromTopLevel = self.frame().EvaluateExpression("doTest()").GetValueAsUnsigned()
self.assertEqual(resultFromCode, resultFromTopLevel)