Newer
Older
Johnny Chen
committed
"""
LLDB module which provides the abstract base class of lldb test case.
The concrete subclass can override lldbtest.TesBase in order to inherit the
common behavior for unitest.TestCase.setUp/tearDown implemented in this file.
The subclass should override the attribute mydir in order for the python runtime
to locate the individual test cases when running as part of a large test suite
or when running each test case as a separate python invocation.
./dotest.py provides a test driver which sets up the environment to run the
Johnny Chen
committed
entire of part of the test suite . Example:
Johnny Chen
committed
Johnny Chen
committed
# Exercises the test suite in the types directory....
/Volumes/data/lldb/svn/ToT/test $ ./dotest.py -A x86_64 types
Johnny Chen
committed
...
Johnny Chen
committed
Session logs for test failures/errors/unexpected successes will go into directory '2012-05-16-13_35_42'
Command invoked: python ./dotest.py -A x86_64 types
compilers=['clang']
Johnny Chen
committed
Configuration: arch=x86_64 compiler=clang
----------------------------------------------------------------------
Collected 72 tests
Johnny Chen
committed
........................................................................
----------------------------------------------------------------------
Johnny Chen
committed
Ran 72 tests in 135.468s
Johnny Chen
committed
OK
$
"""
import os, sys, traceback
Enrico Granata
committed
import os.path
Johnny Chen
committed
import re
Johnny Chen
committed
from subprocess import *
import StringIO
import time
Johnny Chen
committed
import types
import unittest2
Johnny Chen
committed
import lldb
Johnny Chen
committed
# See also dotest.parseOptionsAndInitTestdirs(), where the environment variables
# LLDB_COMMAND_TRACE and LLDB_DO_CLEANUP are set from '-t' and '-r dir' options.
Johnny Chen
committed
# By default, traceAlways is False.
Johnny Chen
committed
if "LLDB_COMMAND_TRACE" in os.environ and os.environ["LLDB_COMMAND_TRACE"]=="YES":
traceAlways = True
else:
traceAlways = False
Johnny Chen
committed
# By default, doCleanup is True.
if "LLDB_DO_CLEANUP" in os.environ and os.environ["LLDB_DO_CLEANUP"]=="NO":
doCleanup = False
else:
doCleanup = True
Johnny Chen
committed
Johnny Chen
committed
#
# Some commonly used assert messages.
#
COMMAND_FAILED_AS_EXPECTED = "Command has failed as expected"
Johnny Chen
committed
CURRENT_EXECUTABLE_SET = "Current executable set successfully"
Johnny Chen
committed
PROCESS_IS_VALID = "Process is valid"
PROCESS_KILLED = "Process is killed successfully"
PROCESS_EXITED = "Process exited successfully"
PROCESS_STOPPED = "Process status should be stopped"
Johnny Chen
committed
RUN_SUCCEEDED = "Process is launched successfully"
Johnny Chen
committed
RUN_COMPLETED = "Process exited successfully"
Johnny Chen
committed
Johnny Chen
committed
BACKTRACE_DISPLAYED_CORRECTLY = "Backtrace displayed correctly"
BREAKPOINT_CREATED = "Breakpoint created successfully"
Johnny Chen
committed
BREAKPOINT_STATE_CORRECT = "Breakpoint state is correct"
BREAKPOINT_PENDING_CREATED = "Pending breakpoint created successfully"
BREAKPOINT_HIT_ONCE = "Breakpoint resolved with hit cout = 1"
Johnny Chen
committed
BREAKPOINT_HIT_TWICE = "Breakpoint resolved with hit cout = 2"
BREAKPOINT_HIT_THRICE = "Breakpoint resolved with hit cout = 3"
MISSING_EXPECTED_REGISTERS = "At least one expected register is unavailable."
OBJECT_PRINTED_CORRECTLY = "Object printed correctly"
Johnny Chen
committed
SOURCE_DISPLAYED_CORRECTLY = "Source code displayed correctly"
STEP_OUT_SUCCEEDED = "Thread step-out succeeded"
Johnny Chen
committed
STOPPED_DUE_TO_EXC_BAD_ACCESS = "Process should be stopped due to bad access exception"
Ashok Thirumurthi
committed
STOPPED_DUE_TO_ASSERT = "Process should be stopped due to an assertion"
STOPPED_DUE_TO_BREAKPOINT = "Process should be stopped due to breakpoint"
Johnny Chen
committed
STOPPED_DUE_TO_BREAKPOINT_WITH_STOP_REASON_AS = "%s, %s" % (
STOPPED_DUE_TO_BREAKPOINT, "instead, the actual stop reason is: '%s'")
Johnny Chen
committed
Johnny Chen
committed
STOPPED_DUE_TO_BREAKPOINT_CONDITION = "Stopped due to breakpoint condition"
Johnny Chen
committed
STOPPED_DUE_TO_BREAKPOINT_IGNORE_COUNT = "Stopped due to breakpoint and ignore count"
Johnny Chen
committed
STOPPED_DUE_TO_SIGNAL = "Process state is stopped due to signal"
Johnny Chen
committed
STOPPED_DUE_TO_STEP_IN = "Process state is stopped due to step in"
Johnny Chen
committed
STOPPED_DUE_TO_WATCHPOINT = "Process should be stopped due to watchpoint"
DATA_TYPES_DISPLAYED_CORRECTLY = "Data type(s) displayed correctly"
VALID_BREAKPOINT = "Got a valid breakpoint"
VALID_BREAKPOINT_LOCATION = "Got a valid breakpoint location"
VALID_COMMAND_INTERPRETER = "Got a valid command interpreter"
Johnny Chen
committed
VALID_FILESPEC = "Got a valid filespec"
Johnny Chen
committed
VALID_MODULE = "Got a valid module"
VALID_PROCESS = "Got a valid process"
Johnny Chen
committed
VALID_SYMBOL = "Got a valid symbol"
VALID_TARGET = "Got a valid target"
VALID_TYPE = "Got a valid type"
VALID_VARIABLE = "Got a valid variable"
Johnny Chen
committed
VARIABLES_DISPLAYED_CORRECTLY = "Variable(s) displayed correctly"
Johnny Chen
committed
Johnny Chen
committed
WATCHPOINT_CREATED = "Watchpoint created successfully"
def CMD_MSG(str):
'''A generic "Command '%s' returns successfully" message generator.'''
return "Command '%s' returns successfully" % str
Johnny Chen
committed
def COMPLETION_MSG(str_before, str_after):
'''A generic message generator for the completion mechanism.'''
return "'%s' successfully completes to '%s'" % (str_before, str_after)
def EXP_MSG(str, exe):
'''A generic "'%s' returns expected result" message generator if exe.
Otherwise, it generates "'%s' matches expected result" message.'''
return "'%s' %s expected result" % (str, 'returns' if exe else 'matches')
def SETTING_MSG(setting):
'''A generic "Value of setting '%s' is correct" message generator.'''
return "Value of setting '%s' is correct" % setting
"""Returns an env variable array from the os.environ map object."""
return map(lambda k,v: k+"="+v, os.environ.keys(), os.environ.values())
Johnny Chen
committed
def line_number(filename, string_to_match):
"""Helper function to return the line number of the first matched string."""
with open(filename, 'r') as f:
for i, line in enumerate(f):
if line.find(string_to_match) != -1:
# Found our match.
return i+1
Johnny Chen
committed
raise Exception("Unable to find '%s' within file %s" % (string_to_match, filename))
Johnny Chen
committed
Johnny Chen
committed
def pointer_size():
"""Return the pointer size of the host system."""
import ctypes
a_pointer = ctypes.c_void_p(0xffff)
return 8 * ctypes.sizeof(a_pointer)
Johnny Chen
committed
def is_exe(fpath):
"""Returns true if fpath is an executable."""
return os.path.isfile(fpath) and os.access(fpath, os.X_OK)
def which(program):
"""Returns the full path to a program; None otherwise."""
fpath, fname = os.path.split(program)
if fpath:
if is_exe(program):
return program
else:
for path in os.environ["PATH"].split(os.pathsep):
exe_file = os.path.join(path, program)
if is_exe(exe_file):
return exe_file
return None
class recording(StringIO.StringIO):
"""
A nice little context manager for recording the debugger interactions into
our session object. If trace flag is ON, it also emits the interactions
into the stderr.
"""
def __init__(self, test, trace):
"""Create a StringIO instance; record the session obj and trace flag."""
StringIO.StringIO.__init__(self)
# The test might not have undergone the 'setUp(self)' phase yet, so that
# the attribute 'session' might not even exist yet.
self.session = getattr(test, "session", None) if test else None
self.trace = trace
def __enter__(self):
"""
Context management protocol on entry to the body of the with statement.
Just return the StringIO object.
"""
return self
def __exit__(self, type, value, tb):
"""
Context management protocol on exit from the body of the with statement.
If trace is ON, it emits the recordings into stderr. Always add the
recordings to our session object. And close the StringIO object, too.
"""
if self.trace:
print >> sys.stderr, self.getvalue()
if self.session:
print >> self.session, self.getvalue()
self.close()
# From 2.7's subprocess.check_output() convenience function.
# Return a tuple (stdoutdata, stderrdata).
def system(*popenargs, **kwargs):
r"""Run an os command with arguments and return its output as a byte string.
If the exit code was non-zero it raises a CalledProcessError. The
CalledProcessError object will have the return code in the returncode
attribute and output in the output attribute.
The arguments are the same as for the Popen constructor. Example:
>>> check_output(["ls", "-l", "/dev/null"])
'crw-rw-rw- 1 root root 1, 3 Oct 18 2007 /dev/null\n'
The stdout argument is not allowed as it is used internally.
To capture standard error in the result, use stderr=STDOUT.
>>> check_output(["/bin/sh", "-c",
... "ls -l non_existent_file ; exit 0"],
... stderr=STDOUT)
'ls: non_existent_file: No such file or directory\n'
"""
# Assign the sender object to variable 'test' and remove it from kwargs.
test = kwargs.pop('sender', None)
if 'stdout' in kwargs:
raise ValueError('stdout argument not allowed, it will be overridden.')
process = Popen(stdout=PIPE, stderr=PIPE, *popenargs, **kwargs)
Johnny Chen
committed
pid = process.pid
output, error = process.communicate()
retcode = process.poll()
with recording(test, traceAlways) as sbuf:
if isinstance(popenargs, types.StringTypes):
args = [popenargs]
else:
args = list(popenargs)
print >> sbuf
print >> sbuf, "os command:", args
Johnny Chen
committed
print >> sbuf, "with pid:", pid
print >> sbuf, "stdout:", output
print >> sbuf, "stderr:", error
print >> sbuf, "retcode:", retcode
print >> sbuf
if retcode:
cmd = kwargs.get("args")
if cmd is None:
cmd = popenargs[0]
raise CalledProcessError(retcode, cmd)
def getsource_if_available(obj):
"""
Return the text of the source code for an object if available. Otherwise,
a print representation is returned.
"""
import inspect
try:
return inspect.getsource(obj)
except:
return repr(obj)
def builder_module():
if sys.platform.startswith("freebsd"):
return __import__("builder_freebsd")
return __import__("builder_" + sys.platform)
Johnny Chen
committed
#
# Decorators for categorizing test cases.
#
Johnny Chen
committed
from functools import wraps
def python_api_test(func):
"""Decorate the item as a Python API only test."""
if isinstance(func, type) and issubclass(func, unittest2.TestCase):
raise Exception("@python_api_test can only be used to decorate a test method")
@wraps(func)
def wrapper(self, *args, **kwargs):
try:
if lldb.dont_do_python_api_test:
self.skipTest("python api tests")
except AttributeError:
pass
return func(self, *args, **kwargs)
Johnny Chen
committed
# Mark this function as such to separate them from lldb command line tests.
wrapper.__python_api_test__ = True
return wrapper
Johnny Chen
committed
def benchmarks_test(func):
"""Decorate the item as a benchmarks test."""
if isinstance(func, type) and issubclass(func, unittest2.TestCase):
raise Exception("@benchmarks_test can only be used to decorate a test method")
@wraps(func)
def wrapper(self, *args, **kwargs):
try:
if not lldb.just_do_benchmarks_test:
self.skipTest("benchmarks tests")
except AttributeError:
pass
return func(self, *args, **kwargs)
Johnny Chen
committed
# Mark this function as such to separate them from the regular tests.
wrapper.__benchmarks_test__ = True
return wrapper
Johnny Chen
committed
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
def dsym_test(func):
"""Decorate the item as a dsym test."""
if isinstance(func, type) and issubclass(func, unittest2.TestCase):
raise Exception("@dsym_test can only be used to decorate a test method")
@wraps(func)
def wrapper(self, *args, **kwargs):
try:
if lldb.dont_do_dsym_test:
self.skipTest("dsym tests")
except AttributeError:
pass
return func(self, *args, **kwargs)
# Mark this function as such to separate them from the regular tests.
wrapper.__dsym_test__ = True
return wrapper
def dwarf_test(func):
"""Decorate the item as a dwarf test."""
if isinstance(func, type) and issubclass(func, unittest2.TestCase):
raise Exception("@dwarf_test can only be used to decorate a test method")
@wraps(func)
def wrapper(self, *args, **kwargs):
try:
if lldb.dont_do_dwarf_test:
self.skipTest("dwarf tests")
except AttributeError:
pass
return func(self, *args, **kwargs)
# Mark this function as such to separate them from the regular tests.
wrapper.__dwarf_test__ = True
return wrapper
def not_remote_testsuite_ready(func):
"""Decorate the item as a test which is not ready yet for remote testsuite."""
if isinstance(func, type) and issubclass(func, unittest2.TestCase):
raise Exception("@not_remote_testsuite_ready can only be used to decorate a test method")
@wraps(func)
def wrapper(self, *args, **kwargs):
try:
if lldb.lldbtest_remote_sandbox:
self.skipTest("not ready for remote testsuite")
except AttributeError:
pass
return func(self, *args, **kwargs)
# Mark this function as such to separate them from the regular tests.
wrapper.__not_ready_for_remote_testsuite_test__ = True
return wrapper
Ashok Thirumurthi
committed
def expectedFailureGcc(bugnumber=None, compiler_version=["=", None]):
if callable(bugnumber):
@wraps(bugnumber)
def expectedFailureGcc_easy_wrapper(*args, **kwargs):
from unittest2 import case
self = args[0]
test_compiler = self.getCompiler()
try:
bugnumber(*args, **kwargs)
except Exception:
Ashok Thirumurthi
committed
if "gcc" in test_compiler and self.expectedCompilerVersion(compiler_version):
raise case._ExpectedFailure(sys.exc_info(),None)
else:
raise
if "gcc" in test_compiler:
raise case._UnexpectedSuccess(sys.exc_info(),None)
return expectedFailureGcc_easy_wrapper
def expectedFailureGcc_impl(func):
@wraps(func)
def wrapper(*args, **kwargs):
from unittest2 import case
self = args[0]
test_compiler = self.getCompiler()
try:
func(*args, **kwargs)
except Exception:
Ashok Thirumurthi
committed
if "gcc" in test_compiler and self.expectedCompilerVersion(compiler_version):
raise case._ExpectedFailure(sys.exc_info(),bugnumber)
else:
raise
if "gcc" in test_compiler:
raise case._UnexpectedSuccess(sys.exc_info(),bugnumber)
return expectedFailureGcc_impl
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
def expectedFailureClang(bugnumber=None):
if callable(bugnumber):
@wraps(bugnumber)
def expectedFailureClang_easy_wrapper(*args, **kwargs):
from unittest2 import case
self = args[0]
test_compiler = self.getCompiler()
try:
bugnumber(*args, **kwargs)
except Exception:
if "clang" in test_compiler:
raise case._ExpectedFailure(sys.exc_info(),None)
else:
raise
if "clang" in test_compiler:
raise case._UnexpectedSuccess(sys.exc_info(),None)
return expectedFailureClang_easy_wrapper
else:
def expectedFailureClang_impl(func):
@wraps(func)
def wrapper(*args, **kwargs):
from unittest2 import case
self = args[0]
test_compiler = self.getCompiler()
try:
func(*args, **kwargs)
except Exception:
if "clang" in test_compiler:
raise case._ExpectedFailure(sys.exc_info(),bugnumber)
else:
raise
if "clang" in test_compiler:
raise case._UnexpectedSuccess(sys.exc_info(),bugnumber)
return wrapper
return expectedFailureClang_impl
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
def expectedFailureIcc(bugnumber=None):
if callable(bugnumber):
@wraps(bugnumber)
def expectedFailureIcc_easy_wrapper(*args, **kwargs):
from unittest2 import case
self = args[0]
test_compiler = self.getCompiler()
try:
bugnumber(*args, **kwargs)
except Exception:
if "icc" in test_compiler:
raise case._ExpectedFailure(sys.exc_info(),None)
else:
raise
if "icc" in test_compiler:
raise case._UnexpectedSuccess(sys.exc_info(),None)
return expectedFailureIcc_easy_wrapper
else:
def expectedFailureIcc_impl(func):
@wraps(func)
def wrapper(*args, **kwargs):
from unittest2 import case
self = args[0]
test_compiler = self.getCompiler()
try:
func(*args, **kwargs)
except Exception:
if "icc" in test_compiler:
raise case._ExpectedFailure(sys.exc_info(),bugnumber)
else:
raise
if "icc" in test_compiler:
raise case._UnexpectedSuccess(sys.exc_info(),bugnumber)
return wrapper
return expectedFailureIcc_impl
def expectedFailurei386(bugnumber=None):
if callable(bugnumber):
@wraps(bugnumber)
def expectedFailurei386_easy_wrapper(*args, **kwargs):
from unittest2 import case
self = args[0]
arch = self.getArchitecture()
try:
bugnumber(*args, **kwargs)
except Exception:
if "i386" in arch:
raise case._ExpectedFailure(sys.exc_info(),None)
else:
raise
if "i386" in arch:
raise case._UnexpectedSuccess(sys.exc_info(),None)
return expectedFailurei386_easy_wrapper
else:
def expectedFailurei386_impl(func):
@wraps(func)
def wrapper(*args, **kwargs):
from unittest2 import case
self = args[0]
arch = self.getArchitecture()
try:
func(*args, **kwargs)
except Exception:
if "i386" in arch:
raise case._ExpectedFailure(sys.exc_info(),bugnumber)
else:
raise
if "i386" in arch:
raise case._UnexpectedSuccess(sys.exc_info(),bugnumber)
return wrapper
return expectedFailurei386_impl
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
def expectedFailureFreeBSD(bugnumber=None, compilers=None):
if callable(bugnumber):
@wraps(bugnumber)
def expectedFailureFreeBSD_easy_wrapper(*args, **kwargs):
from unittest2 import case
self = args[0]
platform = sys.platform
try:
bugnumber(*args, **kwargs)
except Exception:
if "freebsd" in platform and self.expectedCompiler(compilers):
raise case._ExpectedFailure(sys.exc_info(),None)
else:
raise
if "freebsd" in platform and self.expectedCompiler(compilers):
raise case._UnexpectedSuccess(sys.exc_info(),None)
return expectedFailureFreeBSD_easy_wrapper
else:
def expectedFailureFreeBSD_impl(func):
@wraps(func)
def wrapper(*args, **kwargs):
from unittest2 import case
self = args[0]
platform = sys.platform
try:
func(*args, **kwargs)
except Exception:
if "freebsd" in platform and self.expectedCompiler(compilers):
raise case._ExpectedFailure(sys.exc_info(),bugnumber)
else:
raise
if "freebsd" in platform and self.expectedCompiler(compilers):
raise case._UnexpectedSuccess(sys.exc_info(),bugnumber)
return wrapper
return expectedFailureFreeBSD_impl
Ashok Thirumurthi
committed
def expectedFailureLinux(bugnumber=None, compilers=None):
if callable(bugnumber):
@wraps(bugnumber)
def expectedFailureLinux_easy_wrapper(*args, **kwargs):
from unittest2 import case
self = args[0]
platform = sys.platform
try:
bugnumber(*args, **kwargs)
except Exception:
Ashok Thirumurthi
committed
if "linux" in platform and self.expectedCompiler(compilers):
raise case._ExpectedFailure(sys.exc_info(),None)
else:
raise
Ashok Thirumurthi
committed
if "linux" in platform and self.expectedCompiler(compilers):
raise case._UnexpectedSuccess(sys.exc_info(),None)
return expectedFailureLinux_easy_wrapper
else:
def expectedFailureLinux_impl(func):
@wraps(func)
def wrapper(*args, **kwargs):
from unittest2 import case
self = args[0]
platform = sys.platform
try:
func(*args, **kwargs)
except Exception:
Ashok Thirumurthi
committed
if "linux" in platform and self.expectedCompiler(compilers):
raise case._ExpectedFailure(sys.exc_info(),bugnumber)
else:
raise
Ashok Thirumurthi
committed
if "linux" in platform and self.expectedCompiler(compilers):
raise case._UnexpectedSuccess(sys.exc_info(),bugnumber)
return wrapper
return expectedFailureLinux_impl
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
def expectedFailureDarwin(bugnumber=None):
if callable(bugnumber):
@wraps(bugnumber)
def expectedFailureDarwin_easy_wrapper(*args, **kwargs):
from unittest2 import case
self = args[0]
platform = sys.platform
try:
bugnumber(*args, **kwargs)
except Exception:
if "darwin" in platform:
raise case._ExpectedFailure(sys.exc_info(),None)
else:
raise
if "darwin" in platform:
raise case._UnexpectedSuccess(sys.exc_info(),None)
return expectedFailureDarwin_easy_wrapper
else:
def expectedFailureDarwin_impl(func):
@wraps(func)
def wrapper(*args, **kwargs):
from unittest2 import case
self = args[0]
platform = sys.platform
try:
func(*args, **kwargs)
except Exception:
if "darwin" in platform:
raise case._ExpectedFailure(sys.exc_info(),bugnumber)
else:
raise
if "darwin" in platform:
raise case._UnexpectedSuccess(sys.exc_info(),bugnumber)
return wrapper
return expectedFailureDarwin_impl
def skipIfFreeBSD(func):
"""Decorate the item to skip tests that should be skipped on FreeBSD."""
if isinstance(func, type) and issubclass(func, unittest2.TestCase):
raise Exception("@skipIfFreeBSD can only be used to decorate a test method")
@wraps(func)
def wrapper(*args, **kwargs):
from unittest2 import case
self = args[0]
platform = sys.platform
if "freebsd" in platform:
self.skipTest("skip on FreeBSD")
else:
func(*args, **kwargs)
return wrapper
def skipIfLinux(func):
"""Decorate the item to skip tests that should be skipped on Linux."""
if isinstance(func, type) and issubclass(func, unittest2.TestCase):
raise Exception("@skipIfLinux can only be used to decorate a test method")
@wraps(func)
def wrapper(*args, **kwargs):
from unittest2 import case
self = args[0]
platform = sys.platform
if "linux" in platform:
self.skipTest("skip on linux")
else:
Jim Ingham
committed
func(*args, **kwargs)
def skipIfDarwin(func):
"""Decorate the item to skip tests that should be skipped on Darwin."""
if isinstance(func, type) and issubclass(func, unittest2.TestCase):
raise Exception("@skipIfDarwin can only be used to decorate a test method")
@wraps(func)
def wrapper(*args, **kwargs):
from unittest2 import case
self = args[0]
platform = sys.platform
if "darwin" in platform:
self.skipTest("skip on darwin")
else:
func(*args, **kwargs)
return wrapper
def skipIfLinuxClang(func):
"""Decorate the item to skip tests that should be skipped if building on
Linux with clang.
"""
if isinstance(func, type) and issubclass(func, unittest2.TestCase):
raise Exception("@skipIfLinuxClang can only be used to decorate a test method")
@wraps(func)
def wrapper(*args, **kwargs):
from unittest2 import case
self = args[0]
compiler = self.getCompiler()
platform = sys.platform
if "clang" in compiler and "linux" in platform:
self.skipTest("skipping because Clang is used on Linux")
else:
func(*args, **kwargs)
return wrapper
Daniel Malea
committed
def skipIfGcc(func):
"""Decorate the item to skip tests that should be skipped if building with gcc ."""
if isinstance(func, type) and issubclass(func, unittest2.TestCase):
raise Exception("@skipIfGcc can only be used to decorate a test method")
Daniel Malea
committed
@wraps(func)
def wrapper(*args, **kwargs):
from unittest2 import case
self = args[0]
compiler = self.getCompiler()
if "gcc" in compiler:
self.skipTest("skipping because gcc is the test compiler")
else:
func(*args, **kwargs)
return wrapper
def skipIfIcc(func):
"""Decorate the item to skip tests that should be skipped if building with icc ."""
if isinstance(func, type) and issubclass(func, unittest2.TestCase):
raise Exception("@skipIfIcc can only be used to decorate a test method")
@wraps(func)
def wrapper(*args, **kwargs):
from unittest2 import case
self = args[0]
compiler = self.getCompiler()
if "icc" in compiler:
self.skipTest("skipping because icc is the test compiler")
else:
func(*args, **kwargs)
return wrapper
Daniel Malea
committed
def skipIfi386(func):
"""Decorate the item to skip tests that should be skipped if building 32-bit."""
if isinstance(func, type) and issubclass(func, unittest2.TestCase):
raise Exception("@skipIfi386 can only be used to decorate a test method")
@wraps(func)
def wrapper(*args, **kwargs):
from unittest2 import case
self = args[0]
if "i386" == self.getArchitecture():
self.skipTest("skipping because i386 is not a supported architecture")
else:
func(*args, **kwargs)
return wrapper
Johnny Chen
committed
class Base(unittest2.TestCase):
"""
Abstract base for performing lldb (see TestBase) or other generic tests (see
BenchBase for one example). lldbtest.Base works with the test driver to
accomplish things.
Enrico Granata
committed
# The concrete subclass should override this attribute.
mydir = None
Johnny Chen
committed
Johnny Chen
committed
# Keep track of the old current working directory.
oldcwd = None
Johnny Chen
committed
def TraceOn(self):
"""Returns True if we are in trace mode (tracing detailed test execution)."""
return traceAlways
Johnny Chen
committed
@classmethod
def setUpClass(cls):
Johnny Chen
committed
"""
Python unittest framework class setup fixture.
Do current directory manipulation.
"""
# Fail fast if 'mydir' attribute is not overridden.
Johnny Chen
committed
if not cls.mydir or len(cls.mydir) == 0:
raise Exception("Subclasses must override the 'mydir' attribute.")
Enrico Granata
committed
Johnny Chen
committed
# Save old working directory.
Johnny Chen
committed
cls.oldcwd = os.getcwd()
Johnny Chen
committed
# Change current working directory if ${LLDB_TEST} is defined.
# See also dotest.py which sets up ${LLDB_TEST}.
if ("LLDB_TEST" in os.environ):
Johnny Chen
committed
if traceAlways:
print >> sys.stderr, "Change dir to:", os.path.join(os.environ["LLDB_TEST"], cls.mydir)
Johnny Chen
committed
os.chdir(os.path.join(os.environ["LLDB_TEST"], cls.mydir))
@classmethod
def tearDownClass(cls):
Johnny Chen
committed
"""
Python unittest framework class teardown fixture.
Do class-wide cleanup.
"""
Johnny Chen
committed
if doCleanup and not lldb.skip_build_and_cleanup:
Johnny Chen
committed
# First, let's do the platform-specific cleanup.
module = builder_module()
Johnny Chen
committed
if not module.cleanup():
raise Exception("Don't know how to do cleanup")
Johnny Chen
committed
Johnny Chen
committed
# Subclass might have specific cleanup function defined.
if getattr(cls, "classCleanup", None):
if traceAlways:
print >> sys.stderr, "Call class-specific cleanup function for class:", cls
try:
cls.classCleanup()
except:
exc_type, exc_value, exc_tb = sys.exc_info()
traceback.print_exception(exc_type, exc_value, exc_tb)
Johnny Chen
committed
# Restore old working directory.
if traceAlways:
print >> sys.stderr, "Restore dir to:", cls.oldcwd
Johnny Chen
committed
os.chdir(cls.oldcwd)
Johnny Chen
committed
@classmethod
def skipLongRunningTest(cls):
"""
By default, we skip long running test case.
This can be overridden by passing '-l' to the test driver (dotest.py).
"""
if "LLDB_SKIP_LONG_RUNNING_TEST" in os.environ and "NO" == os.environ["LLDB_SKIP_LONG_RUNNING_TEST"]:
return False
else:
return True
def setUp(self):
"""Fixture for unittest test case setup.
It works with the test driver to conditionally skip tests and does other
initializations."""
Johnny Chen
committed
#import traceback
#traceback.print_stack()
if "LIBCXX_PATH" in os.environ:
self.libcxxPath = os.environ["LIBCXX_PATH"]
else:
self.libcxxPath = None
Johnny Chen
committed
if "LLDB_EXEC" in os.environ:
self.lldbExec = os.environ["LLDB_EXEC"]
Johnny Chen
committed
else:
self.lldbExec = None
if "LLDB_HERE" in os.environ:
self.lldbHere = os.environ["LLDB_HERE"]
else:
self.lldbHere = None
Johnny Chen
committed
# If we spawn an lldb process for test (via pexpect), do not load the
# init file unless told otherwise.
if "NO_LLDBINIT" in os.environ and "NO" == os.environ["NO_LLDBINIT"]:
self.lldbOption = ""
else:
self.lldbOption = "--no-lldbinit"
Johnny Chen
committed
Johnny Chen
committed
# Assign the test method name to self.testMethodName.
#
# For an example of the use of this attribute, look at test/types dir.
# There are a bunch of test cases under test/types and we don't want the
# module cacheing subsystem to be confused with executable name "a.out"
# used for all the test cases.
self.testMethodName = self._testMethodName
Johnny Chen
committed
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
# Python API only test is decorated with @python_api_test,
# which also sets the "__python_api_test__" attribute of the
# function object to True.
try:
if lldb.just_do_python_api_test:
testMethod = getattr(self, self._testMethodName)
if getattr(testMethod, "__python_api_test__", False):
pass
else:
self.skipTest("non python api test")
except AttributeError:
pass
# Benchmarks test is decorated with @benchmarks_test,
# which also sets the "__benchmarks_test__" attribute of the
# function object to True.
try:
if lldb.just_do_benchmarks_test:
testMethod = getattr(self, self._testMethodName)
if getattr(testMethod, "__benchmarks_test__", False):
pass
else:
self.skipTest("non benchmarks test")
except AttributeError:
pass
Johnny Chen
committed
# This is for the case of directly spawning 'lldb'/'gdb' and interacting
# with it using pexpect.
self.child = None
self.child_prompt = "(lldb) "
# If the child is interacting with the embedded script interpreter,
# there are two exits required during tear down, first to quit the
# embedded script interpreter and second to quit the lldb command
# interpreter.
self.child_in_script_interpreter = False
# These are for customized teardown cleanup.
self.dict = None
self.doTearDownCleanup = False
# And in rare cases where there are multiple teardown cleanups.
self.dicts = []
self.doTearDownCleanups = False
Daniel Malea
committed
# List of spawned subproces.Popen objects
self.subprocesses = []
# List of forked process PIDs
self.forkedProcessPids = []
# Create a string buffer to record the session info, to be dumped into a
# test case specific file if test failure is encountered.
self.session = StringIO.StringIO()
# Optimistically set __errored__, __failed__, __expected__ to False
# initially. If the test errored/failed, the session info
# (self.session) is then dumped into a session specific file for
# diagnosis.
self.__errored__ = False
self.__failed__ = False
self.__expected__ = False
# We are also interested in unexpected success.
self.__unexpected__ = False
# And skipped tests.
self.__skipped__ = False
# See addTearDownHook(self, hook) which allows the client to add a hook
# function to be run during tearDown() time.
self.hooks = []
# See HideStdout(self).
self.sys_stdout_hidden = False
# set environment variable names for finding shared libraries
if sys.platform.startswith("darwin"):
self.dylibPath = 'DYLD_LIBRARY_PATH'
elif sys.platform.startswith("linux") or sys.platform.startswith("freebsd"):
self.dylibPath = 'LD_LIBRARY_PATH'
def runHooks(self, child=None, child_prompt=None, use_cmd_api=False):
"""Perform the run hooks to bring lldb debugger to the desired state.
By default, expect a pexpect spawned child and child prompt to be
supplied (use_cmd_api=False). If use_cmd_api is true, ignore the child
and child prompt and use self.runCmd() to run the hooks one by one.
Note that child is a process spawned by pexpect.spawn(). If not, your
test case is mostly likely going to fail.
See also dotest.py where lldb.runHooks are processed/populated.
"""
if not lldb.runHooks:
self.skipTest("No runhooks specified for lldb, skip the test")
if use_cmd_api:
for hook in lldb.runhooks:
self.runCmd(hook)
else:
if not child or not child_prompt:
self.fail("Both child and child_prompt need to be defined.")
for hook in lldb.runHooks:
child.sendline(hook)
child.expect_exact(child_prompt)
def setAsync(self, value):
""" Sets async mode to True/False and ensures it is reset after the testcase completes."""
old_async = self.dbg.GetAsync()
self.dbg.SetAsync(value)
self.addTearDownHook(lambda: self.dbg.SetAsync(old_async))
Daniel Malea
committed
def cleanupSubprocesses(self):
# Ensure any subprocesses are cleaned up
for p in self.subprocesses:
if p.poll() == None:
p.terminate()
del p
del self.subprocesses[:]
# Ensure any forked processes are cleaned up
for pid in self.forkedProcessPids:
if os.path.exists("/proc/" + str(pid)):
os.kill(pid, signal.SIGTERM)
Daniel Malea
committed
def spawnSubprocess(self, executable, args=[]):
""" Creates a subprocess.Popen object with the specified executable and arguments,
saves it in self.subprocesses, and returns the object.
NOTE: if using this function, ensure you also call:
self.addTearDownHook(self.cleanupSubprocesses)
otherwise the test suite will leak processes.
"""
# Don't display the stdout if not in TraceOn() mode.
proc = Popen([executable] + args,