"git@repo.hca.bsc.es:lalbano/llvm-bpevl.git" did not exist on "91d16b3b3fb130da497f192044bee3856155b8a6"
Newer
Older
Daniel Malea
committed
stdout = open(os.devnull) if not self.TraceOn() else None,
stdin = PIPE)
self.subprocesses.append(proc)
return proc
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
def forkSubprocess(self, executable, args=[]):
""" Fork a subprocess with its own group ID.
NOTE: if using this function, ensure you also call:
self.addTearDownHook(self.cleanupSubprocesses)
otherwise the test suite will leak processes.
"""
child_pid = os.fork()
if child_pid == 0:
# If more I/O support is required, this can be beefed up.
fd = os.open(os.devnull, os.O_RDWR)
os.dup2(fd, 1)
os.dup2(fd, 2)
# This call causes the child to have its of group ID
os.setpgid(0,0)
os.execvp(executable, [executable] + args)
# Give the child time to get through the execvp() call
time.sleep(0.1)
self.forkedProcessPids.append(child_pid)
return child_pid
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
def HideStdout(self):
"""Hide output to stdout from the user.
During test execution, there might be cases where we don't want to show the
standard output to the user. For example,
self.runCmd(r'''sc print "\n\n\tHello!\n"''')
tests whether command abbreviation for 'script' works or not. There is no
need to show the 'Hello' output to the user as long as the 'script' command
succeeds and we are not in TraceOn() mode (see the '-t' option).
In this case, the test method calls self.HideStdout(self) to redirect the
sys.stdout to a null device, and restores the sys.stdout upon teardown.
Note that you should only call this method at most once during a test case
execution. Any subsequent call has no effect at all."""
if self.sys_stdout_hidden:
return
self.sys_stdout_hidden = True
old_stdout = sys.stdout
sys.stdout = open(os.devnull, 'w')
def restore_stdout():
sys.stdout = old_stdout
self.addTearDownHook(restore_stdout)
# =======================================================================
# Methods for customized teardown cleanups as well as execution of hooks.
# =======================================================================
def setTearDownCleanup(self, dictionary=None):
"""Register a cleanup action at tearDown() time with a dictinary"""
self.dict = dictionary
self.doTearDownCleanup = True
def addTearDownCleanup(self, dictionary):
"""Add a cleanup action at tearDown() time with a dictinary"""
self.dicts.append(dictionary)
self.doTearDownCleanups = True
def addTearDownHook(self, hook):
"""
Add a function to be run during tearDown() time.
Hooks are executed in a first come first serve manner.
"""
if callable(hook):
with recording(self, traceAlways) as sbuf:
print >> sbuf, "Adding tearDown hook:", getsource_if_available(hook)
self.hooks.append(hook)
def tearDown(self):
"""Fixture for unittest test case teardown."""
#import traceback
#traceback.print_stack()
Johnny Chen
committed
# This is for the case of directly spawning 'lldb' and interacting with it
# using pexpect.
import pexpect
if self.child and self.child.isalive():
with recording(self, traceAlways) as sbuf:
print >> sbuf, "tearing down the child process...."
try:
if self.child_in_script_interpreter:
self.child.sendline('quit()')
self.child.expect_exact(self.child_prompt)
self.child.sendline('settings set interpreter.prompt-on-quit false')
self.child.sendline('quit')
Johnny Chen
committed
self.child.expect(pexpect.EOF)
except ValueError, ExceptionPexpect:
# child is already terminated
Johnny Chen
committed
pass
Johnny Chen
committed
# Give it one final blow to make sure the child is terminated.
self.child.close()
Johnny Chen
committed
# Check and run any hook functions.
for hook in reversed(self.hooks):
with recording(self, traceAlways) as sbuf:
print >> sbuf, "Executing tearDown hook:", getsource_if_available(hook)
hook()
del self.hooks
# Perform registered teardown cleanup.
if doCleanup and self.doTearDownCleanup:
self.cleanup(dictionary=self.dict)
# In rare cases where there are multiple teardown cleanups added.
if doCleanup and self.doTearDownCleanups:
if self.dicts:
for dict in reversed(self.dicts):
self.cleanup(dictionary=dict)
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
# Decide whether to dump the session info.
self.dumpSessionInfo()
# =========================================================
# Various callbacks to allow introspection of test progress
# =========================================================
def markError(self):
"""Callback invoked when an error (unexpected exception) errored."""
self.__errored__ = True
with recording(self, False) as sbuf:
# False because there's no need to write "ERROR" to the stderr twice.
# Once by the Python unittest framework, and a second time by us.
print >> sbuf, "ERROR"
def markFailure(self):
"""Callback invoked when a failure (test assertion failure) occurred."""
self.__failed__ = True
with recording(self, False) as sbuf:
# False because there's no need to write "FAIL" to the stderr twice.
# Once by the Python unittest framework, and a second time by us.
print >> sbuf, "FAIL"
def markExpectedFailure(self,err,bugnumber):
"""Callback invoked when an expected failure/error occurred."""
self.__expected__ = True
with recording(self, False) as sbuf:
# False because there's no need to write "expected failure" to the
# stderr twice.
# Once by the Python unittest framework, and a second time by us.
if bugnumber == None:
print >> sbuf, "expected failure"
else:
print >> sbuf, "expected failure (problem id:" + str(bugnumber) + ")"
Johnny Chen
committed
def markSkippedTest(self):
"""Callback invoked when a test is skipped."""
self.__skipped__ = True
with recording(self, False) as sbuf:
# False because there's no need to write "skipped test" to the
# stderr twice.
# Once by the Python unittest framework, and a second time by us.
print >> sbuf, "skipped test"
"""Callback invoked when an unexpected success occurred."""
self.__unexpected__ = True
with recording(self, False) as sbuf:
# False because there's no need to write "unexpected success" to the
# stderr twice.
# Once by the Python unittest framework, and a second time by us.
if bugnumber == None:
print >> sbuf, "unexpected success"
else:
print >> sbuf, "unexpected success (problem id:" + str(bugnumber) + ")"
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
def dumpSessionInfo(self):
"""
Dump the debugger interactions leading to a test error/failure. This
allows for more convenient postmortem analysis.
See also LLDBTestResult (dotest.py) which is a singlton class derived
from TextTestResult and overwrites addError, addFailure, and
addExpectedFailure methods to allow us to to mark the test instance as
such.
"""
# We are here because self.tearDown() detected that this test instance
# either errored or failed. The lldb.test_result singleton contains
# two lists (erros and failures) which get populated by the unittest
# framework. Look over there for stack trace information.
#
# The lists contain 2-tuples of TestCase instances and strings holding
# formatted tracebacks.
#
# See http://docs.python.org/library/unittest.html#unittest.TestResult.
if self.__errored__:
pairs = lldb.test_result.errors
prefix = 'Error'
elif self.__failed__:
pairs = lldb.test_result.failures
prefix = 'Failure'
elif self.__expected__:
pairs = lldb.test_result.expectedFailures
prefix = 'ExpectedFailure'
Johnny Chen
committed
elif self.__skipped__:
prefix = 'SkippedTest'
elif self.__unexpected__:
prefix = "UnexpectedSuccess"
else:
# Simply return, there's no session info to dump!
return
Johnny Chen
committed
if not self.__unexpected__ and not self.__skipped__:
for test, traceback in pairs:
if test is self:
print >> self.session, traceback
testMethod = getattr(self, self._testMethodName)
if getattr(testMethod, "__benchmarks_test__", False):
benchmarks = True
else:
benchmarks = False
Johnny Chen
committed
# This records the compiler version used for the test.
system([self.getCompiler(), "-v"], sender=self)
dname = os.path.join(os.environ["LLDB_TEST"],
os.environ["LLDB_SESSION_DIRNAME"])
if not os.path.isdir(dname):
os.mkdir(dname)
fname = os.path.join(dname, "%s-%s-%s-%s.log" % (prefix, self.getArchitecture(), "_".join(self.getCompiler().split('/')), self.id()))
with open(fname, "w") as f:
import datetime
print >> f, "Session info generated @", datetime.datetime.now().ctime()
print >> f, self.session.getvalue()
print >> f, "To rerun this test, issue the following command from the 'test' directory:\n"
print >> f, "./dotest.py %s -v %s -f %s.%s" % (self.getRunOptions(),
('+b' if benchmarks else '-t'),
self.__class__.__name__,
self._testMethodName)
# ====================================================
# Config. methods supported through a plugin interface
# (enables reading of the current test configuration)
# ====================================================
def getArchitecture(self):
"""Returns the architecture in effect the test suite is running with."""
module = builder_module()
return module.getArchitecture()
def getCompiler(self):
"""Returns the compiler in effect the test suite is running with."""
module = builder_module()
return module.getCompiler()
def getCompilerVersion(self):
""" Returns a string that represents the compiler version.
Supports: llvm, clang.
"""
from lldbutil import which
version = 'unknown'
compiler = self.getCompiler()
version_output = system([which(compiler), "-v"])[1]
for line in version_output.split(os.linesep):
m = re.search('version ([0-9\.]+)', line)
if m:
version = m.group(1)
return version
Daniel Malea
committed
def isIntelCompiler(self):
""" Returns true if using an Intel (ICC) compiler, false otherwise. """
return any([x in self.getCompiler() for x in ["icc", "icpc", "icl"]])
Ashok Thirumurthi
committed
def expectedCompilerVersion(self, compiler_version):
"""Returns True iff compiler_version[1] matches the current compiler version.
Use compiler_version[0] to specify the operator used to determine if a match has occurred.
Any operator other than the following defaults to an equality test:
'>', '>=', "=>", '<', '<=', '=<', '!=', "!" or 'not'
"""
Ashok Thirumurthi
committed
if (compiler_version == None):
return True
operator = str(compiler_version[0])
version = compiler_version[1]
if (version == None):
return True
if (operator == '>'):
return self.getCompilerVersion() > version
if (operator == '>=' or operator == '=>'):
return self.getCompilerVersion() >= version
if (operator == '<'):
return self.getCompilerVersion() < version
if (operator == '<=' or operator == '=<'):
return self.getCompilerVersion() <= version
if (operator == '!=' or operator == '!' or operator == 'not'):
return str(version) not in str(self.getCompilerVersion())
return str(version) in str(self.getCompilerVersion())
def expectedCompiler(self, compilers):
Ashok Thirumurthi
committed
"""Returns True iff any element of compilers is a sub-string of the current compiler."""
Ashok Thirumurthi
committed
if (compilers == None):
return True
Ashok Thirumurthi
committed
for compiler in compilers:
if compiler in self.getCompiler():
return True
return False
Ashok Thirumurthi
committed
def getRunOptions(self):
"""Command line option for -A and -C to run this test again, called from
self.dumpSessionInfo()."""
arch = self.getArchitecture()
comp = self.getCompiler()
if arch:
option_str = "-A " + arch
else:
option_str = ""
if comp:
Johnny Chen
committed
option_str += " -C " + comp
return option_str
# ==================================================
# Build methods supported through a plugin interface
# ==================================================
Daniel Malea
committed
def buildDriver(self, sources, exe_name):
""" Platform-specific way to build a program that links with LLDB (via the liblldb.so
or LLDB.framework).
"""
if "gcc" in self.getCompiler() and "4.6" in self.getCompilerVersion():
stdflag = "-std=c++0x"
Daniel Malea
committed
else:
stdflag = "-std=c++11"
if sys.platform.startswith("darwin"):
dsym = os.path.join(self.lib_dir, 'LLDB.framework', 'LLDB')
d = {'CXX_SOURCES' : sources,
'EXE' : exe_name,
'CFLAGS_EXTRAS' : "%s -stdlib=libc++" % stdflag,
'FRAMEWORK_INCLUDES' : "-F%s" % self.lib_dir,
'LD_EXTRAS' : "%s -Wl,-rpath,%s" % (dsym, self.lib_dir),
Daniel Malea
committed
}
elif sys.platform.startswith('freebsd') or sys.platform.startswith("linux") or os.environ.get('LLDB_BUILD_TYPE') == 'Makefile':
Daniel Malea
committed
d = {'CXX_SOURCES' : sources,
'EXE' : exe_name,
'CFLAGS_EXTRAS' : "%s -I%s" % (stdflag, os.path.join(os.environ["LLDB_SRC"], "include")),
'LD_EXTRAS' : "-L%s -llldb" % self.lib_dir}
if self.TraceOn():
print "Building LLDB Driver (%s) from sources %s" % (exe_name, sources)
self.buildDefault(dictionary=d)
def buildProgram(self, sources, exe_name):
""" Platform specific way to build an executable from C/C++ sources. """
d = {'CXX_SOURCES' : sources,
'EXE' : exe_name}
self.buildDefault(dictionary=d)
def buildDefault(self, architecture=None, compiler=None, dictionary=None, clean=True):
"""Platform specific way to build the default binaries."""
if lldb.skip_build_and_cleanup:
return
module = builder_module()
if not module.buildDefault(self, architecture, compiler, dictionary, clean):
raise Exception("Don't know how to build default binary")
def buildDsym(self, architecture=None, compiler=None, dictionary=None, clean=True):
"""Platform specific way to build binaries with dsym info."""
if lldb.skip_build_and_cleanup:
return
module = builder_module()
if not module.buildDsym(self, architecture, compiler, dictionary, clean):
raise Exception("Don't know how to build binary with dsym")
def buildDwarf(self, architecture=None, compiler=None, dictionary=None, clean=True):
"""Platform specific way to build binaries with dwarf maps."""
if lldb.skip_build_and_cleanup:
return
module = builder_module()
if not module.buildDwarf(self, architecture, compiler, dictionary, clean):
raise Exception("Don't know how to build binary with dwarf")
Johnny Chen
committed
def getBuildFlags(self, use_cpp11=True, use_libcxx=False, use_libstdcxx=False, use_pthreads=True):
Andrew Kaylor
committed
""" Returns a dictionary (which can be provided to build* functions above) which
contains OS-specific build flags.
"""
cflags = ""
# On Mac OS X, unless specifically requested to use libstdc++, use libc++
if not use_libstdcxx and sys.platform.startswith('darwin'):
use_libcxx = True
if use_libcxx and self.libcxxPath:
cflags += "-stdlib=libc++ "
if self.libcxxPath:
libcxxInclude = os.path.join(self.libcxxPath, "include")
libcxxLib = os.path.join(self.libcxxPath, "lib")
if os.path.isdir(libcxxInclude) and os.path.isdir(libcxxLib):
cflags += "-nostdinc++ -I%s -L%s -Wl,-rpath,%s " % (libcxxInclude, libcxxLib, libcxxLib)
Andrew Kaylor
committed
if use_cpp11:
cflags += "-std="
if "gcc" in self.getCompiler() and "4.6" in self.getCompilerVersion():
cflags += "c++0x"
else:
cflags += "c++11"
if sys.platform.startswith("darwin"):
cflags += " -stdlib=libc++"
elif "clang" in self.getCompiler():
cflags += " -stdlib=libstdc++"
if use_pthreads:
ldflags = "-lpthread"
return {'CFLAGS_EXTRAS' : cflags,
'LD_EXTRAS' : ldflags,
}
Johnny Chen
committed
def cleanup(self, dictionary=None):
"""Platform specific way to do cleanup after build."""
if lldb.skip_build_and_cleanup:
return
Johnny Chen
committed
module = builder_module()
if not module.cleanup(self, dictionary):
raise Exception("Don't know how to do cleanup with dictionary: "+dictionary)
Johnny Chen
committed
Daniel Malea
committed
def getLLDBLibraryEnvVal(self):
""" Returns the path that the OS-specific library search environment variable
(self.dylibPath) should be set to in order for a program to find the LLDB
library. If an environment variable named self.dylibPath is already set,
the new path is appended to it and returned.
"""
existing_library_path = os.environ[self.dylibPath] if self.dylibPath in os.environ else None
if existing_library_path:
return "%s:%s" % (existing_library_path, self.lib_dir)
elif sys.platform.startswith("darwin"):
return os.path.join(self.lib_dir, 'LLDB.framework')
else:
return self.lib_dir
Johnny Chen
committed
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
class TestBase(Base):
"""
This abstract base class is meant to be subclassed. It provides default
implementations for setUpClass(), tearDownClass(), setUp(), and tearDown(),
among other things.
Important things for test class writers:
- Overwrite the mydir class attribute, otherwise your test class won't
run. It specifies the relative directory to the top level 'test' so
the test harness can change to the correct working directory before
running your test.
- The setUp method sets up things to facilitate subsequent interactions
with the debugger as part of the test. These include:
- populate the test method name
- create/get a debugger set with synchronous mode (self.dbg)
- get the command interpreter from with the debugger (self.ci)
- create a result object for use with the command interpreter
(self.res)
- plus other stuffs
- The tearDown method tries to perform some necessary cleanup on behalf
of the test to return the debugger to a good state for the next test.
These include:
- execute any tearDown hooks registered by the test method with
TestBase.addTearDownHook(); examples can be found in
settings/TestSettings.py
- kill the inferior process associated with each target, if any,
and, then delete the target from the debugger's target list
- perform build cleanup before running the next test method in the
same test class; examples of registering for this service can be
found in types/TestIntegerTypes.py with the call:
- self.setTearDownCleanup(dictionary=d)
- Similarly setUpClass and tearDownClass perform classwise setup and
teardown fixtures. The tearDownClass method invokes a default build
cleanup for the entire test class; also, subclasses can implement the
classmethod classCleanup(cls) to perform special class cleanup action.
- The instance methods runCmd and expect are used heavily by existing
test cases to send a command to the command interpreter and to perform
string/pattern matching on the output of such command execution. The
expect method also provides a mode to peform string/pattern matching
without running a command.
- The build methods buildDefault, buildDsym, and buildDwarf are used to
build the binaries used during a particular test scenario. A plugin
should be provided for the sys.platform running the test suite. The
Mac OS X implementation is located in plugins/darwin.py.
"""
# Maximum allowed attempts when launching the inferior process.
# Can be overridden by the LLDB_MAX_LAUNCH_COUNT environment variable.
maxLaunchCount = 3;
# Time to wait before the next launching attempt in second(s).
# Can be overridden by the LLDB_TIME_WAIT_NEXT_LAUNCH environment variable.
timeWaitNextLaunch = 1.0;
Johnny Chen
committed
def doDelay(self):
"""See option -w of dotest.py."""
if ("LLDB_WAIT_BETWEEN_TEST_CASES" in os.environ and
os.environ["LLDB_WAIT_BETWEEN_TEST_CASES"] == 'YES'):
waitTime = 1.0
if "LLDB_TIME_WAIT_BETWEEN_TEST_CASES" in os.environ:
waitTime = float(os.environ["LLDB_TIME_WAIT_BETWEEN_TEST_CASES"])
time.sleep(waitTime)
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
# Returns the list of categories to which this test case belongs
# by default, look for a ".categories" file, and read its contents
# if no such file exists, traverse the hierarchy - we guarantee
# a .categories to exist at the top level directory so we do not end up
# looping endlessly - subclasses are free to define their own categories
# in whatever way makes sense to them
def getCategories(self):
import inspect
import os.path
folder = inspect.getfile(self.__class__)
folder = os.path.dirname(folder)
while folder != '/':
categories_file_name = os.path.join(folder,".categories")
if os.path.exists(categories_file_name):
categories_file = open(categories_file_name,'r')
categories = categories_file.readline()
categories_file.close()
categories = str.replace(categories,'\n','')
categories = str.replace(categories,'\r','')
return categories.split(',')
else:
folder = os.path.dirname(folder)
continue
Johnny Chen
committed
def setUp(self):
#import traceback
#traceback.print_stack()
Johnny Chen
committed
Johnny Chen
committed
# Works with the test driver to conditionally skip tests via decorators.
Base.setUp(self)
Johnny Chen
committed
try:
if lldb.blacklist:
className = self.__class__.__name__
classAndMethodName = "%s.%s" % (className, self._testMethodName)
if className in lldb.blacklist:
self.skipTest(lldb.blacklist.get(className))
elif classAndMethodName in lldb.blacklist:
self.skipTest(lldb.blacklist.get(classAndMethodName))
except AttributeError:
pass
Johnny Chen
committed
Johnny Chen
committed
# Insert some delay between successive test cases if specified.
self.doDelay()
if "LLDB_MAX_LAUNCH_COUNT" in os.environ:
self.maxLaunchCount = int(os.environ["LLDB_MAX_LAUNCH_COUNT"])
if "LLDB_TIME_WAIT_NEXT_LAUNCH" in os.environ:
Johnny Chen
committed
self.timeWaitNextLaunch = float(os.environ["LLDB_TIME_WAIT_NEXT_LAUNCH"])
Johnny Chen
committed
# Create the debugger instance if necessary.
try:
self.dbg = lldb.DBG
except AttributeError:
self.dbg = lldb.SBDebugger.Create()
if not self.dbg:
Johnny Chen
committed
raise Exception('Invalid debugger instance')
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
#
# Warning: MAJOR HACK AHEAD!
# If we are running testsuite remotely (by checking lldb.lldbtest_remote_sandbox),
# redefine the self.dbg.CreateTarget(filename) method to execute a "file filename"
# command, instead. See also runCmd() where it decorates the "file filename" call
# with additional functionality when running testsuite remotely.
#
if lldb.lldbtest_remote_sandbox:
def DecoratedCreateTarget(arg):
self.runCmd("file %s" % arg)
target = self.dbg.GetSelectedTarget()
#
# SBTarget.LaunchSimple() currently not working for remote platform?
# johnny @ 04/23/2012
#
def DecoratedLaunchSimple(argv, envp, wd):
self.runCmd("run")
return target.GetProcess()
target.LaunchSimple = DecoratedLaunchSimple
return target
self.dbg.CreateTarget = DecoratedCreateTarget
if self.TraceOn():
print "self.dbg.Create is redefined to:\n%s" % getsource_if_available(DecoratedCreateTarget)
Johnny Chen
committed
# We want our debugger to be synchronous.
self.dbg.SetAsync(False)
# Retrieve the associated command interpreter instance.
self.ci = self.dbg.GetCommandInterpreter()
if not self.ci:
raise Exception('Could not get the command interpreter')
# And the result object.
self.res = lldb.SBCommandReturnObject()
Johnny Chen
committed
# Run global pre-flight code, if defined via the config file.
if lldb.pre_flight:
lldb.pre_flight(self)
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
# utility methods that tests can use to access the current objects
def target(self):
if not self.dbg:
raise Exception('Invalid debugger instance')
return self.dbg.GetSelectedTarget()
def process(self):
if not self.dbg:
raise Exception('Invalid debugger instance')
return self.dbg.GetSelectedTarget().GetProcess()
def thread(self):
if not self.dbg:
raise Exception('Invalid debugger instance')
return self.dbg.GetSelectedTarget().GetProcess().GetSelectedThread()
def frame(self):
if not self.dbg:
raise Exception('Invalid debugger instance')
return self.dbg.GetSelectedTarget().GetProcess().GetSelectedThread().GetSelectedFrame()
Johnny Chen
committed
def tearDown(self):
Johnny Chen
committed
#import traceback
#traceback.print_stack()
Base.tearDown(self)
Johnny Chen
committed
# Delete the target(s) from the debugger as a general cleanup step.
# This includes terminating the process for each target, if any.
# We'd like to reuse the debugger for our next test without incurring
# the initialization overhead.
targets = []
for target in self.dbg:
if target:
targets.append(target)
process = target.GetProcess()
if process:
rc = self.invoke(process, "Kill")
self.assertTrue(rc.Success(), PROCESS_KILLED)
for target in targets:
self.dbg.DeleteTarget(target)
Johnny Chen
committed
Johnny Chen
committed
# Run global post-flight code, if defined via the config file.
if lldb.post_flight:
lldb.post_flight(self)
Johnny Chen
committed
del self.dbg
def switch_to_thread_with_stop_reason(self, stop_reason):
"""
Run the 'thread list' command, and select the thread with stop reason as
'stop_reason'. If no such thread exists, no select action is done.
"""
from lldbutil import stop_reason_to_str
self.runCmd('thread list')
output = self.res.GetOutput()
thread_line_pattern = re.compile("^[ *] thread #([0-9]+):.*stop reason = %s" %
stop_reason_to_str(stop_reason))
for line in output.splitlines():
matched = thread_line_pattern.match(line)
if matched:
self.runCmd('thread select %s' % matched.group(1))
def runCmd(self, cmd, msg=None, check=True, trace=False, inHistory=False):
Johnny Chen
committed
"""
Ask the command interpreter to handle the command and then check its
return status.
"""
# Fail fast if 'cmd' is not meaningful.
if not cmd or len(cmd) == 0:
raise Exception("Bad 'cmd' parameter encountered")
Johnny Chen
committed
Johnny Chen
committed
trace = (True if traceAlways else trace)
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
# This is an opportunity to insert the 'platform target-install' command if we are told so
# via the settig of lldb.lldbtest_remote_sandbox.
if cmd.startswith("target create "):
cmd = cmd.replace("target create ", "file ")
if cmd.startswith("file ") and lldb.lldbtest_remote_sandbox:
with recording(self, trace) as sbuf:
the_rest = cmd.split("file ")[1]
# Split the rest of the command line.
atoms = the_rest.split()
#
# NOTE: This assumes that the options, if any, follow the file command,
# instead of follow the specified target.
#
target = atoms[-1]
# Now let's get the absolute pathname of our target.
abs_target = os.path.abspath(target)
print >> sbuf, "Found a file command, target (with absolute pathname)=%s" % abs_target
fpath, fname = os.path.split(abs_target)
parent_dir = os.path.split(fpath)[0]
platform_target_install_command = 'platform target-install %s %s' % (fpath, lldb.lldbtest_remote_sandbox)
print >> sbuf, "Insert this command to be run first: %s" % platform_target_install_command
self.ci.HandleCommand(platform_target_install_command, self.res)
# And this is the file command we want to execute, instead.
#
# Warning: SIDE EFFECT AHEAD!!!
# Populate the remote executable pathname into the lldb namespace,
# so that test cases can grab this thing out of the namespace.
#
lldb.lldbtest_remote_sandboxed_executable = abs_target.replace(parent_dir, lldb.lldbtest_remote_sandbox)
cmd = "file -P %s %s %s" % (lldb.lldbtest_remote_sandboxed_executable, the_rest.replace(target, ''), abs_target)
print >> sbuf, "And this is the replaced file command: %s" % cmd
running = (cmd.startswith("run") or cmd.startswith("process launch"))
Johnny Chen
committed
for i in range(self.maxLaunchCount if running else 1):
self.ci.HandleCommand(cmd, self.res, inHistory)
Johnny Chen
committed
with recording(self, trace) as sbuf:
print >> sbuf, "runCmd:", cmd
Johnny Chen
committed
if not check:
print >> sbuf, "check of return status not required"
if self.res.Succeeded():
print >> sbuf, "output:", self.res.GetOutput()
else:
print >> sbuf, "runCmd failed!"
print >> sbuf, self.res.GetError()
Johnny Chen
committed
if self.res.Succeeded():
break
elif running:
# For process launch, wait some time before possible next try.
time.sleep(self.timeWaitNextLaunch)
with recording(self, trace) as sbuf:
print >> sbuf, "Command '" + cmd + "' failed!"
Johnny Chen
committed
Johnny Chen
committed
if check:
self.assertTrue(self.res.Succeeded(),
msg if msg else CMD_MSG(cmd))
Johnny Chen
committed
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
def match (self, str, patterns, msg=None, trace=False, error=False, matching=True, exe=True):
"""run command in str, and match the result against regexp in patterns returning the match object for the first matching pattern
Otherwise, all the arguments have the same meanings as for the expect function"""
trace = (True if traceAlways else trace)
if exe:
# First run the command. If we are expecting error, set check=False.
# Pass the assert message along since it provides more semantic info.
self.runCmd(str, msg=msg, trace = (True if trace else False), check = not error)
# Then compare the output against expected strings.
output = self.res.GetError() if error else self.res.GetOutput()
# If error is True, the API client expects the command to fail!
if error:
self.assertFalse(self.res.Succeeded(),
"Command '" + str + "' is expected to fail!")
else:
# No execution required, just compare str against the golden input.
output = str
with recording(self, trace) as sbuf:
print >> sbuf, "looking at:", output
# The heading says either "Expecting" or "Not expecting".
heading = "Expecting" if matching else "Not expecting"
for pattern in patterns:
# Match Objects always have a boolean value of True.
match_object = re.search(pattern, output)
matched = bool(match_object)
with recording(self, trace) as sbuf:
print >> sbuf, "%s pattern: %s" % (heading, pattern)
print >> sbuf, "Matched" if matched else "Not matched"
if matched:
break
self.assertTrue(matched if matching else not matched,
msg if msg else EXP_MSG(str, exe))
return match_object
def expect(self, str, msg=None, patterns=None, startstr=None, endstr=None, substrs=None, trace=False, error=False, matching=True, exe=True, inHistory=False):
Johnny Chen
committed
"""
Similar to runCmd; with additional expect style output matching ability.
Ask the command interpreter to handle the command and then check its
return status. The 'msg' parameter specifies an informational assert
message. We expect the output from running the command to start with
Johnny Chen
committed
'startstr', matches the substrings contained in 'substrs', and regexp
matches the patterns contained in 'patterns'.
Johnny Chen
committed
If the keyword argument error is set to True, it signifies that the API
client is expecting the command to fail. In this case, the error stream
from running the command is retrieved and compared against the golden
Johnny Chen
committed
input, instead.
Johnny Chen
committed
If the keyword argument matching is set to False, it signifies that the API
client is expecting the output of the command not to match the golden
input.
Finally, the required argument 'str' represents the lldb command to be
sent to the command interpreter. In case the keyword argument 'exe' is
set to False, the 'str' is treated as a string to be matched/not-matched
against the golden input.
Johnny Chen
committed
"""
Johnny Chen
committed
trace = (True if traceAlways else trace)
if exe:
# First run the command. If we are expecting error, set check=False.
# Pass the assert message along since it provides more semantic info.
self.runCmd(str, msg=msg, trace = (True if trace else False), check = not error, inHistory=inHistory)
Johnny Chen
committed
# Then compare the output against expected strings.
output = self.res.GetError() if error else self.res.GetOutput()
Johnny Chen
committed
# If error is True, the API client expects the command to fail!
if error:
self.assertFalse(self.res.Succeeded(),
"Command '" + str + "' is expected to fail!")
else:
# No execution required, just compare str against the golden input.
if isinstance(str,lldb.SBCommandReturnObject):
output = str.GetOutput()
else:
output = str
with recording(self, trace) as sbuf:
print >> sbuf, "looking at:", output
Johnny Chen
committed
Johnny Chen
committed
# The heading says either "Expecting" or "Not expecting".
heading = "Expecting" if matching else "Not expecting"
Johnny Chen
committed
# Start from the startstr, if specified.
# If there's no startstr, set the initial state appropriately.
matched = output.startswith(startstr) if startstr else (True if matching else False)
Johnny Chen
committed
if startstr:
with recording(self, trace) as sbuf:
print >> sbuf, "%s start string: %s" % (heading, startstr)
print >> sbuf, "Matched" if matched else "Not matched"
Johnny Chen
committed
# Look for endstr, if specified.
keepgoing = matched if matching else not matched
if endstr:
matched = output.endswith(endstr)
with recording(self, trace) as sbuf:
print >> sbuf, "%s end string: %s" % (heading, endstr)
print >> sbuf, "Matched" if matched else "Not matched"
Johnny Chen
committed
# Look for sub strings, if specified.
keepgoing = matched if matching else not matched
if substrs and keepgoing:
Johnny Chen
committed
for str in substrs:
matched = output.find(str) != -1
with recording(self, trace) as sbuf:
print >> sbuf, "%s sub string: %s" % (heading, str)
print >> sbuf, "Matched" if matched else "Not matched"
Johnny Chen
committed
keepgoing = matched if matching else not matched
if not keepgoing:
break
# Search for regular expression patterns, if specified.
keepgoing = matched if matching else not matched
if patterns and keepgoing:
for pattern in patterns:
# Match Objects always have a boolean value of True.
matched = bool(re.search(pattern, output))
with recording(self, trace) as sbuf:
print >> sbuf, "%s pattern: %s" % (heading, pattern)
print >> sbuf, "Matched" if matched else "Not matched"
Johnny Chen
committed
keepgoing = matched if matching else not matched
if not keepgoing:
Johnny Chen
committed
break
Johnny Chen
committed
self.assertTrue(matched if matching else not matched,
msg if msg else EXP_MSG(str, exe))
Johnny Chen
committed
def invoke(self, obj, name, trace=False):
"""Use reflection to call a method dynamically with no argument."""
Johnny Chen
committed
trace = (True if traceAlways else trace)
method = getattr(obj, name)
import inspect
self.assertTrue(inspect.ismethod(method),
name + "is a method name of object: " + str(obj))
result = method()
with recording(self, trace) as sbuf:
print >> sbuf, str(method) + ":", result
return result
# =================================================
# Misc. helper methods for debugging test execution
# =================================================
Johnny Chen
committed
def DebugSBValue(self, val):
Johnny Chen
committed
"""Debug print a SBValue object, if traceAlways is True."""
Johnny Chen
committed
from lldbutil import value_type_to_str
Johnny Chen
committed
Johnny Chen
committed
if not traceAlways:
return
err = sys.stderr
err.write(val.GetName() + ":\n")
err.write('\t' + "TypeName -> " + val.GetTypeName() + '\n')
err.write('\t' + "ByteSize -> " + str(val.GetByteSize()) + '\n')
err.write('\t' + "NumChildren -> " + str(val.GetNumChildren()) + '\n')
err.write('\t' + "Value -> " + str(val.GetValue()) + '\n')
err.write('\t' + "ValueAsUnsigned -> " + str(val.GetValueAsUnsigned())+ '\n')
err.write('\t' + "ValueType -> " + value_type_to_str(val.GetValueType()) + '\n')
err.write('\t' + "Summary -> " + str(val.GetSummary()) + '\n')
err.write('\t' + "IsPointerType -> " + str(val.TypeIsPointerType()) + '\n')
err.write('\t' + "Location -> " + val.GetLocation() + '\n')
def DebugSBType(self, type):
"""Debug print a SBType object, if traceAlways is True."""
if not traceAlways:
return
err = sys.stderr
err.write(type.GetName() + ":\n")
err.write('\t' + "ByteSize -> " + str(type.GetByteSize()) + '\n')
err.write('\t' + "IsPointerType -> " + str(type.IsPointerType()) + '\n')
err.write('\t' + "IsReferenceType -> " + str(type.IsReferenceType()) + '\n')
Johnny Chen
committed
def DebugPExpect(self, child):
"""Debug the spwaned pexpect object."""
if not traceAlways:
return
print child
@classmethod
def RemoveTempFile(cls, file):
if os.path.exists(file):
os.remove(file)