Johnny Chen | a1affab | 2010-07-03 03:41:59 +0000 | [diff] [blame] | 1 | """ |
| 2 | LLDB module which provides the abstract base class of lldb test case. |
| 3 | |
| 4 | The concrete subclass can override lldbtest.TesBase in order to inherit the |
| 5 | common behavior for unitest.TestCase.setUp/tearDown implemented in this file. |
| 6 | |
| 7 | The subclass should override the attribute mydir in order for the python runtime |
| 8 | to locate the individual test cases when running as part of a large test suite |
| 9 | or when running each test case as a separate python invocation. |
| 10 | |
| 11 | ./dotest.py provides a test driver which sets up the environment to run the |
Johnny Chen | e39170b | 2012-05-16 20:41:28 +0000 | [diff] [blame] | 12 | entire of part of the test suite . Example: |
Johnny Chen | a1affab | 2010-07-03 03:41:59 +0000 | [diff] [blame] | 13 | |
Johnny Chen | e39170b | 2012-05-16 20:41:28 +0000 | [diff] [blame] | 14 | # Exercises the test suite in the types directory.... |
| 15 | /Volumes/data/lldb/svn/ToT/test $ ./dotest.py -A x86_64 types |
Johnny Chen | 59ea45f | 2010-09-02 22:25:47 +0000 | [diff] [blame] | 16 | ... |
Johnny Chen | d0c24b2 | 2010-08-23 17:10:44 +0000 | [diff] [blame] | 17 | |
Johnny Chen | e39170b | 2012-05-16 20:41:28 +0000 | [diff] [blame] | 18 | Session logs for test failures/errors/unexpected successes will go into directory '2012-05-16-13_35_42' |
| 19 | Command invoked: python ./dotest.py -A x86_64 types |
| 20 | compilers=['clang'] |
Johnny Chen | d0c24b2 | 2010-08-23 17:10:44 +0000 | [diff] [blame] | 21 | |
Johnny Chen | e39170b | 2012-05-16 20:41:28 +0000 | [diff] [blame] | 22 | Configuration: arch=x86_64 compiler=clang |
Johnny Chen | d0c24b2 | 2010-08-23 17:10:44 +0000 | [diff] [blame] | 23 | ---------------------------------------------------------------------- |
Johnny Chen | e39170b | 2012-05-16 20:41:28 +0000 | [diff] [blame] | 24 | Collected 72 tests |
| 25 | |
| 26 | ........................................................................ |
| 27 | ---------------------------------------------------------------------- |
| 28 | Ran 72 tests in 135.468s |
Johnny Chen | d0c24b2 | 2010-08-23 17:10:44 +0000 | [diff] [blame] | 29 | |
| 30 | OK |
Johnny Chen | a1affab | 2010-07-03 03:41:59 +0000 | [diff] [blame] | 31 | $ |
| 32 | """ |
| 33 | |
Johnny Chen | 93ae604 | 2010-09-21 22:34:45 +0000 | [diff] [blame] | 34 | import os, sys, traceback |
Enrico Granata | 0fd6c8d | 2012-10-24 18:14:21 +0000 | [diff] [blame] | 35 | import os.path |
Johnny Chen | 2d89975 | 2010-09-21 21:08:53 +0000 | [diff] [blame] | 36 | import re |
Johnny Chen | a1cc883 | 2010-08-30 21:35:00 +0000 | [diff] [blame] | 37 | from subprocess import * |
Johnny Chen | 84a6d6f | 2010-10-15 01:18:29 +0000 | [diff] [blame] | 38 | import StringIO |
Johnny Chen | 6557248 | 2010-08-25 18:49:48 +0000 | [diff] [blame] | 39 | import time |
Johnny Chen | 1acaf63 | 2010-08-30 23:08:52 +0000 | [diff] [blame] | 40 | import types |
Johnny Chen | 75e28f9 | 2010-08-05 23:42:46 +0000 | [diff] [blame] | 41 | import unittest2 |
Johnny Chen | a1affab | 2010-07-03 03:41:59 +0000 | [diff] [blame] | 42 | import lldb |
| 43 | |
Johnny Chen | 548aefd | 2010-10-11 22:25:46 +0000 | [diff] [blame] | 44 | # See also dotest.parseOptionsAndInitTestdirs(), where the environment variables |
Johnny Chen | 24af296 | 2011-01-19 18:18:47 +0000 | [diff] [blame] | 45 | # LLDB_COMMAND_TRACE and LLDB_DO_CLEANUP are set from '-t' and '-r dir' options. |
Johnny Chen | 548aefd | 2010-10-11 22:25:46 +0000 | [diff] [blame] | 46 | |
| 47 | # By default, traceAlways is False. |
Johnny Chen | 9de4ede | 2010-08-31 17:42:54 +0000 | [diff] [blame] | 48 | if "LLDB_COMMAND_TRACE" in os.environ and os.environ["LLDB_COMMAND_TRACE"]=="YES": |
| 49 | traceAlways = True |
| 50 | else: |
| 51 | traceAlways = False |
| 52 | |
Johnny Chen | 548aefd | 2010-10-11 22:25:46 +0000 | [diff] [blame] | 53 | # By default, doCleanup is True. |
| 54 | if "LLDB_DO_CLEANUP" in os.environ and os.environ["LLDB_DO_CLEANUP"]=="NO": |
| 55 | doCleanup = False |
| 56 | else: |
| 57 | doCleanup = True |
| 58 | |
Johnny Chen | 9de4ede | 2010-08-31 17:42:54 +0000 | [diff] [blame] | 59 | |
Johnny Chen | 96f08d5 | 2010-08-09 22:01:17 +0000 | [diff] [blame] | 60 | # |
| 61 | # Some commonly used assert messages. |
| 62 | # |
| 63 | |
Johnny Chen | ee975b8 | 2010-09-17 22:45:27 +0000 | [diff] [blame] | 64 | COMMAND_FAILED_AS_EXPECTED = "Command has failed as expected" |
| 65 | |
Johnny Chen | 96f08d5 | 2010-08-09 22:01:17 +0000 | [diff] [blame] | 66 | CURRENT_EXECUTABLE_SET = "Current executable set successfully" |
| 67 | |
Johnny Chen | 72a1434 | 2010-09-02 21:23:12 +0000 | [diff] [blame] | 68 | PROCESS_IS_VALID = "Process is valid" |
| 69 | |
| 70 | PROCESS_KILLED = "Process is killed successfully" |
| 71 | |
Johnny Chen | 0ace30f | 2010-12-23 01:12:19 +0000 | [diff] [blame] | 72 | PROCESS_EXITED = "Process exited successfully" |
| 73 | |
| 74 | PROCESS_STOPPED = "Process status should be stopped" |
| 75 | |
Johnny Chen | 1bb9f9a | 2010-08-27 23:47:36 +0000 | [diff] [blame] | 76 | RUN_SUCCEEDED = "Process is launched successfully" |
Johnny Chen | 96f08d5 | 2010-08-09 22:01:17 +0000 | [diff] [blame] | 77 | |
Johnny Chen | d85dae5 | 2010-08-09 23:44:24 +0000 | [diff] [blame] | 78 | RUN_COMPLETED = "Process exited successfully" |
Johnny Chen | 96f08d5 | 2010-08-09 22:01:17 +0000 | [diff] [blame] | 79 | |
Johnny Chen | 5349ee2 | 2010-10-05 19:27:32 +0000 | [diff] [blame] | 80 | BACKTRACE_DISPLAYED_CORRECTLY = "Backtrace displayed correctly" |
| 81 | |
Johnny Chen | d85dae5 | 2010-08-09 23:44:24 +0000 | [diff] [blame] | 82 | BREAKPOINT_CREATED = "Breakpoint created successfully" |
| 83 | |
Johnny Chen | 1ad9e99 | 2010-12-04 00:07:24 +0000 | [diff] [blame] | 84 | BREAKPOINT_STATE_CORRECT = "Breakpoint state is correct" |
| 85 | |
Johnny Chen | 9b92c6e | 2010-08-17 21:33:31 +0000 | [diff] [blame] | 86 | BREAKPOINT_PENDING_CREATED = "Pending breakpoint created successfully" |
| 87 | |
Johnny Chen | d85dae5 | 2010-08-09 23:44:24 +0000 | [diff] [blame] | 88 | BREAKPOINT_HIT_ONCE = "Breakpoint resolved with hit cout = 1" |
Johnny Chen | 96f08d5 | 2010-08-09 22:01:17 +0000 | [diff] [blame] | 89 | |
Johnny Chen | 72afa8d | 2010-09-30 17:06:24 +0000 | [diff] [blame] | 90 | BREAKPOINT_HIT_TWICE = "Breakpoint resolved with hit cout = 2" |
| 91 | |
Johnny Chen | c55dace | 2010-10-15 18:07:09 +0000 | [diff] [blame] | 92 | BREAKPOINT_HIT_THRICE = "Breakpoint resolved with hit cout = 3" |
| 93 | |
Greg Clayton | b2c1a41 | 2012-10-24 18:24:14 +0000 | [diff] [blame] | 94 | MISSING_EXPECTED_REGISTERS = "At least one expected register is unavailable." |
| 95 | |
Johnny Chen | c0dbdc0 | 2011-06-27 20:05:23 +0000 | [diff] [blame] | 96 | OBJECT_PRINTED_CORRECTLY = "Object printed correctly" |
| 97 | |
Johnny Chen | 6f7abb0 | 2010-12-09 18:22:12 +0000 | [diff] [blame] | 98 | SOURCE_DISPLAYED_CORRECTLY = "Source code displayed correctly" |
| 99 | |
Johnny Chen | 0b3ee55 | 2010-09-22 23:00:20 +0000 | [diff] [blame] | 100 | STEP_OUT_SUCCEEDED = "Thread step-out succeeded" |
| 101 | |
Johnny Chen | 33cd0c3 | 2011-04-15 16:44:48 +0000 | [diff] [blame] | 102 | STOPPED_DUE_TO_EXC_BAD_ACCESS = "Process should be stopped due to bad access exception" |
| 103 | |
Johnny Chen | e8587d0 | 2010-11-10 23:46:38 +0000 | [diff] [blame] | 104 | STOPPED_DUE_TO_BREAKPOINT = "Process should be stopped due to breakpoint" |
Johnny Chen | c82ac76 | 2010-11-10 20:20:06 +0000 | [diff] [blame] | 105 | |
Johnny Chen | e8587d0 | 2010-11-10 23:46:38 +0000 | [diff] [blame] | 106 | STOPPED_DUE_TO_BREAKPOINT_WITH_STOP_REASON_AS = "%s, %s" % ( |
| 107 | STOPPED_DUE_TO_BREAKPOINT, "instead, the actual stop reason is: '%s'") |
Johnny Chen | 96f08d5 | 2010-08-09 22:01:17 +0000 | [diff] [blame] | 108 | |
Johnny Chen | f6bdb19 | 2010-10-20 18:38:48 +0000 | [diff] [blame] | 109 | STOPPED_DUE_TO_BREAKPOINT_CONDITION = "Stopped due to breakpoint condition" |
| 110 | |
Johnny Chen | 7a4512b | 2010-12-13 21:49:58 +0000 | [diff] [blame] | 111 | STOPPED_DUE_TO_BREAKPOINT_IGNORE_COUNT = "Stopped due to breakpoint and ignore count" |
| 112 | |
Johnny Chen | d7a4eb0 | 2010-10-14 01:22:03 +0000 | [diff] [blame] | 113 | STOPPED_DUE_TO_SIGNAL = "Process state is stopped due to signal" |
| 114 | |
Johnny Chen | 96f08d5 | 2010-08-09 22:01:17 +0000 | [diff] [blame] | 115 | STOPPED_DUE_TO_STEP_IN = "Process state is stopped due to step in" |
| 116 | |
Johnny Chen | 58c66e2 | 2011-09-15 21:09:59 +0000 | [diff] [blame] | 117 | STOPPED_DUE_TO_WATCHPOINT = "Process should be stopped due to watchpoint" |
| 118 | |
Johnny Chen | 4917e10 | 2010-08-24 22:07:56 +0000 | [diff] [blame] | 119 | DATA_TYPES_DISPLAYED_CORRECTLY = "Data type(s) displayed correctly" |
| 120 | |
Johnny Chen | b4d1fff | 2010-08-26 20:04:17 +0000 | [diff] [blame] | 121 | VALID_BREAKPOINT = "Got a valid breakpoint" |
| 122 | |
Johnny Chen | 0601a29 | 2010-10-22 18:10:25 +0000 | [diff] [blame] | 123 | VALID_BREAKPOINT_LOCATION = "Got a valid breakpoint location" |
| 124 | |
Johnny Chen | ac91027 | 2011-05-06 23:26:12 +0000 | [diff] [blame] | 125 | VALID_COMMAND_INTERPRETER = "Got a valid command interpreter" |
| 126 | |
Johnny Chen | 1bb9f9a | 2010-08-27 23:47:36 +0000 | [diff] [blame] | 127 | VALID_FILESPEC = "Got a valid filespec" |
| 128 | |
Johnny Chen | 8fd886c | 2010-12-08 01:25:21 +0000 | [diff] [blame] | 129 | VALID_MODULE = "Got a valid module" |
| 130 | |
Johnny Chen | b4d1fff | 2010-08-26 20:04:17 +0000 | [diff] [blame] | 131 | VALID_PROCESS = "Got a valid process" |
| 132 | |
Johnny Chen | 8fd886c | 2010-12-08 01:25:21 +0000 | [diff] [blame] | 133 | VALID_SYMBOL = "Got a valid symbol" |
| 134 | |
Johnny Chen | b4d1fff | 2010-08-26 20:04:17 +0000 | [diff] [blame] | 135 | VALID_TARGET = "Got a valid target" |
| 136 | |
Johnny Chen | 2ef5eae | 2012-02-03 20:43:00 +0000 | [diff] [blame] | 137 | VALID_TYPE = "Got a valid type" |
| 138 | |
Johnny Chen | 5503d46 | 2011-07-15 22:28:10 +0000 | [diff] [blame] | 139 | VALID_VARIABLE = "Got a valid variable" |
| 140 | |
Johnny Chen | 22b95b2 | 2010-08-25 19:00:04 +0000 | [diff] [blame] | 141 | VARIABLES_DISPLAYED_CORRECTLY = "Variable(s) displayed correctly" |
Johnny Chen | 96f08d5 | 2010-08-09 22:01:17 +0000 | [diff] [blame] | 142 | |
Johnny Chen | 58c66e2 | 2011-09-15 21:09:59 +0000 | [diff] [blame] | 143 | WATCHPOINT_CREATED = "Watchpoint created successfully" |
Johnny Chen | b4d1fff | 2010-08-26 20:04:17 +0000 | [diff] [blame] | 144 | |
Johnny Chen | 05efcf78 | 2010-11-09 18:42:22 +0000 | [diff] [blame] | 145 | def CMD_MSG(str): |
Johnny Chen | 006b595 | 2011-05-31 22:16:51 +0000 | [diff] [blame] | 146 | '''A generic "Command '%s' returns successfully" message generator.''' |
Johnny Chen | 05efcf78 | 2010-11-09 18:42:22 +0000 | [diff] [blame] | 147 | return "Command '%s' returns successfully" % str |
| 148 | |
Johnny Chen | dbe2c82 | 2012-03-15 19:10:00 +0000 | [diff] [blame] | 149 | def COMPLETION_MSG(str_before, str_after): |
Johnny Chen | fbcad68 | 2012-01-20 23:02:51 +0000 | [diff] [blame] | 150 | '''A generic message generator for the completion mechanism.''' |
| 151 | return "'%s' successfully completes to '%s'" % (str_before, str_after) |
| 152 | |
Johnny Chen | 05efcf78 | 2010-11-09 18:42:22 +0000 | [diff] [blame] | 153 | def EXP_MSG(str, exe): |
Johnny Chen | 006b595 | 2011-05-31 22:16:51 +0000 | [diff] [blame] | 154 | '''A generic "'%s' returns expected result" message generator if exe. |
| 155 | Otherwise, it generates "'%s' matches expected result" message.''' |
Johnny Chen | 05efcf78 | 2010-11-09 18:42:22 +0000 | [diff] [blame] | 156 | return "'%s' %s expected result" % (str, 'returns' if exe else 'matches') |
Johnny Chen | d85dae5 | 2010-08-09 23:44:24 +0000 | [diff] [blame] | 157 | |
Johnny Chen | db9cbe9 | 2010-10-19 19:11:38 +0000 | [diff] [blame] | 158 | def SETTING_MSG(setting): |
Johnny Chen | 006b595 | 2011-05-31 22:16:51 +0000 | [diff] [blame] | 159 | '''A generic "Value of setting '%s' is correct" message generator.''' |
Johnny Chen | db9cbe9 | 2010-10-19 19:11:38 +0000 | [diff] [blame] | 160 | return "Value of setting '%s' is correct" % setting |
| 161 | |
Johnny Chen | f4ce288 | 2010-08-26 21:49:29 +0000 | [diff] [blame] | 162 | def EnvArray(): |
Johnny Chen | 006b595 | 2011-05-31 22:16:51 +0000 | [diff] [blame] | 163 | """Returns an env variable array from the os.environ map object.""" |
Johnny Chen | f4ce288 | 2010-08-26 21:49:29 +0000 | [diff] [blame] | 164 | return map(lambda k,v: k+"="+v, os.environ.keys(), os.environ.values()) |
| 165 | |
Johnny Chen | 1490600 | 2010-10-11 23:52:19 +0000 | [diff] [blame] | 166 | def line_number(filename, string_to_match): |
| 167 | """Helper function to return the line number of the first matched string.""" |
| 168 | with open(filename, 'r') as f: |
| 169 | for i, line in enumerate(f): |
| 170 | if line.find(string_to_match) != -1: |
| 171 | # Found our match. |
Johnny Chen | 0659e34 | 2010-10-12 00:09:25 +0000 | [diff] [blame] | 172 | return i+1 |
Johnny Chen | 33cd0c3 | 2011-04-15 16:44:48 +0000 | [diff] [blame] | 173 | raise Exception("Unable to find '%s' within file %s" % (string_to_match, filename)) |
Johnny Chen | 1490600 | 2010-10-11 23:52:19 +0000 | [diff] [blame] | 174 | |
Johnny Chen | 5349ee2 | 2010-10-05 19:27:32 +0000 | [diff] [blame] | 175 | def pointer_size(): |
| 176 | """Return the pointer size of the host system.""" |
| 177 | import ctypes |
| 178 | a_pointer = ctypes.c_void_p(0xffff) |
| 179 | return 8 * ctypes.sizeof(a_pointer) |
| 180 | |
Johnny Chen | 7be5d35 | 2012-02-09 02:01:59 +0000 | [diff] [blame] | 181 | def is_exe(fpath): |
| 182 | """Returns true if fpath is an executable.""" |
| 183 | return os.path.isfile(fpath) and os.access(fpath, os.X_OK) |
| 184 | |
| 185 | def which(program): |
| 186 | """Returns the full path to a program; None otherwise.""" |
| 187 | fpath, fname = os.path.split(program) |
| 188 | if fpath: |
| 189 | if is_exe(program): |
| 190 | return program |
| 191 | else: |
| 192 | for path in os.environ["PATH"].split(os.pathsep): |
| 193 | exe_file = os.path.join(path, program) |
| 194 | if is_exe(exe_file): |
| 195 | return exe_file |
| 196 | return None |
| 197 | |
Johnny Chen | 84a6d6f | 2010-10-15 01:18:29 +0000 | [diff] [blame] | 198 | class recording(StringIO.StringIO): |
| 199 | """ |
| 200 | A nice little context manager for recording the debugger interactions into |
| 201 | our session object. If trace flag is ON, it also emits the interactions |
| 202 | into the stderr. |
| 203 | """ |
| 204 | def __init__(self, test, trace): |
Johnny Chen | 1b7d629 | 2010-10-15 23:55:05 +0000 | [diff] [blame] | 205 | """Create a StringIO instance; record the session obj and trace flag.""" |
Johnny Chen | 84a6d6f | 2010-10-15 01:18:29 +0000 | [diff] [blame] | 206 | StringIO.StringIO.__init__(self) |
Johnny Chen | 770683d | 2011-08-16 22:06:17 +0000 | [diff] [blame] | 207 | # The test might not have undergone the 'setUp(self)' phase yet, so that |
| 208 | # the attribute 'session' might not even exist yet. |
Johnny Chen | 8339f98 | 2011-08-16 17:06:45 +0000 | [diff] [blame] | 209 | self.session = getattr(test, "session", None) if test else None |
Johnny Chen | 84a6d6f | 2010-10-15 01:18:29 +0000 | [diff] [blame] | 210 | self.trace = trace |
| 211 | |
| 212 | def __enter__(self): |
| 213 | """ |
| 214 | Context management protocol on entry to the body of the with statement. |
| 215 | Just return the StringIO object. |
| 216 | """ |
| 217 | return self |
| 218 | |
| 219 | def __exit__(self, type, value, tb): |
| 220 | """ |
| 221 | Context management protocol on exit from the body of the with statement. |
| 222 | If trace is ON, it emits the recordings into stderr. Always add the |
| 223 | recordings to our session object. And close the StringIO object, too. |
| 224 | """ |
| 225 | if self.trace: |
Johnny Chen | 1b7d629 | 2010-10-15 23:55:05 +0000 | [diff] [blame] | 226 | print >> sys.stderr, self.getvalue() |
| 227 | if self.session: |
| 228 | print >> self.session, self.getvalue() |
Johnny Chen | 84a6d6f | 2010-10-15 01:18:29 +0000 | [diff] [blame] | 229 | self.close() |
| 230 | |
Johnny Chen | 1b7d629 | 2010-10-15 23:55:05 +0000 | [diff] [blame] | 231 | # From 2.7's subprocess.check_output() convenience function. |
Johnny Chen | 0bfa859 | 2011-03-23 20:28:59 +0000 | [diff] [blame] | 232 | # Return a tuple (stdoutdata, stderrdata). |
Johnny Chen | 1b7d629 | 2010-10-15 23:55:05 +0000 | [diff] [blame] | 233 | def system(*popenargs, **kwargs): |
Johnny Chen | 22ca65d | 2011-11-16 22:44:28 +0000 | [diff] [blame] | 234 | r"""Run an os command with arguments and return its output as a byte string. |
Johnny Chen | 1b7d629 | 2010-10-15 23:55:05 +0000 | [diff] [blame] | 235 | |
| 236 | If the exit code was non-zero it raises a CalledProcessError. The |
| 237 | CalledProcessError object will have the return code in the returncode |
| 238 | attribute and output in the output attribute. |
| 239 | |
| 240 | The arguments are the same as for the Popen constructor. Example: |
| 241 | |
| 242 | >>> check_output(["ls", "-l", "/dev/null"]) |
| 243 | 'crw-rw-rw- 1 root root 1, 3 Oct 18 2007 /dev/null\n' |
| 244 | |
| 245 | The stdout argument is not allowed as it is used internally. |
| 246 | To capture standard error in the result, use stderr=STDOUT. |
| 247 | |
| 248 | >>> check_output(["/bin/sh", "-c", |
| 249 | ... "ls -l non_existent_file ; exit 0"], |
| 250 | ... stderr=STDOUT) |
| 251 | 'ls: non_existent_file: No such file or directory\n' |
| 252 | """ |
| 253 | |
| 254 | # Assign the sender object to variable 'test' and remove it from kwargs. |
| 255 | test = kwargs.pop('sender', None) |
| 256 | |
| 257 | if 'stdout' in kwargs: |
| 258 | raise ValueError('stdout argument not allowed, it will be overridden.') |
Johnny Chen | 0bfa859 | 2011-03-23 20:28:59 +0000 | [diff] [blame] | 259 | process = Popen(stdout=PIPE, stderr=PIPE, *popenargs, **kwargs) |
Johnny Chen | 30b30cb | 2011-11-16 22:41:53 +0000 | [diff] [blame] | 260 | pid = process.pid |
Johnny Chen | 1b7d629 | 2010-10-15 23:55:05 +0000 | [diff] [blame] | 261 | output, error = process.communicate() |
| 262 | retcode = process.poll() |
| 263 | |
| 264 | with recording(test, traceAlways) as sbuf: |
| 265 | if isinstance(popenargs, types.StringTypes): |
| 266 | args = [popenargs] |
| 267 | else: |
| 268 | args = list(popenargs) |
| 269 | print >> sbuf |
| 270 | print >> sbuf, "os command:", args |
Johnny Chen | 30b30cb | 2011-11-16 22:41:53 +0000 | [diff] [blame] | 271 | print >> sbuf, "with pid:", pid |
Johnny Chen | 1b7d629 | 2010-10-15 23:55:05 +0000 | [diff] [blame] | 272 | print >> sbuf, "stdout:", output |
| 273 | print >> sbuf, "stderr:", error |
| 274 | print >> sbuf, "retcode:", retcode |
| 275 | print >> sbuf |
| 276 | |
| 277 | if retcode: |
| 278 | cmd = kwargs.get("args") |
| 279 | if cmd is None: |
| 280 | cmd = popenargs[0] |
| 281 | raise CalledProcessError(retcode, cmd) |
Johnny Chen | 0bfa859 | 2011-03-23 20:28:59 +0000 | [diff] [blame] | 282 | return (output, error) |
Johnny Chen | 1b7d629 | 2010-10-15 23:55:05 +0000 | [diff] [blame] | 283 | |
Johnny Chen | 2986764 | 2010-11-01 20:35:01 +0000 | [diff] [blame] | 284 | def getsource_if_available(obj): |
| 285 | """ |
| 286 | Return the text of the source code for an object if available. Otherwise, |
| 287 | a print representation is returned. |
| 288 | """ |
| 289 | import inspect |
| 290 | try: |
| 291 | return inspect.getsource(obj) |
| 292 | except: |
| 293 | return repr(obj) |
| 294 | |
Peter Collingbourne | 39bd536 | 2011-06-20 19:06:20 +0000 | [diff] [blame] | 295 | def builder_module(): |
| 296 | return __import__("builder_" + sys.platform) |
| 297 | |
Johnny Chen | 366fb8c | 2011-08-01 18:46:13 +0000 | [diff] [blame] | 298 | # |
| 299 | # Decorators for categorizing test cases. |
| 300 | # |
| 301 | |
| 302 | from functools import wraps |
| 303 | def python_api_test(func): |
| 304 | """Decorate the item as a Python API only test.""" |
| 305 | if isinstance(func, type) and issubclass(func, unittest2.TestCase): |
| 306 | raise Exception("@python_api_test can only be used to decorate a test method") |
| 307 | @wraps(func) |
| 308 | def wrapper(self, *args, **kwargs): |
| 309 | try: |
| 310 | if lldb.dont_do_python_api_test: |
| 311 | self.skipTest("python api tests") |
| 312 | except AttributeError: |
| 313 | pass |
| 314 | return func(self, *args, **kwargs) |
| 315 | |
| 316 | # Mark this function as such to separate them from lldb command line tests. |
| 317 | wrapper.__python_api_test__ = True |
| 318 | return wrapper |
| 319 | |
Johnny Chen | 366fb8c | 2011-08-01 18:46:13 +0000 | [diff] [blame] | 320 | def benchmarks_test(func): |
| 321 | """Decorate the item as a benchmarks test.""" |
| 322 | if isinstance(func, type) and issubclass(func, unittest2.TestCase): |
| 323 | raise Exception("@benchmarks_test can only be used to decorate a test method") |
| 324 | @wraps(func) |
| 325 | def wrapper(self, *args, **kwargs): |
| 326 | try: |
| 327 | if not lldb.just_do_benchmarks_test: |
| 328 | self.skipTest("benchmarks tests") |
| 329 | except AttributeError: |
| 330 | pass |
| 331 | return func(self, *args, **kwargs) |
| 332 | |
| 333 | # Mark this function as such to separate them from the regular tests. |
| 334 | wrapper.__benchmarks_test__ = True |
| 335 | return wrapper |
| 336 | |
Johnny Chen | a3ed7d8 | 2012-04-06 00:56:05 +0000 | [diff] [blame] | 337 | def dsym_test(func): |
| 338 | """Decorate the item as a dsym test.""" |
| 339 | if isinstance(func, type) and issubclass(func, unittest2.TestCase): |
| 340 | raise Exception("@dsym_test can only be used to decorate a test method") |
| 341 | @wraps(func) |
| 342 | def wrapper(self, *args, **kwargs): |
| 343 | try: |
| 344 | if lldb.dont_do_dsym_test: |
| 345 | self.skipTest("dsym tests") |
| 346 | except AttributeError: |
| 347 | pass |
| 348 | return func(self, *args, **kwargs) |
| 349 | |
| 350 | # Mark this function as such to separate them from the regular tests. |
| 351 | wrapper.__dsym_test__ = True |
| 352 | return wrapper |
| 353 | |
| 354 | def dwarf_test(func): |
| 355 | """Decorate the item as a dwarf test.""" |
| 356 | if isinstance(func, type) and issubclass(func, unittest2.TestCase): |
| 357 | raise Exception("@dwarf_test can only be used to decorate a test method") |
| 358 | @wraps(func) |
| 359 | def wrapper(self, *args, **kwargs): |
| 360 | try: |
| 361 | if lldb.dont_do_dwarf_test: |
| 362 | self.skipTest("dwarf tests") |
| 363 | except AttributeError: |
| 364 | pass |
| 365 | return func(self, *args, **kwargs) |
| 366 | |
| 367 | # Mark this function as such to separate them from the regular tests. |
| 368 | wrapper.__dwarf_test__ = True |
| 369 | return wrapper |
| 370 | |
Johnny Chen | 65040cb | 2011-08-19 00:54:27 +0000 | [diff] [blame] | 371 | def expectedFailureClang(func): |
| 372 | """Decorate the item as a Clang only expectedFailure.""" |
| 373 | if isinstance(func, type) and issubclass(func, unittest2.TestCase): |
| 374 | raise Exception("@expectedFailureClang can only be used to decorate a test method") |
| 375 | @wraps(func) |
| 376 | def wrapper(*args, **kwargs): |
| 377 | from unittest2 import case |
| 378 | self = args[0] |
| 379 | compiler = self.getCompiler() |
| 380 | try: |
| 381 | func(*args, **kwargs) |
Johnny Chen | 7c9136b | 2011-08-19 01:17:09 +0000 | [diff] [blame] | 382 | except Exception: |
Johnny Chen | 65040cb | 2011-08-19 00:54:27 +0000 | [diff] [blame] | 383 | if "clang" in compiler: |
| 384 | raise case._ExpectedFailure(sys.exc_info()) |
| 385 | else: |
Johnny Chen | 7c9136b | 2011-08-19 01:17:09 +0000 | [diff] [blame] | 386 | raise |
Johnny Chen | 65040cb | 2011-08-19 00:54:27 +0000 | [diff] [blame] | 387 | |
| 388 | if "clang" in compiler: |
| 389 | raise case._UnexpectedSuccess |
| 390 | return wrapper |
| 391 | |
Johnny Chen | 869e296 | 2011-12-22 21:14:31 +0000 | [diff] [blame] | 392 | def expectedFailurei386(func): |
| 393 | """Decorate the item as an i386 only expectedFailure.""" |
| 394 | if isinstance(func, type) and issubclass(func, unittest2.TestCase): |
| 395 | raise Exception("@expectedFailurei386 can only be used to decorate a test method") |
| 396 | @wraps(func) |
| 397 | def wrapper(*args, **kwargs): |
| 398 | from unittest2 import case |
| 399 | self = args[0] |
| 400 | arch = self.getArchitecture() |
| 401 | try: |
| 402 | func(*args, **kwargs) |
| 403 | except Exception: |
| 404 | if "i386" in arch: |
| 405 | raise case._ExpectedFailure(sys.exc_info()) |
| 406 | else: |
| 407 | raise |
| 408 | |
| 409 | if "i386" in arch: |
| 410 | raise case._UnexpectedSuccess |
| 411 | return wrapper |
| 412 | |
Daniel Malea | 40c9d75 | 2012-11-23 21:59:29 +0000 | [diff] [blame] | 413 | def expectedFailureLinux(func): |
| 414 | """Decorate the item as a Linux only expectedFailure.""" |
| 415 | if isinstance(func, type) and issubclass(func, unittest2.TestCase): |
| 416 | raise Exception("@expectedFailureLinux can only be used to decorate a test method") |
| 417 | @wraps(func) |
| 418 | def wrapper(*args, **kwargs): |
| 419 | from unittest2 import case |
| 420 | self = args[0] |
| 421 | platform = sys.platform |
| 422 | try: |
| 423 | func(*args, **kwargs) |
| 424 | except Exception: |
| 425 | if "linux" in platform: |
| 426 | raise case._ExpectedFailure(sys.exc_info()) |
| 427 | else: |
| 428 | raise |
| 429 | |
| 430 | if "linux" in platform: |
| 431 | raise case._UnexpectedSuccess |
| 432 | return wrapper |
| 433 | |
| 434 | def skipOnLinux(func): |
| 435 | """Decorate the item to skip tests that should be skipped on Linux.""" |
| 436 | if isinstance(func, type) and issubclass(func, unittest2.TestCase): |
| 437 | raise Exception("@skipOnLinux can only be used to decorate a test method") |
| 438 | @wraps(func) |
| 439 | def wrapper(*args, **kwargs): |
| 440 | from unittest2 import case |
| 441 | self = args[0] |
| 442 | platform = sys.platform |
| 443 | if "linux" in platform: |
| 444 | self.skipTest("skip on linux") |
| 445 | else: |
Jim Ingham | 7bf78a0 | 2012-11-27 01:21:28 +0000 | [diff] [blame] | 446 | func(*args, **kwargs) |
Daniel Malea | 40c9d75 | 2012-11-23 21:59:29 +0000 | [diff] [blame] | 447 | return wrapper |
| 448 | |
Daniel Malea | cd630e7 | 2013-01-24 23:52:09 +0000 | [diff] [blame^] | 449 | def skipIfGcc(func): |
| 450 | """Decorate the item to skip tests that should be skipped if building with gcc .""" |
| 451 | if isinstance(func, type) and issubclass(func, unittest2.TestCase): |
| 452 | raise Exception("@skipOnLinux can only be used to decorate a test method") |
| 453 | @wraps(func) |
| 454 | def wrapper(*args, **kwargs): |
| 455 | from unittest2 import case |
| 456 | self = args[0] |
| 457 | compiler = self.getCompiler() |
| 458 | if "gcc" in compiler: |
| 459 | self.skipTest("skipping because gcc is the test compiler") |
| 460 | else: |
| 461 | func(*args, **kwargs) |
| 462 | return wrapper |
| 463 | |
| 464 | |
Johnny Chen | 366fb8c | 2011-08-01 18:46:13 +0000 | [diff] [blame] | 465 | class Base(unittest2.TestCase): |
Johnny Chen | 607b7a1 | 2010-10-22 23:15:46 +0000 | [diff] [blame] | 466 | """ |
Johnny Chen | 366fb8c | 2011-08-01 18:46:13 +0000 | [diff] [blame] | 467 | Abstract base for performing lldb (see TestBase) or other generic tests (see |
| 468 | BenchBase for one example). lldbtest.Base works with the test driver to |
| 469 | accomplish things. |
| 470 | |
Johnny Chen | 607b7a1 | 2010-10-22 23:15:46 +0000 | [diff] [blame] | 471 | """ |
Enrico Granata | 671dd55 | 2012-10-24 21:42:49 +0000 | [diff] [blame] | 472 | |
Enrico Granata | 03bc3fd | 2012-10-24 21:44:48 +0000 | [diff] [blame] | 473 | # The concrete subclass should override this attribute. |
| 474 | mydir = None |
Johnny Chen | a1affab | 2010-07-03 03:41:59 +0000 | [diff] [blame] | 475 | |
Johnny Chen | d3521cc | 2010-09-16 01:53:04 +0000 | [diff] [blame] | 476 | # Keep track of the old current working directory. |
| 477 | oldcwd = None |
Johnny Chen | 88f8304 | 2010-08-05 21:23:45 +0000 | [diff] [blame] | 478 | |
Johnny Chen | cbe5126 | 2011-08-01 19:50:58 +0000 | [diff] [blame] | 479 | def TraceOn(self): |
| 480 | """Returns True if we are in trace mode (tracing detailed test execution).""" |
| 481 | return traceAlways |
| 482 | |
Johnny Chen | d3521cc | 2010-09-16 01:53:04 +0000 | [diff] [blame] | 483 | @classmethod |
| 484 | def setUpClass(cls): |
Johnny Chen | 4199819 | 2010-10-01 22:59:49 +0000 | [diff] [blame] | 485 | """ |
| 486 | Python unittest framework class setup fixture. |
| 487 | Do current directory manipulation. |
| 488 | """ |
| 489 | |
Johnny Chen | f8c723b | 2010-07-03 20:41:42 +0000 | [diff] [blame] | 490 | # Fail fast if 'mydir' attribute is not overridden. |
Johnny Chen | d3521cc | 2010-09-16 01:53:04 +0000 | [diff] [blame] | 491 | if not cls.mydir or len(cls.mydir) == 0: |
Johnny Chen | f8c723b | 2010-07-03 20:41:42 +0000 | [diff] [blame] | 492 | raise Exception("Subclasses must override the 'mydir' attribute.") |
Enrico Granata | 0fd6c8d | 2012-10-24 18:14:21 +0000 | [diff] [blame] | 493 | |
Johnny Chen | a1affab | 2010-07-03 03:41:59 +0000 | [diff] [blame] | 494 | # Save old working directory. |
Johnny Chen | d3521cc | 2010-09-16 01:53:04 +0000 | [diff] [blame] | 495 | cls.oldcwd = os.getcwd() |
Johnny Chen | a1affab | 2010-07-03 03:41:59 +0000 | [diff] [blame] | 496 | |
| 497 | # Change current working directory if ${LLDB_TEST} is defined. |
| 498 | # See also dotest.py which sets up ${LLDB_TEST}. |
| 499 | if ("LLDB_TEST" in os.environ): |
Johnny Chen | d3521cc | 2010-09-16 01:53:04 +0000 | [diff] [blame] | 500 | if traceAlways: |
Johnny Chen | 72afa8d | 2010-09-30 17:06:24 +0000 | [diff] [blame] | 501 | print >> sys.stderr, "Change dir to:", os.path.join(os.environ["LLDB_TEST"], cls.mydir) |
Johnny Chen | d3521cc | 2010-09-16 01:53:04 +0000 | [diff] [blame] | 502 | os.chdir(os.path.join(os.environ["LLDB_TEST"], cls.mydir)) |
| 503 | |
| 504 | @classmethod |
| 505 | def tearDownClass(cls): |
Johnny Chen | 4199819 | 2010-10-01 22:59:49 +0000 | [diff] [blame] | 506 | """ |
| 507 | Python unittest framework class teardown fixture. |
| 508 | Do class-wide cleanup. |
| 509 | """ |
Johnny Chen | d3521cc | 2010-09-16 01:53:04 +0000 | [diff] [blame] | 510 | |
Johnny Chen | 028d8eb | 2011-11-17 19:57:27 +0000 | [diff] [blame] | 511 | if doCleanup and not lldb.skip_build_and_cleanup: |
Johnny Chen | 548aefd | 2010-10-11 22:25:46 +0000 | [diff] [blame] | 512 | # First, let's do the platform-specific cleanup. |
Peter Collingbourne | 39bd536 | 2011-06-20 19:06:20 +0000 | [diff] [blame] | 513 | module = builder_module() |
Johnny Chen | 548aefd | 2010-10-11 22:25:46 +0000 | [diff] [blame] | 514 | if not module.cleanup(): |
| 515 | raise Exception("Don't know how to do cleanup") |
Johnny Chen | d3521cc | 2010-09-16 01:53:04 +0000 | [diff] [blame] | 516 | |
Johnny Chen | 548aefd | 2010-10-11 22:25:46 +0000 | [diff] [blame] | 517 | # Subclass might have specific cleanup function defined. |
| 518 | if getattr(cls, "classCleanup", None): |
| 519 | if traceAlways: |
| 520 | print >> sys.stderr, "Call class-specific cleanup function for class:", cls |
| 521 | try: |
| 522 | cls.classCleanup() |
| 523 | except: |
| 524 | exc_type, exc_value, exc_tb = sys.exc_info() |
| 525 | traceback.print_exception(exc_type, exc_value, exc_tb) |
Johnny Chen | d3521cc | 2010-09-16 01:53:04 +0000 | [diff] [blame] | 526 | |
| 527 | # Restore old working directory. |
| 528 | if traceAlways: |
Johnny Chen | 72afa8d | 2010-09-30 17:06:24 +0000 | [diff] [blame] | 529 | print >> sys.stderr, "Restore dir to:", cls.oldcwd |
Johnny Chen | d3521cc | 2010-09-16 01:53:04 +0000 | [diff] [blame] | 530 | os.chdir(cls.oldcwd) |
| 531 | |
Johnny Chen | 366fb8c | 2011-08-01 18:46:13 +0000 | [diff] [blame] | 532 | @classmethod |
| 533 | def skipLongRunningTest(cls): |
| 534 | """ |
| 535 | By default, we skip long running test case. |
| 536 | This can be overridden by passing '-l' to the test driver (dotest.py). |
| 537 | """ |
| 538 | if "LLDB_SKIP_LONG_RUNNING_TEST" in os.environ and "NO" == os.environ["LLDB_SKIP_LONG_RUNNING_TEST"]: |
| 539 | return False |
| 540 | else: |
| 541 | return True |
Johnny Chen | 9a9fcf6 | 2011-06-21 00:53:00 +0000 | [diff] [blame] | 542 | |
Johnny Chen | d3521cc | 2010-09-16 01:53:04 +0000 | [diff] [blame] | 543 | def setUp(self): |
Johnny Chen | cbe5126 | 2011-08-01 19:50:58 +0000 | [diff] [blame] | 544 | """Fixture for unittest test case setup. |
| 545 | |
| 546 | It works with the test driver to conditionally skip tests and does other |
| 547 | initializations.""" |
Johnny Chen | d3521cc | 2010-09-16 01:53:04 +0000 | [diff] [blame] | 548 | #import traceback |
| 549 | #traceback.print_stack() |
Johnny Chen | a1affab | 2010-07-03 03:41:59 +0000 | [diff] [blame] | 550 | |
Johnny Chen | 113388f | 2011-08-02 22:54:37 +0000 | [diff] [blame] | 551 | if "LLDB_EXEC" in os.environ: |
| 552 | self.lldbExec = os.environ["LLDB_EXEC"] |
Johnny Chen | 6033bed | 2011-08-26 00:00:01 +0000 | [diff] [blame] | 553 | else: |
| 554 | self.lldbExec = None |
| 555 | if "LLDB_HERE" in os.environ: |
| 556 | self.lldbHere = os.environ["LLDB_HERE"] |
| 557 | else: |
| 558 | self.lldbHere = None |
Johnny Chen | 7d7f447 | 2011-10-07 19:21:09 +0000 | [diff] [blame] | 559 | # If we spawn an lldb process for test (via pexpect), do not load the |
| 560 | # init file unless told otherwise. |
| 561 | if "NO_LLDBINIT" in os.environ and "NO" == os.environ["NO_LLDBINIT"]: |
| 562 | self.lldbOption = "" |
| 563 | else: |
| 564 | self.lldbOption = "--no-lldbinit" |
Johnny Chen | 113388f | 2011-08-02 22:54:37 +0000 | [diff] [blame] | 565 | |
Johnny Chen | 71cb797 | 2011-08-01 21:13:26 +0000 | [diff] [blame] | 566 | # Assign the test method name to self.testMethodName. |
| 567 | # |
| 568 | # For an example of the use of this attribute, look at test/types dir. |
| 569 | # There are a bunch of test cases under test/types and we don't want the |
| 570 | # module cacheing subsystem to be confused with executable name "a.out" |
| 571 | # used for all the test cases. |
| 572 | self.testMethodName = self._testMethodName |
| 573 | |
Johnny Chen | 3ebdacc | 2010-12-10 18:52:10 +0000 | [diff] [blame] | 574 | # Python API only test is decorated with @python_api_test, |
| 575 | # which also sets the "__python_api_test__" attribute of the |
| 576 | # function object to True. |
Johnny Chen | d8c1dd3 | 2011-05-31 23:21:42 +0000 | [diff] [blame] | 577 | try: |
| 578 | if lldb.just_do_python_api_test: |
| 579 | testMethod = getattr(self, self._testMethodName) |
| 580 | if getattr(testMethod, "__python_api_test__", False): |
| 581 | pass |
| 582 | else: |
Johnny Chen | 82ccf40 | 2011-07-30 01:39:58 +0000 | [diff] [blame] | 583 | self.skipTest("non python api test") |
| 584 | except AttributeError: |
| 585 | pass |
| 586 | |
| 587 | # Benchmarks test is decorated with @benchmarks_test, |
| 588 | # which also sets the "__benchmarks_test__" attribute of the |
| 589 | # function object to True. |
| 590 | try: |
| 591 | if lldb.just_do_benchmarks_test: |
| 592 | testMethod = getattr(self, self._testMethodName) |
| 593 | if getattr(testMethod, "__benchmarks_test__", False): |
| 594 | pass |
| 595 | else: |
| 596 | self.skipTest("non benchmarks test") |
Johnny Chen | d8c1dd3 | 2011-05-31 23:21:42 +0000 | [diff] [blame] | 597 | except AttributeError: |
| 598 | pass |
Johnny Chen | 3ebdacc | 2010-12-10 18:52:10 +0000 | [diff] [blame] | 599 | |
Johnny Chen | 71cb797 | 2011-08-01 21:13:26 +0000 | [diff] [blame] | 600 | # This is for the case of directly spawning 'lldb'/'gdb' and interacting |
| 601 | # with it using pexpect. |
| 602 | self.child = None |
| 603 | self.child_prompt = "(lldb) " |
| 604 | # If the child is interacting with the embedded script interpreter, |
| 605 | # there are two exits required during tear down, first to quit the |
| 606 | # embedded script interpreter and second to quit the lldb command |
| 607 | # interpreter. |
| 608 | self.child_in_script_interpreter = False |
| 609 | |
Johnny Chen | cbe5126 | 2011-08-01 19:50:58 +0000 | [diff] [blame] | 610 | # These are for customized teardown cleanup. |
| 611 | self.dict = None |
| 612 | self.doTearDownCleanup = False |
| 613 | # And in rare cases where there are multiple teardown cleanups. |
| 614 | self.dicts = [] |
| 615 | self.doTearDownCleanups = False |
| 616 | |
| 617 | # Create a string buffer to record the session info, to be dumped into a |
| 618 | # test case specific file if test failure is encountered. |
| 619 | self.session = StringIO.StringIO() |
| 620 | |
| 621 | # Optimistically set __errored__, __failed__, __expected__ to False |
| 622 | # initially. If the test errored/failed, the session info |
| 623 | # (self.session) is then dumped into a session specific file for |
| 624 | # diagnosis. |
| 625 | self.__errored__ = False |
| 626 | self.__failed__ = False |
| 627 | self.__expected__ = False |
| 628 | # We are also interested in unexpected success. |
| 629 | self.__unexpected__ = False |
Johnny Chen | cd1df5a | 2011-08-16 00:48:58 +0000 | [diff] [blame] | 630 | # And skipped tests. |
| 631 | self.__skipped__ = False |
Johnny Chen | cbe5126 | 2011-08-01 19:50:58 +0000 | [diff] [blame] | 632 | |
| 633 | # See addTearDownHook(self, hook) which allows the client to add a hook |
| 634 | # function to be run during tearDown() time. |
| 635 | self.hooks = [] |
| 636 | |
| 637 | # See HideStdout(self). |
| 638 | self.sys_stdout_hidden = False |
| 639 | |
Daniel Malea | e5aa0d4 | 2012-11-26 21:21:11 +0000 | [diff] [blame] | 640 | # set environment variable names for finding shared libraries |
| 641 | if sys.platform.startswith("darwin"): |
| 642 | self.dylibPath = 'DYLD_LIBRARY_PATH' |
| 643 | elif sys.platform.startswith("linux") or sys.platform.startswith("freebsd"): |
| 644 | self.dylibPath = 'LD_LIBRARY_PATH' |
| 645 | |
Johnny Chen | 644ad08 | 2011-10-19 16:48:07 +0000 | [diff] [blame] | 646 | def runHooks(self, child=None, child_prompt=None, use_cmd_api=False): |
Johnny Chen | 5f3c567 | 2011-10-19 01:06:21 +0000 | [diff] [blame] | 647 | """Perform the run hooks to bring lldb debugger to the desired state. |
| 648 | |
Johnny Chen | 644ad08 | 2011-10-19 16:48:07 +0000 | [diff] [blame] | 649 | By default, expect a pexpect spawned child and child prompt to be |
| 650 | supplied (use_cmd_api=False). If use_cmd_api is true, ignore the child |
| 651 | and child prompt and use self.runCmd() to run the hooks one by one. |
| 652 | |
Johnny Chen | 5f3c567 | 2011-10-19 01:06:21 +0000 | [diff] [blame] | 653 | Note that child is a process spawned by pexpect.spawn(). If not, your |
| 654 | test case is mostly likely going to fail. |
| 655 | |
| 656 | See also dotest.py where lldb.runHooks are processed/populated. |
| 657 | """ |
| 658 | if not lldb.runHooks: |
| 659 | self.skipTest("No runhooks specified for lldb, skip the test") |
Johnny Chen | 644ad08 | 2011-10-19 16:48:07 +0000 | [diff] [blame] | 660 | if use_cmd_api: |
| 661 | for hook in lldb.runhooks: |
| 662 | self.runCmd(hook) |
| 663 | else: |
| 664 | if not child or not child_prompt: |
| 665 | self.fail("Both child and child_prompt need to be defined.") |
| 666 | for hook in lldb.runHooks: |
| 667 | child.sendline(hook) |
| 668 | child.expect_exact(child_prompt) |
Johnny Chen | 5f3c567 | 2011-10-19 01:06:21 +0000 | [diff] [blame] | 669 | |
Johnny Chen | cbe5126 | 2011-08-01 19:50:58 +0000 | [diff] [blame] | 670 | def HideStdout(self): |
| 671 | """Hide output to stdout from the user. |
| 672 | |
| 673 | During test execution, there might be cases where we don't want to show the |
| 674 | standard output to the user. For example, |
| 675 | |
| 676 | self.runCmd(r'''sc print "\n\n\tHello!\n"''') |
| 677 | |
| 678 | tests whether command abbreviation for 'script' works or not. There is no |
| 679 | need to show the 'Hello' output to the user as long as the 'script' command |
| 680 | succeeds and we are not in TraceOn() mode (see the '-t' option). |
| 681 | |
| 682 | In this case, the test method calls self.HideStdout(self) to redirect the |
| 683 | sys.stdout to a null device, and restores the sys.stdout upon teardown. |
| 684 | |
| 685 | Note that you should only call this method at most once during a test case |
| 686 | execution. Any subsequent call has no effect at all.""" |
| 687 | if self.sys_stdout_hidden: |
| 688 | return |
| 689 | |
| 690 | self.sys_stdout_hidden = True |
| 691 | old_stdout = sys.stdout |
| 692 | sys.stdout = open(os.devnull, 'w') |
| 693 | def restore_stdout(): |
| 694 | sys.stdout = old_stdout |
| 695 | self.addTearDownHook(restore_stdout) |
| 696 | |
| 697 | # ======================================================================= |
| 698 | # Methods for customized teardown cleanups as well as execution of hooks. |
| 699 | # ======================================================================= |
| 700 | |
| 701 | def setTearDownCleanup(self, dictionary=None): |
| 702 | """Register a cleanup action at tearDown() time with a dictinary""" |
| 703 | self.dict = dictionary |
| 704 | self.doTearDownCleanup = True |
| 705 | |
| 706 | def addTearDownCleanup(self, dictionary): |
| 707 | """Add a cleanup action at tearDown() time with a dictinary""" |
| 708 | self.dicts.append(dictionary) |
| 709 | self.doTearDownCleanups = True |
| 710 | |
| 711 | def addTearDownHook(self, hook): |
| 712 | """ |
| 713 | Add a function to be run during tearDown() time. |
| 714 | |
| 715 | Hooks are executed in a first come first serve manner. |
| 716 | """ |
| 717 | if callable(hook): |
| 718 | with recording(self, traceAlways) as sbuf: |
| 719 | print >> sbuf, "Adding tearDown hook:", getsource_if_available(hook) |
| 720 | self.hooks.append(hook) |
| 721 | |
| 722 | def tearDown(self): |
| 723 | """Fixture for unittest test case teardown.""" |
| 724 | #import traceback |
| 725 | #traceback.print_stack() |
| 726 | |
Johnny Chen | 71cb797 | 2011-08-01 21:13:26 +0000 | [diff] [blame] | 727 | # This is for the case of directly spawning 'lldb' and interacting with it |
| 728 | # using pexpect. |
| 729 | import pexpect |
| 730 | if self.child and self.child.isalive(): |
| 731 | with recording(self, traceAlways) as sbuf: |
| 732 | print >> sbuf, "tearing down the child process...." |
| 733 | if self.child_in_script_interpreter: |
| 734 | self.child.sendline('quit()') |
| 735 | self.child.expect_exact(self.child_prompt) |
| 736 | self.child.sendline('quit') |
| 737 | try: |
| 738 | self.child.expect(pexpect.EOF) |
| 739 | except: |
| 740 | pass |
Johnny Chen | f0ff42a | 2012-02-27 23:07:40 +0000 | [diff] [blame] | 741 | # Give it one final blow to make sure the child is terminated. |
| 742 | self.child.close() |
Johnny Chen | 71cb797 | 2011-08-01 21:13:26 +0000 | [diff] [blame] | 743 | |
Johnny Chen | cbe5126 | 2011-08-01 19:50:58 +0000 | [diff] [blame] | 744 | # Check and run any hook functions. |
| 745 | for hook in reversed(self.hooks): |
| 746 | with recording(self, traceAlways) as sbuf: |
| 747 | print >> sbuf, "Executing tearDown hook:", getsource_if_available(hook) |
| 748 | hook() |
| 749 | |
| 750 | del self.hooks |
| 751 | |
| 752 | # Perform registered teardown cleanup. |
| 753 | if doCleanup and self.doTearDownCleanup: |
Johnny Chen | 028d8eb | 2011-11-17 19:57:27 +0000 | [diff] [blame] | 754 | self.cleanup(dictionary=self.dict) |
Johnny Chen | cbe5126 | 2011-08-01 19:50:58 +0000 | [diff] [blame] | 755 | |
| 756 | # In rare cases where there are multiple teardown cleanups added. |
| 757 | if doCleanup and self.doTearDownCleanups: |
Johnny Chen | cbe5126 | 2011-08-01 19:50:58 +0000 | [diff] [blame] | 758 | if self.dicts: |
| 759 | for dict in reversed(self.dicts): |
Johnny Chen | 028d8eb | 2011-11-17 19:57:27 +0000 | [diff] [blame] | 760 | self.cleanup(dictionary=dict) |
Johnny Chen | cbe5126 | 2011-08-01 19:50:58 +0000 | [diff] [blame] | 761 | |
| 762 | # Decide whether to dump the session info. |
| 763 | self.dumpSessionInfo() |
| 764 | |
| 765 | # ========================================================= |
| 766 | # Various callbacks to allow introspection of test progress |
| 767 | # ========================================================= |
| 768 | |
| 769 | def markError(self): |
| 770 | """Callback invoked when an error (unexpected exception) errored.""" |
| 771 | self.__errored__ = True |
| 772 | with recording(self, False) as sbuf: |
| 773 | # False because there's no need to write "ERROR" to the stderr twice. |
| 774 | # Once by the Python unittest framework, and a second time by us. |
| 775 | print >> sbuf, "ERROR" |
| 776 | |
| 777 | def markFailure(self): |
| 778 | """Callback invoked when a failure (test assertion failure) occurred.""" |
| 779 | self.__failed__ = True |
| 780 | with recording(self, False) as sbuf: |
| 781 | # False because there's no need to write "FAIL" to the stderr twice. |
| 782 | # Once by the Python unittest framework, and a second time by us. |
| 783 | print >> sbuf, "FAIL" |
| 784 | |
| 785 | def markExpectedFailure(self): |
| 786 | """Callback invoked when an expected failure/error occurred.""" |
| 787 | self.__expected__ = True |
| 788 | with recording(self, False) as sbuf: |
| 789 | # False because there's no need to write "expected failure" to the |
| 790 | # stderr twice. |
| 791 | # Once by the Python unittest framework, and a second time by us. |
| 792 | print >> sbuf, "expected failure" |
| 793 | |
Johnny Chen | f5b8909 | 2011-08-15 23:09:08 +0000 | [diff] [blame] | 794 | def markSkippedTest(self): |
| 795 | """Callback invoked when a test is skipped.""" |
| 796 | self.__skipped__ = True |
| 797 | with recording(self, False) as sbuf: |
| 798 | # False because there's no need to write "skipped test" to the |
| 799 | # stderr twice. |
| 800 | # Once by the Python unittest framework, and a second time by us. |
| 801 | print >> sbuf, "skipped test" |
| 802 | |
Johnny Chen | cbe5126 | 2011-08-01 19:50:58 +0000 | [diff] [blame] | 803 | def markUnexpectedSuccess(self): |
| 804 | """Callback invoked when an unexpected success occurred.""" |
| 805 | self.__unexpected__ = True |
| 806 | with recording(self, False) as sbuf: |
| 807 | # False because there's no need to write "unexpected success" to the |
| 808 | # stderr twice. |
| 809 | # Once by the Python unittest framework, and a second time by us. |
| 810 | print >> sbuf, "unexpected success" |
| 811 | |
| 812 | def dumpSessionInfo(self): |
| 813 | """ |
| 814 | Dump the debugger interactions leading to a test error/failure. This |
| 815 | allows for more convenient postmortem analysis. |
| 816 | |
| 817 | See also LLDBTestResult (dotest.py) which is a singlton class derived |
| 818 | from TextTestResult and overwrites addError, addFailure, and |
| 819 | addExpectedFailure methods to allow us to to mark the test instance as |
| 820 | such. |
| 821 | """ |
| 822 | |
| 823 | # We are here because self.tearDown() detected that this test instance |
| 824 | # either errored or failed. The lldb.test_result singleton contains |
| 825 | # two lists (erros and failures) which get populated by the unittest |
| 826 | # framework. Look over there for stack trace information. |
| 827 | # |
| 828 | # The lists contain 2-tuples of TestCase instances and strings holding |
| 829 | # formatted tracebacks. |
| 830 | # |
| 831 | # See http://docs.python.org/library/unittest.html#unittest.TestResult. |
| 832 | if self.__errored__: |
| 833 | pairs = lldb.test_result.errors |
| 834 | prefix = 'Error' |
| 835 | elif self.__failed__: |
| 836 | pairs = lldb.test_result.failures |
| 837 | prefix = 'Failure' |
| 838 | elif self.__expected__: |
| 839 | pairs = lldb.test_result.expectedFailures |
| 840 | prefix = 'ExpectedFailure' |
Johnny Chen | f5b8909 | 2011-08-15 23:09:08 +0000 | [diff] [blame] | 841 | elif self.__skipped__: |
| 842 | prefix = 'SkippedTest' |
Johnny Chen | cbe5126 | 2011-08-01 19:50:58 +0000 | [diff] [blame] | 843 | elif self.__unexpected__: |
| 844 | prefix = "UnexpectedSuccess" |
| 845 | else: |
| 846 | # Simply return, there's no session info to dump! |
| 847 | return |
| 848 | |
Johnny Chen | f5b8909 | 2011-08-15 23:09:08 +0000 | [diff] [blame] | 849 | if not self.__unexpected__ and not self.__skipped__: |
Johnny Chen | cbe5126 | 2011-08-01 19:50:58 +0000 | [diff] [blame] | 850 | for test, traceback in pairs: |
| 851 | if test is self: |
| 852 | print >> self.session, traceback |
| 853 | |
Johnny Chen | 6fd55f1 | 2011-08-11 00:16:28 +0000 | [diff] [blame] | 854 | testMethod = getattr(self, self._testMethodName) |
| 855 | if getattr(testMethod, "__benchmarks_test__", False): |
| 856 | benchmarks = True |
| 857 | else: |
| 858 | benchmarks = False |
| 859 | |
Johnny Chen | dfa0cdb | 2011-12-03 00:16:59 +0000 | [diff] [blame] | 860 | # This records the compiler version used for the test. |
| 861 | system([self.getCompiler(), "-v"], sender=self) |
| 862 | |
Johnny Chen | cbe5126 | 2011-08-01 19:50:58 +0000 | [diff] [blame] | 863 | dname = os.path.join(os.environ["LLDB_TEST"], |
| 864 | os.environ["LLDB_SESSION_DIRNAME"]) |
| 865 | if not os.path.isdir(dname): |
| 866 | os.mkdir(dname) |
Sean Callanan | 783ac95 | 2012-10-16 18:22:04 +0000 | [diff] [blame] | 867 | fname = os.path.join(dname, "%s-%s-%s-%s.log" % (prefix, self.getArchitecture(), "_".join(self.getCompiler().split('/')), self.id())) |
Johnny Chen | cbe5126 | 2011-08-01 19:50:58 +0000 | [diff] [blame] | 868 | with open(fname, "w") as f: |
| 869 | import datetime |
| 870 | print >> f, "Session info generated @", datetime.datetime.now().ctime() |
| 871 | print >> f, self.session.getvalue() |
| 872 | print >> f, "To rerun this test, issue the following command from the 'test' directory:\n" |
Johnny Chen | 6fd55f1 | 2011-08-11 00:16:28 +0000 | [diff] [blame] | 873 | print >> f, "./dotest.py %s -v %s -f %s.%s" % (self.getRunOptions(), |
| 874 | ('+b' if benchmarks else '-t'), |
Johnny Chen | cbe5126 | 2011-08-01 19:50:58 +0000 | [diff] [blame] | 875 | self.__class__.__name__, |
| 876 | self._testMethodName) |
| 877 | |
| 878 | # ==================================================== |
| 879 | # Config. methods supported through a plugin interface |
| 880 | # (enables reading of the current test configuration) |
| 881 | # ==================================================== |
| 882 | |
| 883 | def getArchitecture(self): |
| 884 | """Returns the architecture in effect the test suite is running with.""" |
| 885 | module = builder_module() |
| 886 | return module.getArchitecture() |
| 887 | |
| 888 | def getCompiler(self): |
| 889 | """Returns the compiler in effect the test suite is running with.""" |
| 890 | module = builder_module() |
| 891 | return module.getCompiler() |
| 892 | |
| 893 | def getRunOptions(self): |
| 894 | """Command line option for -A and -C to run this test again, called from |
| 895 | self.dumpSessionInfo().""" |
| 896 | arch = self.getArchitecture() |
| 897 | comp = self.getCompiler() |
Johnny Chen | b7058c5 | 2011-08-24 19:48:51 +0000 | [diff] [blame] | 898 | if arch: |
| 899 | option_str = "-A " + arch |
Johnny Chen | cbe5126 | 2011-08-01 19:50:58 +0000 | [diff] [blame] | 900 | else: |
Johnny Chen | b7058c5 | 2011-08-24 19:48:51 +0000 | [diff] [blame] | 901 | option_str = "" |
| 902 | if comp: |
Johnny Chen | e1219bf | 2012-03-16 20:44:00 +0000 | [diff] [blame] | 903 | option_str += " -C " + comp |
Johnny Chen | b7058c5 | 2011-08-24 19:48:51 +0000 | [diff] [blame] | 904 | return option_str |
Johnny Chen | cbe5126 | 2011-08-01 19:50:58 +0000 | [diff] [blame] | 905 | |
| 906 | # ================================================== |
| 907 | # Build methods supported through a plugin interface |
| 908 | # ================================================== |
| 909 | |
Johnny Chen | cbf1591 | 2012-02-01 01:49:50 +0000 | [diff] [blame] | 910 | def buildDefault(self, architecture=None, compiler=None, dictionary=None, clean=True): |
Johnny Chen | cbe5126 | 2011-08-01 19:50:58 +0000 | [diff] [blame] | 911 | """Platform specific way to build the default binaries.""" |
Johnny Chen | 028d8eb | 2011-11-17 19:57:27 +0000 | [diff] [blame] | 912 | if lldb.skip_build_and_cleanup: |
| 913 | return |
Johnny Chen | cbe5126 | 2011-08-01 19:50:58 +0000 | [diff] [blame] | 914 | module = builder_module() |
Johnny Chen | cbf1591 | 2012-02-01 01:49:50 +0000 | [diff] [blame] | 915 | if not module.buildDefault(self, architecture, compiler, dictionary, clean): |
Johnny Chen | cbe5126 | 2011-08-01 19:50:58 +0000 | [diff] [blame] | 916 | raise Exception("Don't know how to build default binary") |
| 917 | |
Johnny Chen | cbf1591 | 2012-02-01 01:49:50 +0000 | [diff] [blame] | 918 | def buildDsym(self, architecture=None, compiler=None, dictionary=None, clean=True): |
Johnny Chen | cbe5126 | 2011-08-01 19:50:58 +0000 | [diff] [blame] | 919 | """Platform specific way to build binaries with dsym info.""" |
Johnny Chen | 028d8eb | 2011-11-17 19:57:27 +0000 | [diff] [blame] | 920 | if lldb.skip_build_and_cleanup: |
| 921 | return |
Johnny Chen | cbe5126 | 2011-08-01 19:50:58 +0000 | [diff] [blame] | 922 | module = builder_module() |
Johnny Chen | cbf1591 | 2012-02-01 01:49:50 +0000 | [diff] [blame] | 923 | if not module.buildDsym(self, architecture, compiler, dictionary, clean): |
Johnny Chen | cbe5126 | 2011-08-01 19:50:58 +0000 | [diff] [blame] | 924 | raise Exception("Don't know how to build binary with dsym") |
| 925 | |
Johnny Chen | cbf1591 | 2012-02-01 01:49:50 +0000 | [diff] [blame] | 926 | def buildDwarf(self, architecture=None, compiler=None, dictionary=None, clean=True): |
Johnny Chen | cbe5126 | 2011-08-01 19:50:58 +0000 | [diff] [blame] | 927 | """Platform specific way to build binaries with dwarf maps.""" |
Johnny Chen | 028d8eb | 2011-11-17 19:57:27 +0000 | [diff] [blame] | 928 | if lldb.skip_build_and_cleanup: |
| 929 | return |
Johnny Chen | cbe5126 | 2011-08-01 19:50:58 +0000 | [diff] [blame] | 930 | module = builder_module() |
Johnny Chen | cbf1591 | 2012-02-01 01:49:50 +0000 | [diff] [blame] | 931 | if not module.buildDwarf(self, architecture, compiler, dictionary, clean): |
Johnny Chen | cbe5126 | 2011-08-01 19:50:58 +0000 | [diff] [blame] | 932 | raise Exception("Don't know how to build binary with dwarf") |
Johnny Chen | 366fb8c | 2011-08-01 18:46:13 +0000 | [diff] [blame] | 933 | |
Johnny Chen | 7f9985a | 2011-08-12 20:19:22 +0000 | [diff] [blame] | 934 | def cleanup(self, dictionary=None): |
| 935 | """Platform specific way to do cleanup after build.""" |
Johnny Chen | 028d8eb | 2011-11-17 19:57:27 +0000 | [diff] [blame] | 936 | if lldb.skip_build_and_cleanup: |
| 937 | return |
Johnny Chen | 7f9985a | 2011-08-12 20:19:22 +0000 | [diff] [blame] | 938 | module = builder_module() |
| 939 | if not module.cleanup(self, dictionary): |
Johnny Chen | 028d8eb | 2011-11-17 19:57:27 +0000 | [diff] [blame] | 940 | raise Exception("Don't know how to do cleanup with dictionary: "+dictionary) |
Johnny Chen | 7f9985a | 2011-08-12 20:19:22 +0000 | [diff] [blame] | 941 | |
Johnny Chen | 366fb8c | 2011-08-01 18:46:13 +0000 | [diff] [blame] | 942 | |
| 943 | class TestBase(Base): |
| 944 | """ |
| 945 | This abstract base class is meant to be subclassed. It provides default |
| 946 | implementations for setUpClass(), tearDownClass(), setUp(), and tearDown(), |
| 947 | among other things. |
| 948 | |
| 949 | Important things for test class writers: |
| 950 | |
| 951 | - Overwrite the mydir class attribute, otherwise your test class won't |
| 952 | run. It specifies the relative directory to the top level 'test' so |
| 953 | the test harness can change to the correct working directory before |
| 954 | running your test. |
| 955 | |
| 956 | - The setUp method sets up things to facilitate subsequent interactions |
| 957 | with the debugger as part of the test. These include: |
| 958 | - populate the test method name |
| 959 | - create/get a debugger set with synchronous mode (self.dbg) |
| 960 | - get the command interpreter from with the debugger (self.ci) |
| 961 | - create a result object for use with the command interpreter |
| 962 | (self.res) |
| 963 | - plus other stuffs |
| 964 | |
| 965 | - The tearDown method tries to perform some necessary cleanup on behalf |
| 966 | of the test to return the debugger to a good state for the next test. |
| 967 | These include: |
| 968 | - execute any tearDown hooks registered by the test method with |
| 969 | TestBase.addTearDownHook(); examples can be found in |
| 970 | settings/TestSettings.py |
| 971 | - kill the inferior process associated with each target, if any, |
| 972 | and, then delete the target from the debugger's target list |
| 973 | - perform build cleanup before running the next test method in the |
| 974 | same test class; examples of registering for this service can be |
| 975 | found in types/TestIntegerTypes.py with the call: |
| 976 | - self.setTearDownCleanup(dictionary=d) |
| 977 | |
| 978 | - Similarly setUpClass and tearDownClass perform classwise setup and |
| 979 | teardown fixtures. The tearDownClass method invokes a default build |
| 980 | cleanup for the entire test class; also, subclasses can implement the |
| 981 | classmethod classCleanup(cls) to perform special class cleanup action. |
| 982 | |
| 983 | - The instance methods runCmd and expect are used heavily by existing |
| 984 | test cases to send a command to the command interpreter and to perform |
| 985 | string/pattern matching on the output of such command execution. The |
| 986 | expect method also provides a mode to peform string/pattern matching |
| 987 | without running a command. |
| 988 | |
| 989 | - The build methods buildDefault, buildDsym, and buildDwarf are used to |
| 990 | build the binaries used during a particular test scenario. A plugin |
| 991 | should be provided for the sys.platform running the test suite. The |
| 992 | Mac OS X implementation is located in plugins/darwin.py. |
| 993 | """ |
| 994 | |
| 995 | # Maximum allowed attempts when launching the inferior process. |
| 996 | # Can be overridden by the LLDB_MAX_LAUNCH_COUNT environment variable. |
| 997 | maxLaunchCount = 3; |
| 998 | |
| 999 | # Time to wait before the next launching attempt in second(s). |
| 1000 | # Can be overridden by the LLDB_TIME_WAIT_NEXT_LAUNCH environment variable. |
| 1001 | timeWaitNextLaunch = 1.0; |
| 1002 | |
| 1003 | def doDelay(self): |
| 1004 | """See option -w of dotest.py.""" |
| 1005 | if ("LLDB_WAIT_BETWEEN_TEST_CASES" in os.environ and |
| 1006 | os.environ["LLDB_WAIT_BETWEEN_TEST_CASES"] == 'YES'): |
| 1007 | waitTime = 1.0 |
| 1008 | if "LLDB_TIME_WAIT_BETWEEN_TEST_CASES" in os.environ: |
| 1009 | waitTime = float(os.environ["LLDB_TIME_WAIT_BETWEEN_TEST_CASES"]) |
| 1010 | time.sleep(waitTime) |
| 1011 | |
Enrico Granata | ac3a8e2 | 2012-09-21 19:10:53 +0000 | [diff] [blame] | 1012 | # Returns the list of categories to which this test case belongs |
| 1013 | # by default, look for a ".categories" file, and read its contents |
| 1014 | # if no such file exists, traverse the hierarchy - we guarantee |
| 1015 | # a .categories to exist at the top level directory so we do not end up |
| 1016 | # looping endlessly - subclasses are free to define their own categories |
| 1017 | # in whatever way makes sense to them |
| 1018 | def getCategories(self): |
| 1019 | import inspect |
| 1020 | import os.path |
| 1021 | folder = inspect.getfile(self.__class__) |
| 1022 | folder = os.path.dirname(folder) |
| 1023 | while folder != '/': |
| 1024 | categories_file_name = os.path.join(folder,".categories") |
| 1025 | if os.path.exists(categories_file_name): |
| 1026 | categories_file = open(categories_file_name,'r') |
| 1027 | categories = categories_file.readline() |
| 1028 | categories_file.close() |
| 1029 | categories = str.replace(categories,'\n','') |
| 1030 | categories = str.replace(categories,'\r','') |
| 1031 | return categories.split(',') |
| 1032 | else: |
| 1033 | folder = os.path.dirname(folder) |
| 1034 | continue |
| 1035 | |
Johnny Chen | 366fb8c | 2011-08-01 18:46:13 +0000 | [diff] [blame] | 1036 | def setUp(self): |
| 1037 | #import traceback |
| 1038 | #traceback.print_stack() |
| 1039 | |
| 1040 | # Works with the test driver to conditionally skip tests via decorators. |
| 1041 | Base.setUp(self) |
| 1042 | |
Johnny Chen | 366fb8c | 2011-08-01 18:46:13 +0000 | [diff] [blame] | 1043 | try: |
| 1044 | if lldb.blacklist: |
| 1045 | className = self.__class__.__name__ |
| 1046 | classAndMethodName = "%s.%s" % (className, self._testMethodName) |
| 1047 | if className in lldb.blacklist: |
| 1048 | self.skipTest(lldb.blacklist.get(className)) |
| 1049 | elif classAndMethodName in lldb.blacklist: |
| 1050 | self.skipTest(lldb.blacklist.get(classAndMethodName)) |
| 1051 | except AttributeError: |
| 1052 | pass |
| 1053 | |
Johnny Chen | 9a9fcf6 | 2011-06-21 00:53:00 +0000 | [diff] [blame] | 1054 | # Insert some delay between successive test cases if specified. |
| 1055 | self.doDelay() |
Johnny Chen | e47649c | 2010-10-07 02:04:14 +0000 | [diff] [blame] | 1056 | |
Johnny Chen | 6557248 | 2010-08-25 18:49:48 +0000 | [diff] [blame] | 1057 | if "LLDB_MAX_LAUNCH_COUNT" in os.environ: |
| 1058 | self.maxLaunchCount = int(os.environ["LLDB_MAX_LAUNCH_COUNT"]) |
| 1059 | |
Johnny Chen | d296521 | 2010-10-19 16:00:42 +0000 | [diff] [blame] | 1060 | if "LLDB_TIME_WAIT_NEXT_LAUNCH" in os.environ: |
Johnny Chen | 458a67e | 2010-11-29 20:20:34 +0000 | [diff] [blame] | 1061 | self.timeWaitNextLaunch = float(os.environ["LLDB_TIME_WAIT_NEXT_LAUNCH"]) |
Johnny Chen | 6557248 | 2010-08-25 18:49:48 +0000 | [diff] [blame] | 1062 | |
Johnny Chen | a1affab | 2010-07-03 03:41:59 +0000 | [diff] [blame] | 1063 | # Create the debugger instance if necessary. |
| 1064 | try: |
| 1065 | self.dbg = lldb.DBG |
Johnny Chen | a1affab | 2010-07-03 03:41:59 +0000 | [diff] [blame] | 1066 | except AttributeError: |
| 1067 | self.dbg = lldb.SBDebugger.Create() |
Johnny Chen | f8c723b | 2010-07-03 20:41:42 +0000 | [diff] [blame] | 1068 | |
Johnny Chen | 960ce12 | 2011-05-25 19:06:18 +0000 | [diff] [blame] | 1069 | if not self.dbg: |
Johnny Chen | a1affab | 2010-07-03 03:41:59 +0000 | [diff] [blame] | 1070 | raise Exception('Invalid debugger instance') |
| 1071 | |
| 1072 | # We want our debugger to be synchronous. |
| 1073 | self.dbg.SetAsync(False) |
| 1074 | |
| 1075 | # Retrieve the associated command interpreter instance. |
| 1076 | self.ci = self.dbg.GetCommandInterpreter() |
| 1077 | if not self.ci: |
| 1078 | raise Exception('Could not get the command interpreter') |
| 1079 | |
| 1080 | # And the result object. |
| 1081 | self.res = lldb.SBCommandReturnObject() |
| 1082 | |
Johnny Chen | ac97a6b | 2012-04-16 18:55:15 +0000 | [diff] [blame] | 1083 | # Run global pre-flight code, if defined via the config file. |
| 1084 | if lldb.pre_flight: |
| 1085 | lldb.pre_flight(self) |
| 1086 | |
Enrico Granata | 251729e | 2012-10-24 01:23:57 +0000 | [diff] [blame] | 1087 | # utility methods that tests can use to access the current objects |
| 1088 | def target(self): |
| 1089 | if not self.dbg: |
| 1090 | raise Exception('Invalid debugger instance') |
| 1091 | return self.dbg.GetSelectedTarget() |
| 1092 | |
| 1093 | def process(self): |
| 1094 | if not self.dbg: |
| 1095 | raise Exception('Invalid debugger instance') |
| 1096 | return self.dbg.GetSelectedTarget().GetProcess() |
| 1097 | |
| 1098 | def thread(self): |
| 1099 | if not self.dbg: |
| 1100 | raise Exception('Invalid debugger instance') |
| 1101 | return self.dbg.GetSelectedTarget().GetProcess().GetSelectedThread() |
| 1102 | |
| 1103 | def frame(self): |
| 1104 | if not self.dbg: |
| 1105 | raise Exception('Invalid debugger instance') |
| 1106 | return self.dbg.GetSelectedTarget().GetProcess().GetSelectedThread().GetSelectedFrame() |
| 1107 | |
Johnny Chen | a1affab | 2010-07-03 03:41:59 +0000 | [diff] [blame] | 1108 | def tearDown(self): |
Johnny Chen | 72a1434 | 2010-09-02 21:23:12 +0000 | [diff] [blame] | 1109 | #import traceback |
| 1110 | #traceback.print_stack() |
| 1111 | |
Johnny Chen | cbe5126 | 2011-08-01 19:50:58 +0000 | [diff] [blame] | 1112 | Base.tearDown(self) |
Johnny Chen | 705737b | 2010-10-19 23:40:13 +0000 | [diff] [blame] | 1113 | |
Johnny Chen | 409646d | 2011-06-15 21:24:24 +0000 | [diff] [blame] | 1114 | # Delete the target(s) from the debugger as a general cleanup step. |
| 1115 | # This includes terminating the process for each target, if any. |
| 1116 | # We'd like to reuse the debugger for our next test without incurring |
| 1117 | # the initialization overhead. |
| 1118 | targets = [] |
| 1119 | for target in self.dbg: |
| 1120 | if target: |
| 1121 | targets.append(target) |
| 1122 | process = target.GetProcess() |
| 1123 | if process: |
| 1124 | rc = self.invoke(process, "Kill") |
| 1125 | self.assertTrue(rc.Success(), PROCESS_KILLED) |
| 1126 | for target in targets: |
| 1127 | self.dbg.DeleteTarget(target) |
Johnny Chen | ffde4fc | 2010-08-16 21:28:10 +0000 | [diff] [blame] | 1128 | |
Johnny Chen | ac97a6b | 2012-04-16 18:55:15 +0000 | [diff] [blame] | 1129 | # Run global post-flight code, if defined via the config file. |
| 1130 | if lldb.post_flight: |
| 1131 | lldb.post_flight(self) |
| 1132 | |
Johnny Chen | a1affab | 2010-07-03 03:41:59 +0000 | [diff] [blame] | 1133 | del self.dbg |
Johnny Chen | 84a6d6f | 2010-10-15 01:18:29 +0000 | [diff] [blame] | 1134 | |
Johnny Chen | 90c56e6 | 2011-09-30 21:48:35 +0000 | [diff] [blame] | 1135 | def switch_to_thread_with_stop_reason(self, stop_reason): |
| 1136 | """ |
| 1137 | Run the 'thread list' command, and select the thread with stop reason as |
| 1138 | 'stop_reason'. If no such thread exists, no select action is done. |
| 1139 | """ |
| 1140 | from lldbutil import stop_reason_to_str |
| 1141 | self.runCmd('thread list') |
| 1142 | output = self.res.GetOutput() |
| 1143 | thread_line_pattern = re.compile("^[ *] thread #([0-9]+):.*stop reason = %s" % |
| 1144 | stop_reason_to_str(stop_reason)) |
| 1145 | for line in output.splitlines(): |
| 1146 | matched = thread_line_pattern.match(line) |
| 1147 | if matched: |
| 1148 | self.runCmd('thread select %s' % matched.group(1)) |
| 1149 | |
Johnny Chen | ef6f476 | 2011-06-15 21:38:39 +0000 | [diff] [blame] | 1150 | def runCmd(self, cmd, msg=None, check=True, trace=False): |
Johnny Chen | 8df95eb | 2010-08-19 23:26:59 +0000 | [diff] [blame] | 1151 | """ |
| 1152 | Ask the command interpreter to handle the command and then check its |
| 1153 | return status. |
| 1154 | """ |
| 1155 | # Fail fast if 'cmd' is not meaningful. |
| 1156 | if not cmd or len(cmd) == 0: |
| 1157 | raise Exception("Bad 'cmd' parameter encountered") |
Johnny Chen | 4f995f0 | 2010-08-20 17:57:32 +0000 | [diff] [blame] | 1158 | |
Johnny Chen | 9de4ede | 2010-08-31 17:42:54 +0000 | [diff] [blame] | 1159 | trace = (True if traceAlways else trace) |
Johnny Chen | d0c24b2 | 2010-08-23 17:10:44 +0000 | [diff] [blame] | 1160 | |
Johnny Chen | 21f3341 | 2010-09-01 00:15:19 +0000 | [diff] [blame] | 1161 | running = (cmd.startswith("run") or cmd.startswith("process launch")) |
Johnny Chen | 4f995f0 | 2010-08-20 17:57:32 +0000 | [diff] [blame] | 1162 | |
Johnny Chen | 21f3341 | 2010-09-01 00:15:19 +0000 | [diff] [blame] | 1163 | for i in range(self.maxLaunchCount if running else 1): |
Johnny Chen | 6557248 | 2010-08-25 18:49:48 +0000 | [diff] [blame] | 1164 | self.ci.HandleCommand(cmd, self.res) |
Johnny Chen | 4f995f0 | 2010-08-20 17:57:32 +0000 | [diff] [blame] | 1165 | |
Johnny Chen | 84a6d6f | 2010-10-15 01:18:29 +0000 | [diff] [blame] | 1166 | with recording(self, trace) as sbuf: |
| 1167 | print >> sbuf, "runCmd:", cmd |
Johnny Chen | 7c565c8 | 2010-10-15 16:13:00 +0000 | [diff] [blame] | 1168 | if not check: |
Johnny Chen | 31cf8e2 | 2010-10-15 18:52:22 +0000 | [diff] [blame] | 1169 | print >> sbuf, "check of return status not required" |
Johnny Chen | 6557248 | 2010-08-25 18:49:48 +0000 | [diff] [blame] | 1170 | if self.res.Succeeded(): |
Johnny Chen | 84a6d6f | 2010-10-15 01:18:29 +0000 | [diff] [blame] | 1171 | print >> sbuf, "output:", self.res.GetOutput() |
Johnny Chen | 6557248 | 2010-08-25 18:49:48 +0000 | [diff] [blame] | 1172 | else: |
Johnny Chen | 84a6d6f | 2010-10-15 01:18:29 +0000 | [diff] [blame] | 1173 | print >> sbuf, "runCmd failed!" |
| 1174 | print >> sbuf, self.res.GetError() |
Johnny Chen | 4f995f0 | 2010-08-20 17:57:32 +0000 | [diff] [blame] | 1175 | |
Johnny Chen | 029acae | 2010-08-20 21:03:09 +0000 | [diff] [blame] | 1176 | if self.res.Succeeded(): |
Johnny Chen | 6557248 | 2010-08-25 18:49:48 +0000 | [diff] [blame] | 1177 | break |
Johnny Chen | 84a6d6f | 2010-10-15 01:18:29 +0000 | [diff] [blame] | 1178 | elif running: |
Johnny Chen | dcb3722 | 2011-01-19 02:02:08 +0000 | [diff] [blame] | 1179 | # For process launch, wait some time before possible next try. |
| 1180 | time.sleep(self.timeWaitNextLaunch) |
Johnny Chen | 894eab4 | 2012-08-01 19:56:04 +0000 | [diff] [blame] | 1181 | with recording(self, trace) as sbuf: |
Johnny Chen | 84a6d6f | 2010-10-15 01:18:29 +0000 | [diff] [blame] | 1182 | print >> sbuf, "Command '" + cmd + "' failed!" |
Johnny Chen | 4f995f0 | 2010-08-20 17:57:32 +0000 | [diff] [blame] | 1183 | |
Johnny Chen | 8df95eb | 2010-08-19 23:26:59 +0000 | [diff] [blame] | 1184 | if check: |
| 1185 | self.assertTrue(self.res.Succeeded(), |
Johnny Chen | 05efcf78 | 2010-11-09 18:42:22 +0000 | [diff] [blame] | 1186 | msg if msg else CMD_MSG(cmd)) |
Johnny Chen | 8df95eb | 2010-08-19 23:26:59 +0000 | [diff] [blame] | 1187 | |
Jim Ingham | 431d839 | 2012-09-22 00:05:11 +0000 | [diff] [blame] | 1188 | def match (self, str, patterns, msg=None, trace=False, error=False, matching=True, exe=True): |
| 1189 | """run command in str, and match the result against regexp in patterns returning the match object for the first matching pattern |
| 1190 | |
| 1191 | Otherwise, all the arguments have the same meanings as for the expect function""" |
| 1192 | |
| 1193 | trace = (True if traceAlways else trace) |
| 1194 | |
| 1195 | if exe: |
| 1196 | # First run the command. If we are expecting error, set check=False. |
| 1197 | # Pass the assert message along since it provides more semantic info. |
| 1198 | self.runCmd(str, msg=msg, trace = (True if trace else False), check = not error) |
| 1199 | |
| 1200 | # Then compare the output against expected strings. |
| 1201 | output = self.res.GetError() if error else self.res.GetOutput() |
| 1202 | |
| 1203 | # If error is True, the API client expects the command to fail! |
| 1204 | if error: |
| 1205 | self.assertFalse(self.res.Succeeded(), |
| 1206 | "Command '" + str + "' is expected to fail!") |
| 1207 | else: |
| 1208 | # No execution required, just compare str against the golden input. |
| 1209 | output = str |
| 1210 | with recording(self, trace) as sbuf: |
| 1211 | print >> sbuf, "looking at:", output |
| 1212 | |
| 1213 | # The heading says either "Expecting" or "Not expecting". |
| 1214 | heading = "Expecting" if matching else "Not expecting" |
| 1215 | |
| 1216 | for pattern in patterns: |
| 1217 | # Match Objects always have a boolean value of True. |
| 1218 | match_object = re.search(pattern, output) |
| 1219 | matched = bool(match_object) |
| 1220 | with recording(self, trace) as sbuf: |
| 1221 | print >> sbuf, "%s pattern: %s" % (heading, pattern) |
| 1222 | print >> sbuf, "Matched" if matched else "Not matched" |
| 1223 | if matched: |
| 1224 | break |
| 1225 | |
| 1226 | self.assertTrue(matched if matching else not matched, |
| 1227 | msg if msg else EXP_MSG(str, exe)) |
| 1228 | |
| 1229 | return match_object |
| 1230 | |
Johnny Chen | 90c56e6 | 2011-09-30 21:48:35 +0000 | [diff] [blame] | 1231 | def expect(self, str, msg=None, patterns=None, startstr=None, endstr=None, substrs=None, trace=False, error=False, matching=True, exe=True): |
Johnny Chen | 8df95eb | 2010-08-19 23:26:59 +0000 | [diff] [blame] | 1232 | """ |
| 1233 | Similar to runCmd; with additional expect style output matching ability. |
| 1234 | |
| 1235 | Ask the command interpreter to handle the command and then check its |
| 1236 | return status. The 'msg' parameter specifies an informational assert |
| 1237 | message. We expect the output from running the command to start with |
Johnny Chen | 2d89975 | 2010-09-21 21:08:53 +0000 | [diff] [blame] | 1238 | 'startstr', matches the substrings contained in 'substrs', and regexp |
| 1239 | matches the patterns contained in 'patterns'. |
Johnny Chen | 9792f8e | 2010-09-17 22:28:51 +0000 | [diff] [blame] | 1240 | |
| 1241 | If the keyword argument error is set to True, it signifies that the API |
| 1242 | client is expecting the command to fail. In this case, the error stream |
Johnny Chen | ee975b8 | 2010-09-17 22:45:27 +0000 | [diff] [blame] | 1243 | from running the command is retrieved and compared against the golden |
Johnny Chen | 9792f8e | 2010-09-17 22:28:51 +0000 | [diff] [blame] | 1244 | input, instead. |
Johnny Chen | 2d89975 | 2010-09-21 21:08:53 +0000 | [diff] [blame] | 1245 | |
| 1246 | If the keyword argument matching is set to False, it signifies that the API |
| 1247 | client is expecting the output of the command not to match the golden |
| 1248 | input. |
Johnny Chen | 8e06de9 | 2010-09-21 23:33:30 +0000 | [diff] [blame] | 1249 | |
| 1250 | Finally, the required argument 'str' represents the lldb command to be |
| 1251 | sent to the command interpreter. In case the keyword argument 'exe' is |
| 1252 | set to False, the 'str' is treated as a string to be matched/not-matched |
| 1253 | against the golden input. |
Johnny Chen | 8df95eb | 2010-08-19 23:26:59 +0000 | [diff] [blame] | 1254 | """ |
Johnny Chen | 9de4ede | 2010-08-31 17:42:54 +0000 | [diff] [blame] | 1255 | trace = (True if traceAlways else trace) |
Johnny Chen | d0c24b2 | 2010-08-23 17:10:44 +0000 | [diff] [blame] | 1256 | |
Johnny Chen | 8e06de9 | 2010-09-21 23:33:30 +0000 | [diff] [blame] | 1257 | if exe: |
| 1258 | # First run the command. If we are expecting error, set check=False. |
Johnny Chen | 60881f6 | 2010-10-28 21:10:32 +0000 | [diff] [blame] | 1259 | # Pass the assert message along since it provides more semantic info. |
Johnny Chen | 05dd893 | 2010-10-28 18:24:22 +0000 | [diff] [blame] | 1260 | self.runCmd(str, msg=msg, trace = (True if trace else False), check = not error) |
Johnny Chen | 8df95eb | 2010-08-19 23:26:59 +0000 | [diff] [blame] | 1261 | |
Johnny Chen | 8e06de9 | 2010-09-21 23:33:30 +0000 | [diff] [blame] | 1262 | # Then compare the output against expected strings. |
| 1263 | output = self.res.GetError() if error else self.res.GetOutput() |
Johnny Chen | 9792f8e | 2010-09-17 22:28:51 +0000 | [diff] [blame] | 1264 | |
Johnny Chen | 8e06de9 | 2010-09-21 23:33:30 +0000 | [diff] [blame] | 1265 | # If error is True, the API client expects the command to fail! |
| 1266 | if error: |
| 1267 | self.assertFalse(self.res.Succeeded(), |
| 1268 | "Command '" + str + "' is expected to fail!") |
| 1269 | else: |
| 1270 | # No execution required, just compare str against the golden input. |
Enrico Granata | 01458ca | 2012-10-23 00:09:02 +0000 | [diff] [blame] | 1271 | if isinstance(str,lldb.SBCommandReturnObject): |
| 1272 | output = str.GetOutput() |
| 1273 | else: |
| 1274 | output = str |
Johnny Chen | 84a6d6f | 2010-10-15 01:18:29 +0000 | [diff] [blame] | 1275 | with recording(self, trace) as sbuf: |
| 1276 | print >> sbuf, "looking at:", output |
Johnny Chen | 9792f8e | 2010-09-17 22:28:51 +0000 | [diff] [blame] | 1277 | |
Johnny Chen | 2d89975 | 2010-09-21 21:08:53 +0000 | [diff] [blame] | 1278 | # The heading says either "Expecting" or "Not expecting". |
Johnny Chen | 84a6d6f | 2010-10-15 01:18:29 +0000 | [diff] [blame] | 1279 | heading = "Expecting" if matching else "Not expecting" |
Johnny Chen | 2d89975 | 2010-09-21 21:08:53 +0000 | [diff] [blame] | 1280 | |
| 1281 | # Start from the startstr, if specified. |
| 1282 | # If there's no startstr, set the initial state appropriately. |
| 1283 | matched = output.startswith(startstr) if startstr else (True if matching else False) |
Johnny Chen | ead35c8 | 2010-08-20 18:25:15 +0000 | [diff] [blame] | 1284 | |
Johnny Chen | 84a6d6f | 2010-10-15 01:18:29 +0000 | [diff] [blame] | 1285 | if startstr: |
| 1286 | with recording(self, trace) as sbuf: |
| 1287 | print >> sbuf, "%s start string: %s" % (heading, startstr) |
| 1288 | print >> sbuf, "Matched" if matched else "Not matched" |
Johnny Chen | ead35c8 | 2010-08-20 18:25:15 +0000 | [diff] [blame] | 1289 | |
Johnny Chen | 90c56e6 | 2011-09-30 21:48:35 +0000 | [diff] [blame] | 1290 | # Look for endstr, if specified. |
| 1291 | keepgoing = matched if matching else not matched |
| 1292 | if endstr: |
| 1293 | matched = output.endswith(endstr) |
| 1294 | with recording(self, trace) as sbuf: |
| 1295 | print >> sbuf, "%s end string: %s" % (heading, endstr) |
| 1296 | print >> sbuf, "Matched" if matched else "Not matched" |
| 1297 | |
Johnny Chen | 2d89975 | 2010-09-21 21:08:53 +0000 | [diff] [blame] | 1298 | # Look for sub strings, if specified. |
| 1299 | keepgoing = matched if matching else not matched |
| 1300 | if substrs and keepgoing: |
Johnny Chen | 8df95eb | 2010-08-19 23:26:59 +0000 | [diff] [blame] | 1301 | for str in substrs: |
Johnny Chen | 091bb1d | 2010-09-23 23:35:28 +0000 | [diff] [blame] | 1302 | matched = output.find(str) != -1 |
Johnny Chen | 84a6d6f | 2010-10-15 01:18:29 +0000 | [diff] [blame] | 1303 | with recording(self, trace) as sbuf: |
| 1304 | print >> sbuf, "%s sub string: %s" % (heading, str) |
| 1305 | print >> sbuf, "Matched" if matched else "Not matched" |
Johnny Chen | 2d89975 | 2010-09-21 21:08:53 +0000 | [diff] [blame] | 1306 | keepgoing = matched if matching else not matched |
| 1307 | if not keepgoing: |
Johnny Chen | 8df95eb | 2010-08-19 23:26:59 +0000 | [diff] [blame] | 1308 | break |
| 1309 | |
Johnny Chen | 2d89975 | 2010-09-21 21:08:53 +0000 | [diff] [blame] | 1310 | # Search for regular expression patterns, if specified. |
| 1311 | keepgoing = matched if matching else not matched |
| 1312 | if patterns and keepgoing: |
| 1313 | for pattern in patterns: |
| 1314 | # Match Objects always have a boolean value of True. |
| 1315 | matched = bool(re.search(pattern, output)) |
Johnny Chen | 84a6d6f | 2010-10-15 01:18:29 +0000 | [diff] [blame] | 1316 | with recording(self, trace) as sbuf: |
| 1317 | print >> sbuf, "%s pattern: %s" % (heading, pattern) |
| 1318 | print >> sbuf, "Matched" if matched else "Not matched" |
Johnny Chen | 2d89975 | 2010-09-21 21:08:53 +0000 | [diff] [blame] | 1319 | keepgoing = matched if matching else not matched |
| 1320 | if not keepgoing: |
| 1321 | break |
Johnny Chen | 2d89975 | 2010-09-21 21:08:53 +0000 | [diff] [blame] | 1322 | |
| 1323 | self.assertTrue(matched if matching else not matched, |
Johnny Chen | 05efcf78 | 2010-11-09 18:42:22 +0000 | [diff] [blame] | 1324 | msg if msg else EXP_MSG(str, exe)) |
Johnny Chen | 8df95eb | 2010-08-19 23:26:59 +0000 | [diff] [blame] | 1325 | |
Johnny Chen | a8b3cdd | 2010-08-25 22:52:45 +0000 | [diff] [blame] | 1326 | def invoke(self, obj, name, trace=False): |
Johnny Chen | d8473bc | 2010-08-25 22:56:10 +0000 | [diff] [blame] | 1327 | """Use reflection to call a method dynamically with no argument.""" |
Johnny Chen | 9de4ede | 2010-08-31 17:42:54 +0000 | [diff] [blame] | 1328 | trace = (True if traceAlways else trace) |
Johnny Chen | a8b3cdd | 2010-08-25 22:52:45 +0000 | [diff] [blame] | 1329 | |
| 1330 | method = getattr(obj, name) |
| 1331 | import inspect |
| 1332 | self.assertTrue(inspect.ismethod(method), |
| 1333 | name + "is a method name of object: " + str(obj)) |
| 1334 | result = method() |
Johnny Chen | 84a6d6f | 2010-10-15 01:18:29 +0000 | [diff] [blame] | 1335 | with recording(self, trace) as sbuf: |
| 1336 | print >> sbuf, str(method) + ":", result |
Johnny Chen | a8b3cdd | 2010-08-25 22:52:45 +0000 | [diff] [blame] | 1337 | return result |
Johnny Chen | 9c10c18 | 2010-08-27 00:15:48 +0000 | [diff] [blame] | 1338 | |
Johnny Chen | b877031 | 2011-05-27 23:36:52 +0000 | [diff] [blame] | 1339 | # ================================================= |
| 1340 | # Misc. helper methods for debugging test execution |
| 1341 | # ================================================= |
| 1342 | |
Johnny Chen | 57cd6dd | 2011-07-11 19:15:11 +0000 | [diff] [blame] | 1343 | def DebugSBValue(self, val): |
Johnny Chen | 9de4ede | 2010-08-31 17:42:54 +0000 | [diff] [blame] | 1344 | """Debug print a SBValue object, if traceAlways is True.""" |
Johnny Chen | 47342d5 | 2011-04-27 17:43:07 +0000 | [diff] [blame] | 1345 | from lldbutil import value_type_to_str |
Johnny Chen | 2c8d159 | 2010-11-03 21:37:58 +0000 | [diff] [blame] | 1346 | |
Johnny Chen | 9de4ede | 2010-08-31 17:42:54 +0000 | [diff] [blame] | 1347 | if not traceAlways: |
Johnny Chen | 9c10c18 | 2010-08-27 00:15:48 +0000 | [diff] [blame] | 1348 | return |
| 1349 | |
| 1350 | err = sys.stderr |
| 1351 | err.write(val.GetName() + ":\n") |
Johnny Chen | 90c56e6 | 2011-09-30 21:48:35 +0000 | [diff] [blame] | 1352 | err.write('\t' + "TypeName -> " + val.GetTypeName() + '\n') |
| 1353 | err.write('\t' + "ByteSize -> " + str(val.GetByteSize()) + '\n') |
| 1354 | err.write('\t' + "NumChildren -> " + str(val.GetNumChildren()) + '\n') |
| 1355 | err.write('\t' + "Value -> " + str(val.GetValue()) + '\n') |
| 1356 | err.write('\t' + "ValueAsUnsigned -> " + str(val.GetValueAsUnsigned())+ '\n') |
| 1357 | err.write('\t' + "ValueType -> " + value_type_to_str(val.GetValueType()) + '\n') |
| 1358 | err.write('\t' + "Summary -> " + str(val.GetSummary()) + '\n') |
| 1359 | err.write('\t' + "IsPointerType -> " + str(val.TypeIsPointerType()) + '\n') |
| 1360 | err.write('\t' + "Location -> " + val.GetLocation() + '\n') |
Johnny Chen | 9c10c18 | 2010-08-27 00:15:48 +0000 | [diff] [blame] | 1361 | |
Johnny Chen | d7e04d9 | 2011-08-05 20:17:27 +0000 | [diff] [blame] | 1362 | def DebugSBType(self, type): |
| 1363 | """Debug print a SBType object, if traceAlways is True.""" |
| 1364 | if not traceAlways: |
| 1365 | return |
| 1366 | |
| 1367 | err = sys.stderr |
| 1368 | err.write(type.GetName() + ":\n") |
| 1369 | err.write('\t' + "ByteSize -> " + str(type.GetByteSize()) + '\n') |
| 1370 | err.write('\t' + "IsPointerType -> " + str(type.IsPointerType()) + '\n') |
| 1371 | err.write('\t' + "IsReferenceType -> " + str(type.IsReferenceType()) + '\n') |
| 1372 | |
Johnny Chen | 7304147 | 2011-03-12 01:18:19 +0000 | [diff] [blame] | 1373 | def DebugPExpect(self, child): |
| 1374 | """Debug the spwaned pexpect object.""" |
| 1375 | if not traceAlways: |
| 1376 | return |
| 1377 | |
| 1378 | print child |
Filipe Cabecinhas | dee13ce | 2012-06-20 10:13:40 +0000 | [diff] [blame] | 1379 | |
| 1380 | @classmethod |
| 1381 | def RemoveTempFile(cls, file): |
| 1382 | if os.path.exists(file): |
| 1383 | os.remove(file) |