2010-07-03 03:41:59 +00:00
|
|
|
"""
|
|
|
|
LLDB module which provides the abstract base class of lldb test case.
|
|
|
|
|
2020-03-19 10:08:11 -04:00
|
|
|
The concrete subclass can override lldbtest.TestBase in order to inherit the
|
2010-07-03 03:41:59 +00:00
|
|
|
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
|
2012-05-16 20:41:28 +00:00
|
|
|
entire of part of the test suite . Example:
|
2010-09-02 22:25:47 +00:00
|
|
|
|
2012-05-16 20:41:28 +00:00
|
|
|
# Exercises the test suite in the types directory....
|
|
|
|
/Volumes/data/lldb/svn/ToT/test $ ./dotest.py -A x86_64 types
|
2010-09-02 22:25:47 +00:00
|
|
|
...
|
2010-08-23 17:10:44 +00:00
|
|
|
|
2012-05-16 20:41:28 +00:00
|
|
|
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']
|
2010-08-23 17:10:44 +00:00
|
|
|
|
2012-05-16 20:41:28 +00:00
|
|
|
Configuration: arch=x86_64 compiler=clang
|
|
|
|
----------------------------------------------------------------------
|
|
|
|
Collected 72 tests
|
2010-08-23 17:10:44 +00:00
|
|
|
|
2012-05-16 20:41:28 +00:00
|
|
|
........................................................................
|
2010-08-23 17:10:44 +00:00
|
|
|
----------------------------------------------------------------------
|
2012-05-16 20:41:28 +00:00
|
|
|
Ran 72 tests in 135.468s
|
2010-08-23 17:10:44 +00:00
|
|
|
|
2010-07-03 03:41:59 +00:00
|
|
|
OK
|
|
|
|
$
|
|
|
|
"""
|
|
|
|
|
Python 3 - Turn on absolute imports, and fix existing imports.
Absolute imports were introduced in Python 2.5 as a feature
(e.g. from __future__ import absolute_import), and made default
in Python 3.
When absolute imports are enabled, the import system changes in
a couple of ways:
1) The `import foo` syntax will *only* search sys.path. If `foo`
isn't in sys.path, it won't be found. Period. Without absolute
imports, the import system will also search the same directory
that the importing file resides in, so that you can easily
import from the same folder.
2) From inside a package, you can use a dot syntax to refer to higher
levels of the current package. For example, if you are in the
package lldbsuite.test.utility, then ..foo refers to
lldbsuite.test.foo. You can use this notation with the
`from X import Y` syntax to write intra-package references. For
example, using the previous locationa s a starting point, writing
`from ..support import seven` would import lldbsuite.support.seven
Since this is now the default behavior in Python 3, this means that
importing from the same directory with `import foo` *no longer works*.
As a result, the only way to have portable code is to force absolute
imports for all versions of Python.
See PEP 0328 [https://www.python.org/dev/peps/pep-0328/] for more
information about absolute and relative imports.
Differential Revision: http://reviews.llvm.org/D14342
Reviewed By: Todd Fiala
llvm-svn: 252191
2015-11-05 19:22:28 +00:00
|
|
|
from __future__ import absolute_import
|
2016-04-20 16:27:27 +00:00
|
|
|
from __future__ import print_function
|
2015-10-19 23:45:41 +00:00
|
|
|
|
Python 3 - Turn on absolute imports, and fix existing imports.
Absolute imports were introduced in Python 2.5 as a feature
(e.g. from __future__ import absolute_import), and made default
in Python 3.
When absolute imports are enabled, the import system changes in
a couple of ways:
1) The `import foo` syntax will *only* search sys.path. If `foo`
isn't in sys.path, it won't be found. Period. Without absolute
imports, the import system will also search the same directory
that the importing file resides in, so that you can easily
import from the same folder.
2) From inside a package, you can use a dot syntax to refer to higher
levels of the current package. For example, if you are in the
package lldbsuite.test.utility, then ..foo refers to
lldbsuite.test.foo. You can use this notation with the
`from X import Y` syntax to write intra-package references. For
example, using the previous locationa s a starting point, writing
`from ..support import seven` would import lldbsuite.support.seven
Since this is now the default behavior in Python 3, this means that
importing from the same directory with `import foo` *no longer works*.
As a result, the only way to have portable code is to force absolute
imports for all versions of Python.
See PEP 0328 [https://www.python.org/dev/peps/pep-0328/] for more
information about absolute and relative imports.
Differential Revision: http://reviews.llvm.org/D14342
Reviewed By: Todd Fiala
llvm-svn: 252191
2015-11-05 19:22:28 +00:00
|
|
|
# System modules
|
2015-02-04 23:19:15 +00:00
|
|
|
import abc
|
2019-02-14 18:48:05 +00:00
|
|
|
from distutils.version import LooseVersion
|
2016-02-04 23:04:17 +00:00
|
|
|
from functools import wraps
|
2015-10-15 22:39:55 +00:00
|
|
|
import gc
|
2015-05-10 15:22:09 +00:00
|
|
|
import glob
|
2016-01-22 23:54:49 +00:00
|
|
|
import io
|
2012-10-24 18:14:21 +00:00
|
|
|
import os.path
|
2010-09-21 21:08:53 +00:00
|
|
|
import re
|
[dotest] Clean up test folder clean-up
Summary:
This patch implements a unified way of cleaning the build folder of each
test. This is done by completely removing the build folder before each
test, in the respective setUp() method. Previously, we were using a
combination of several methods, each with it's own drawbacks:
- nuking the entire build tree before running dotest: the issue here is
that this did not take place if you ran dotest manually
- running "make clean" before the main "make" target: this relied on the
clean command being correctly implemented. This was usually true, but
not always.
- for files which were not produced by make, each python file was
responsible for ensuring their deleting, using a variety of methods.
With this approach, the previous methods become redundant. I remove the
first two, since they are centralized. For the other various bits of
clean-up code in python files, I indend to delete it when I come
across it.
Reviewers: aprantl
Subscribers: emaste, ki.stfu, mgorny, eraman, lldb-commits
Differential Revision: https://reviews.llvm.org/D44526
llvm-svn: 327703
2018-03-16 12:04:46 +00:00
|
|
|
import shutil
|
2013-06-05 21:07:02 +00:00
|
|
|
import signal
|
2010-08-30 21:35:00 +00:00
|
|
|
from subprocess import *
|
2016-04-20 16:27:27 +00:00
|
|
|
import sys
|
2010-08-25 18:49:48 +00:00
|
|
|
import time
|
2016-04-20 16:27:27 +00:00
|
|
|
import traceback
|
2018-01-30 10:41:46 +00:00
|
|
|
import distutils.spawn
|
2015-10-20 21:06:05 +00:00
|
|
|
|
Python 3 - Turn on absolute imports, and fix existing imports.
Absolute imports were introduced in Python 2.5 as a feature
(e.g. from __future__ import absolute_import), and made default
in Python 3.
When absolute imports are enabled, the import system changes in
a couple of ways:
1) The `import foo` syntax will *only* search sys.path. If `foo`
isn't in sys.path, it won't be found. Period. Without absolute
imports, the import system will also search the same directory
that the importing file resides in, so that you can easily
import from the same folder.
2) From inside a package, you can use a dot syntax to refer to higher
levels of the current package. For example, if you are in the
package lldbsuite.test.utility, then ..foo refers to
lldbsuite.test.foo. You can use this notation with the
`from X import Y` syntax to write intra-package references. For
example, using the previous locationa s a starting point, writing
`from ..support import seven` would import lldbsuite.support.seven
Since this is now the default behavior in Python 3, this means that
importing from the same directory with `import foo` *no longer works*.
As a result, the only way to have portable code is to force absolute
imports for all versions of Python.
See PEP 0328 [https://www.python.org/dev/peps/pep-0328/] for more
information about absolute and relative imports.
Differential Revision: http://reviews.llvm.org/D14342
Reviewed By: Todd Fiala
llvm-svn: 252191
2015-11-05 19:22:28 +00:00
|
|
|
# Third-party modules
|
|
|
|
import unittest2
|
2015-10-20 21:06:05 +00:00
|
|
|
from six import add_metaclass
|
2015-10-21 17:48:52 +00:00
|
|
|
from six import StringIO as SixStringIO
|
2015-10-26 18:48:24 +00:00
|
|
|
import six
|
Python 3 - Turn on absolute imports, and fix existing imports.
Absolute imports were introduced in Python 2.5 as a feature
(e.g. from __future__ import absolute_import), and made default
in Python 3.
When absolute imports are enabled, the import system changes in
a couple of ways:
1) The `import foo` syntax will *only* search sys.path. If `foo`
isn't in sys.path, it won't be found. Period. Without absolute
imports, the import system will also search the same directory
that the importing file resides in, so that you can easily
import from the same folder.
2) From inside a package, you can use a dot syntax to refer to higher
levels of the current package. For example, if you are in the
package lldbsuite.test.utility, then ..foo refers to
lldbsuite.test.foo. You can use this notation with the
`from X import Y` syntax to write intra-package references. For
example, using the previous locationa s a starting point, writing
`from ..support import seven` would import lldbsuite.support.seven
Since this is now the default behavior in Python 3, this means that
importing from the same directory with `import foo` *no longer works*.
As a result, the only way to have portable code is to force absolute
imports for all versions of Python.
See PEP 0328 [https://www.python.org/dev/peps/pep-0328/] for more
information about absolute and relative imports.
Differential Revision: http://reviews.llvm.org/D14342
Reviewed By: Todd Fiala
llvm-svn: 252191
2015-11-05 19:22:28 +00:00
|
|
|
|
|
|
|
# LLDB modules
|
|
|
|
import lldb
|
2015-12-08 01:15:30 +00:00
|
|
|
from . import configuration
|
2016-02-04 18:03:01 +00:00
|
|
|
from . import decorators
|
2016-02-03 19:12:30 +00:00
|
|
|
from . import lldbplatformutil
|
Python 3 - Turn on absolute imports, and fix existing imports.
Absolute imports were introduced in Python 2.5 as a feature
(e.g. from __future__ import absolute_import), and made default
in Python 3.
When absolute imports are enabled, the import system changes in
a couple of ways:
1) The `import foo` syntax will *only* search sys.path. If `foo`
isn't in sys.path, it won't be found. Period. Without absolute
imports, the import system will also search the same directory
that the importing file resides in, so that you can easily
import from the same folder.
2) From inside a package, you can use a dot syntax to refer to higher
levels of the current package. For example, if you are in the
package lldbsuite.test.utility, then ..foo refers to
lldbsuite.test.foo. You can use this notation with the
`from X import Y` syntax to write intra-package references. For
example, using the previous locationa s a starting point, writing
`from ..support import seven` would import lldbsuite.support.seven
Since this is now the default behavior in Python 3, this means that
importing from the same directory with `import foo` *no longer works*.
As a result, the only way to have portable code is to force absolute
imports for all versions of Python.
See PEP 0328 [https://www.python.org/dev/peps/pep-0328/] for more
information about absolute and relative imports.
Differential Revision: http://reviews.llvm.org/D14342
Reviewed By: Todd Fiala
llvm-svn: 252191
2015-11-05 19:22:28 +00:00
|
|
|
from . import lldbtest_config
|
|
|
|
from . import lldbutil
|
|
|
|
from . import test_categories
|
2016-02-01 18:12:59 +00:00
|
|
|
from lldbsuite.support import encoded_file
|
2016-02-04 18:03:01 +00:00
|
|
|
from lldbsuite.support import funcutils
|
2021-10-29 13:33:56 +02:00
|
|
|
from lldbsuite.support import seven
|
2020-08-19 09:05:11 -07:00
|
|
|
from lldbsuite.test.builders import get_builder
|
2021-10-19 13:49:31 +02:00
|
|
|
from lldbsuite.test_event import build_exception
|
2015-06-05 00:22:49 +00:00
|
|
|
|
2010-10-11 22:25:46 +00:00
|
|
|
# See also dotest.parseOptionsAndInitTestdirs(), where the environment variables
|
2018-12-14 23:02:41 +00:00
|
|
|
# LLDB_COMMAND_TRACE is set from '-t' option.
|
2010-10-11 22:25:46 +00:00
|
|
|
|
|
|
|
# By default, traceAlways is False.
|
2010-08-31 17:42:54 +00:00
|
|
|
if "LLDB_COMMAND_TRACE" in os.environ and os.environ[
|
|
|
|
"LLDB_COMMAND_TRACE"] == "YES":
|
|
|
|
traceAlways = True
|
|
|
|
else:
|
|
|
|
traceAlways = False
|
|
|
|
|
2010-10-11 22:25:46 +00:00
|
|
|
# By default, doCleanup is True.
|
|
|
|
if "LLDB_DO_CLEANUP" in os.environ and os.environ["LLDB_DO_CLEANUP"] == "NO":
|
|
|
|
doCleanup = False
|
|
|
|
else:
|
|
|
|
doCleanup = True
|
|
|
|
|
2010-08-31 17:42:54 +00:00
|
|
|
|
2010-08-09 22:01:17 +00:00
|
|
|
#
|
|
|
|
# Some commonly used assert messages.
|
|
|
|
#
|
|
|
|
|
2010-09-17 22:45:27 +00:00
|
|
|
COMMAND_FAILED_AS_EXPECTED = "Command has failed as expected"
|
|
|
|
|
2010-08-09 22:01:17 +00:00
|
|
|
CURRENT_EXECUTABLE_SET = "Current executable set successfully"
|
|
|
|
|
2010-09-02 21:23:12 +00:00
|
|
|
PROCESS_IS_VALID = "Process is valid"
|
|
|
|
|
|
|
|
PROCESS_KILLED = "Process is killed successfully"
|
|
|
|
|
2010-12-23 01:12:19 +00:00
|
|
|
PROCESS_EXITED = "Process exited successfully"
|
|
|
|
|
|
|
|
PROCESS_STOPPED = "Process status should be stopped"
|
|
|
|
|
2015-07-01 23:56:30 +00:00
|
|
|
RUN_SUCCEEDED = "Process is launched successfully"
|
2010-08-09 22:01:17 +00:00
|
|
|
|
2010-08-09 23:44:24 +00:00
|
|
|
RUN_COMPLETED = "Process exited successfully"
|
2010-08-09 22:01:17 +00:00
|
|
|
|
2010-10-05 19:27:32 +00:00
|
|
|
BACKTRACE_DISPLAYED_CORRECTLY = "Backtrace displayed correctly"
|
|
|
|
|
2010-08-09 23:44:24 +00:00
|
|
|
BREAKPOINT_CREATED = "Breakpoint created successfully"
|
|
|
|
|
2010-12-04 00:07:24 +00:00
|
|
|
BREAKPOINT_STATE_CORRECT = "Breakpoint state is correct"
|
|
|
|
|
2010-08-17 21:33:31 +00:00
|
|
|
BREAKPOINT_PENDING_CREATED = "Pending breakpoint created successfully"
|
|
|
|
|
2019-08-19 23:59:31 +00:00
|
|
|
BREAKPOINT_HIT_ONCE = "Breakpoint resolved with hit count = 1"
|
2010-08-09 22:01:17 +00:00
|
|
|
|
2019-08-19 23:59:31 +00:00
|
|
|
BREAKPOINT_HIT_TWICE = "Breakpoint resolved with hit count = 2"
|
2010-09-30 17:06:24 +00:00
|
|
|
|
2019-08-19 23:59:31 +00:00
|
|
|
BREAKPOINT_HIT_THRICE = "Breakpoint resolved with hit count = 3"
|
2010-10-15 18:07:09 +00:00
|
|
|
|
2012-10-24 18:24:14 +00:00
|
|
|
MISSING_EXPECTED_REGISTERS = "At least one expected register is unavailable."
|
|
|
|
|
2011-06-27 20:05:23 +00:00
|
|
|
OBJECT_PRINTED_CORRECTLY = "Object printed correctly"
|
|
|
|
|
2010-12-09 18:22:12 +00:00
|
|
|
SOURCE_DISPLAYED_CORRECTLY = "Source code displayed correctly"
|
|
|
|
|
2020-11-10 16:01:16 -08:00
|
|
|
STEP_IN_SUCCEEDED = "Thread step-in succeeded"
|
|
|
|
|
2010-09-22 23:00:20 +00:00
|
|
|
STEP_OUT_SUCCEEDED = "Thread step-out succeeded"
|
|
|
|
|
2011-04-15 16:44:48 +00:00
|
|
|
STOPPED_DUE_TO_EXC_BAD_ACCESS = "Process should be stopped due to bad access exception"
|
|
|
|
|
2013-05-17 15:35:15 +00:00
|
|
|
STOPPED_DUE_TO_ASSERT = "Process should be stopped due to an assertion"
|
|
|
|
|
2010-11-10 23:46:38 +00:00
|
|
|
STOPPED_DUE_TO_BREAKPOINT = "Process should be stopped due to breakpoint"
|
2010-11-10 20:20:06 +00:00
|
|
|
|
2010-11-10 23:46:38 +00:00
|
|
|
STOPPED_DUE_TO_BREAKPOINT_WITH_STOP_REASON_AS = "%s, %s" % (
|
|
|
|
STOPPED_DUE_TO_BREAKPOINT, "instead, the actual stop reason is: '%s'")
|
2010-08-09 22:01:17 +00:00
|
|
|
|
2010-10-20 18:38:48 +00:00
|
|
|
STOPPED_DUE_TO_BREAKPOINT_CONDITION = "Stopped due to breakpoint condition"
|
|
|
|
|
2010-12-13 21:49:58 +00:00
|
|
|
STOPPED_DUE_TO_BREAKPOINT_IGNORE_COUNT = "Stopped due to breakpoint and ignore count"
|
|
|
|
|
2019-08-19 23:59:31 +00:00
|
|
|
STOPPED_DUE_TO_BREAKPOINT_JITTED_CONDITION = "Stopped due to breakpoint jitted condition"
|
|
|
|
|
2010-10-14 01:22:03 +00:00
|
|
|
STOPPED_DUE_TO_SIGNAL = "Process state is stopped due to signal"
|
|
|
|
|
2010-08-09 22:01:17 +00:00
|
|
|
STOPPED_DUE_TO_STEP_IN = "Process state is stopped due to step in"
|
|
|
|
|
2011-09-15 21:09:59 +00:00
|
|
|
STOPPED_DUE_TO_WATCHPOINT = "Process should be stopped due to watchpoint"
|
|
|
|
|
2010-08-24 22:07:56 +00:00
|
|
|
DATA_TYPES_DISPLAYED_CORRECTLY = "Data type(s) displayed correctly"
|
|
|
|
|
2010-08-26 20:04:17 +00:00
|
|
|
VALID_BREAKPOINT = "Got a valid breakpoint"
|
|
|
|
|
2010-10-22 18:10:25 +00:00
|
|
|
VALID_BREAKPOINT_LOCATION = "Got a valid breakpoint location"
|
|
|
|
|
2011-05-06 23:26:12 +00:00
|
|
|
VALID_COMMAND_INTERPRETER = "Got a valid command interpreter"
|
|
|
|
|
2010-08-27 23:47:36 +00:00
|
|
|
VALID_FILESPEC = "Got a valid filespec"
|
|
|
|
|
2010-12-08 01:25:21 +00:00
|
|
|
VALID_MODULE = "Got a valid module"
|
|
|
|
|
2010-08-26 20:04:17 +00:00
|
|
|
VALID_PROCESS = "Got a valid process"
|
|
|
|
|
2010-12-08 01:25:21 +00:00
|
|
|
VALID_SYMBOL = "Got a valid symbol"
|
|
|
|
|
2010-08-26 20:04:17 +00:00
|
|
|
VALID_TARGET = "Got a valid target"
|
|
|
|
|
2014-10-22 07:22:56 +00:00
|
|
|
VALID_PLATFORM = "Got a valid platform"
|
|
|
|
|
2012-02-03 20:43:00 +00:00
|
|
|
VALID_TYPE = "Got a valid type"
|
|
|
|
|
2011-07-15 22:28:10 +00:00
|
|
|
VALID_VARIABLE = "Got a valid variable"
|
|
|
|
|
2010-08-25 19:00:04 +00:00
|
|
|
VARIABLES_DISPLAYED_CORRECTLY = "Variable(s) displayed correctly"
|
2010-08-09 22:01:17 +00:00
|
|
|
|
2011-09-15 21:09:59 +00:00
|
|
|
WATCHPOINT_CREATED = "Watchpoint created successfully"
|
2010-08-26 20:04:17 +00:00
|
|
|
|
2016-09-06 20:57:50 +00:00
|
|
|
|
2015-07-01 23:56:30 +00:00
|
|
|
def CMD_MSG(str):
|
2020-08-28 12:30:56 +01:00
|
|
|
'''A generic "Command '%s' did not return successfully" message generator.'''
|
|
|
|
return "Command '%s' did not return successfully" % str
|
2010-11-09 18:42:22 +00:00
|
|
|
|
2016-09-06 20:57:50 +00:00
|
|
|
|
2018-07-27 23:42:34 +00:00
|
|
|
def COMPLETION_MSG(str_before, str_after, completions):
|
2020-08-28 12:30:56 +01:00
|
|
|
'''A generic assertion failed message generator for the completion mechanism.'''
|
2018-07-27 23:42:34 +00:00
|
|
|
return ("'%s' successfully completes to '%s', but completions were:\n%s"
|
|
|
|
% (str_before, str_after, "\n".join(completions)))
|
2012-01-20 23:02:51 +00:00
|
|
|
|
2016-09-06 20:57:50 +00:00
|
|
|
|
2016-03-08 18:58:48 +00:00
|
|
|
def EXP_MSG(str, actual, exe):
|
2020-08-25 16:50:03 +01:00
|
|
|
'''A generic "'%s' returned unexpected result" message generator if exe.
|
|
|
|
Otherwise, it generates "'%s' does not match expected result" message.'''
|
2016-09-06 20:57:50 +00:00
|
|
|
|
2020-08-25 16:50:03 +01:00
|
|
|
return "'%s' %s result, got '%s'" % (
|
|
|
|
str, 'returned unexpected' if exe else 'does not match expected', actual.strip())
|
2016-09-06 20:57:50 +00:00
|
|
|
|
2010-08-09 23:44:24 +00:00
|
|
|
|
2010-10-19 19:11:38 +00:00
|
|
|
def SETTING_MSG(setting):
|
2020-08-28 12:30:56 +01:00
|
|
|
'''A generic "Value of setting '%s' is not correct" message generator.'''
|
|
|
|
return "Value of setting '%s' is not correct" % setting
|
2010-10-19 19:11:38 +00:00
|
|
|
|
2016-09-06 20:57:50 +00:00
|
|
|
|
2010-10-11 23:52:19 +00:00
|
|
|
def line_number(filename, string_to_match):
|
|
|
|
"""Helper function to return the line number of the first matched string."""
|
2016-01-22 23:54:49 +00:00
|
|
|
with io.open(filename, mode='r', encoding="utf-8") as f:
|
2010-10-11 23:52:19 +00:00
|
|
|
for i, line in enumerate(f):
|
|
|
|
if line.find(string_to_match) != -1:
|
|
|
|
# Found our match.
|
2010-10-12 00:09:25 +00:00
|
|
|
return i + 1
|
2011-04-15 16:44:48 +00:00
|
|
|
raise Exception(
|
|
|
|
"Unable to find '%s' within file %s" %
|
|
|
|
(string_to_match, filename))
|
2016-09-06 20:57:50 +00:00
|
|
|
|
add stop column highlighting support
This change introduces optional marking of the column within a source
line where a thread is stopped. This marking will show up when the
source code for a thread stop is displayed, when the debug info
knows the column information, and if the optional column marking is
enabled.
There are two separate methods for handling the marking of the stop
column:
* via ANSI terminal codes, which are added inline to the source line
display. The default ANSI mark-up is to underline the column.
* via a pure text-based caret that is added in the appropriate column
in a newly-inserted blank line underneath the source line in
question.
There are some new options that control how this all works.
* settings set stop-show-column
This takes one of 4 values:
* ansi-or-caret: use the ANSI terminal code mechanism if LLDB
is running with color enabled; if not, use the caret-based,
pure text method (see the "caret" mode below).
* ansi: only use the ANSI terminal code mechanism to highlight
the stop line. If LLDB is running with color disabled, no
stop column marking will occur.
* caret: only use the pure text caret method, which introduces
a newly-inserted line underneath the current line, where
the only character in the new line is a caret that highlights
the stop column in question.
* none: no stop column marking will be attempted.
* settings set stop-show-column-ansi-prefix
This is a text format that indicates the ANSI formatting
code to insert into the stream immediately preceding the
column where the stop column character will be marked up.
It defaults to ${ansi.underline}; however, it can contain
any valid LLDB format codes, e.g.
${ansi.fg.red}${ansi.bold}${ansi.underline}
* settings set stop-show-column-ansi-suffix
This is the text format that specifies the ANSI terminal
codes to end the markup that was started with the prefix
described above. It defaults to: ${ansi.normal}. This
should be sufficient for the common cases.
Significant leg-work was done by Adrian Prantl. (Thanks, Adrian!)
differential review: https://reviews.llvm.org/D20835
reviewers: clayborg, jingham
llvm-svn: 282105
2016-09-21 20:13:14 +00:00
|
|
|
def get_line(filename, line_number):
|
|
|
|
"""Return the text of the line at the 1-based line number."""
|
|
|
|
with io.open(filename, mode='r', encoding="utf-8") as f:
|
|
|
|
return f.readlines()[line_number - 1]
|
2010-10-11 23:52:19 +00:00
|
|
|
|
2010-10-05 19:27:32 +00:00
|
|
|
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)
|
|
|
|
|
2016-09-06 20:57:50 +00:00
|
|
|
|
2012-02-09 02:01:59 +00:00
|
|
|
def is_exe(fpath):
|
|
|
|
"""Returns true if fpath is an executable."""
|
[lldb] Fix race condition between lldb-vscode and stop hooks executor
The race is between these two pieces of code that are executed in two separate
lldb-vscode threads (the first is in the main thread and another is in the
event-handling thread):
```
// lldb-vscode.cpp
g_vsc.debugger.SetAsync(false);
g_vsc.target.Launch(launch_info, error);
g_vsc.debugger.SetAsync(true);
```
```
// Target.cpp
bool old_async = debugger.GetAsyncExecution();
debugger.SetAsyncExecution(true);
debugger.GetCommandInterpreter().HandleCommands(GetCommands(), exc_ctx,
options, result);
debugger.SetAsyncExecution(old_async);
```
The sequence that leads to the bug is this one:
1. Main thread enables synchronous mode and launches the process.
2. When the process is launched, it generates the first stop event.
3. This stop event is catched by the event-handling thread and DoOnRemoval
is invoked.
4. Inside DoOnRemoval, this thread runs stop hooks. And before running stop
hooks, the current synchronization mode is stored into old_async (and
right now it is equal to "false").
5. The main thread finishes the launch and returns to lldb-vscode, the
synchronization mode is restored to asynchronous by lldb-vscode.
6. Event-handling thread finishes stop hooks processing and restores the
synchronization mode according to old_async (i.e. makes the mode synchronous)
7. And now the mode is synchronous while lldb-vscode expects it to be
asynchronous. Synchronous mode forbids the process to broadcast public stop
events, so, VS Code just hangs because lldb-vscode doesn't notify it about
stops.
So, this diff makes the target intercept the first stop event if the process is
launched in the synchronous mode, thus preventing stop hooks execution.
The bug is only present on Windows because other platforms already
intercept this event using their own hijacking listeners.
So, this diff also fixes some problems with lldb-vscode tests on Windows to make
it possible to run the related test. Other tests still can't be enabled because
the debugged program prints something into stdout and LLDB can't intercept this
output and redirect it to lldb-vscode properly.
Reviewed By: jingham
Differential Revision: https://reviews.llvm.org/D119548
2022-02-22 12:48:32 +01:00
|
|
|
if fpath == None:
|
|
|
|
return False
|
|
|
|
if sys.platform == 'win32':
|
|
|
|
if not fpath.endswith(".exe"):
|
|
|
|
fpath += ".exe"
|
2012-02-09 02:01:59 +00:00
|
|
|
return os.path.isfile(fpath) and os.access(fpath, os.X_OK)
|
|
|
|
|
2016-09-06 20:57:50 +00:00
|
|
|
|
2012-02-09 02:01:59 +00:00
|
|
|
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
|
|
|
|
|
2020-08-12 11:27:21 +02:00
|
|
|
class ValueCheck:
|
|
|
|
def __init__(self, name=None, value=None, type=None, summary=None,
|
|
|
|
children=None):
|
|
|
|
"""
|
|
|
|
:param name: The name that the SBValue should have. None if the summary
|
|
|
|
should not be checked.
|
|
|
|
:param summary: The summary that the SBValue should have. None if the
|
|
|
|
summary should not be checked.
|
|
|
|
:param value: The value that the SBValue should have. None if the value
|
|
|
|
should not be checked.
|
|
|
|
:param type: The type that the SBValue result should have. None if the
|
|
|
|
type should not be checked.
|
|
|
|
:param children: A list of ValueChecks that need to match the children
|
|
|
|
of this SBValue. None if children shouldn't be checked.
|
|
|
|
The order of checks is the order of the checks in the
|
|
|
|
list. The number of checks has to match the number of
|
|
|
|
children.
|
|
|
|
"""
|
|
|
|
self.expect_name = name
|
|
|
|
self.expect_value = value
|
|
|
|
self.expect_type = type
|
|
|
|
self.expect_summary = summary
|
|
|
|
self.children = children
|
|
|
|
|
|
|
|
def check_value(self, test_base, val, error_msg=None):
|
|
|
|
"""
|
|
|
|
Checks that the given value matches the currently set properties
|
|
|
|
of this ValueCheck. If a match failed, the given TestBase will
|
|
|
|
be used to emit an error. A custom error message can be specified
|
|
|
|
that will be used to describe failed check for this SBValue (but
|
|
|
|
not errors in the child values).
|
|
|
|
"""
|
|
|
|
|
|
|
|
this_error_msg = error_msg if error_msg else ""
|
|
|
|
this_error_msg += "\nChecking SBValue: " + str(val)
|
|
|
|
|
|
|
|
test_base.assertSuccess(val.GetError())
|
|
|
|
|
|
|
|
if self.expect_name:
|
|
|
|
test_base.assertEqual(self.expect_name, val.GetName(),
|
|
|
|
this_error_msg)
|
|
|
|
if self.expect_value:
|
|
|
|
test_base.assertEqual(self.expect_value, val.GetValue(),
|
|
|
|
this_error_msg)
|
|
|
|
if self.expect_type:
|
|
|
|
test_base.assertEqual(self.expect_type, val.GetDisplayTypeName(),
|
|
|
|
this_error_msg)
|
|
|
|
if self.expect_summary:
|
|
|
|
test_base.assertEqual(self.expect_summary, val.GetSummary(),
|
|
|
|
this_error_msg)
|
|
|
|
if self.children is not None:
|
|
|
|
self.check_value_children(test_base, val, error_msg)
|
|
|
|
|
|
|
|
def check_value_children(self, test_base, val, error_msg=None):
|
|
|
|
"""
|
|
|
|
Checks that the children of a SBValue match a certain structure and
|
|
|
|
have certain properties.
|
|
|
|
|
|
|
|
:param test_base: The current test's TestBase object.
|
|
|
|
:param val: The SBValue to check.
|
|
|
|
"""
|
|
|
|
|
|
|
|
this_error_msg = error_msg if error_msg else ""
|
|
|
|
this_error_msg += "\nChecking SBValue: " + str(val)
|
|
|
|
|
|
|
|
test_base.assertEqual(len(self.children), val.GetNumChildren(), this_error_msg)
|
|
|
|
|
|
|
|
for i in range(0, val.GetNumChildren()):
|
|
|
|
expected_child = self.children[i]
|
|
|
|
actual_child = val.GetChildAtIndex(i)
|
2021-10-25 12:51:19 +02:00
|
|
|
child_error = "Checking child with index " + str(i) + ":\n" + error_msg
|
|
|
|
expected_child.check_value(test_base, actual_child, child_error)
|
2016-09-06 20:57:50 +00:00
|
|
|
|
2015-10-21 17:48:52 +00:00
|
|
|
class recording(SixStringIO):
|
2010-10-15 01:18:29 +00:00
|
|
|
"""
|
|
|
|
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.
|
|
|
|
"""
|
2016-09-06 20:57:50 +00:00
|
|
|
|
2010-10-15 01:18:29 +00:00
|
|
|
def __init__(self, test, trace):
|
2015-10-21 17:48:52 +00:00
|
|
|
"""Create a SixStringIO instance; record the session obj and trace flag."""
|
|
|
|
SixStringIO.__init__(self)
|
2011-08-16 22:06:17 +00:00
|
|
|
# The test might not have undergone the 'setUp(self)' phase yet, so that
|
|
|
|
# the attribute 'session' might not even exist yet.
|
2011-08-16 17:06:45 +00:00
|
|
|
self.session = getattr(test, "session", None) if test else None
|
2010-10-15 01:18:29 +00:00
|
|
|
self.trace = trace
|
|
|
|
|
|
|
|
def __enter__(self):
|
|
|
|
"""
|
|
|
|
Context management protocol on entry to the body of the with statement.
|
2015-10-21 17:48:52 +00:00
|
|
|
Just return the SixStringIO object.
|
2010-10-15 01:18:29 +00:00
|
|
|
"""
|
|
|
|
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
|
2015-10-21 17:48:52 +00:00
|
|
|
recordings to our session object. And close the SixStringIO object, too.
|
2010-10-15 01:18:29 +00:00
|
|
|
"""
|
|
|
|
if self.trace:
|
2015-10-19 23:45:41 +00:00
|
|
|
print(self.getvalue(), file=sys.stderr)
|
Some re-achitecturing of the plugins interface. The caller is now required to
pass in a 'sender' arg to the buildDefault(), buildDsym(), buildDwarf(), and
cleanup() functions. The sender arg will be the test instance itself (i.e.,
an instance of TestBase). This is so that the relevant command execution can be
recorded in the TestBase.session object if sender is available.
The lldbtest.system() command has been modified to pop the 'sender' arg out of
the keyword arguments dictionary and use it as the test instance to facilitate
seesion recordings. An example is in test/types/AbstractBase.py:
def generic_type_tester(self, atoms, quotedDisplay=False):
"""Test that variables with basic types are displayed correctly."""
# First, capture the golden output emitted by the oracle, i.e., the
# series of printf statements.
go = system("./a.out", sender=self)
There are cases when sender is None. This is the case when the @classmethod is
involved in the use of these APIs. When this happens, there is no recording
into a session object, but printing on the sys.stderr is still honored if the
trace flag is ON.
An example is in test/settings/TestSettings.py:
@classmethod
def classCleanup(cls):
system(["/bin/sh", "-c", "rm -f output.txt"])
system(["/bin/sh", "-c", "rm -f stdout.txt"])
llvm-svn: 116648
2010-10-15 23:55:05 +00:00
|
|
|
if self.session:
|
2016-01-27 19:47:28 +00:00
|
|
|
print(self.getvalue(), file=self.session)
|
2010-10-15 01:18:29 +00:00
|
|
|
self.close()
|
|
|
|
|
2016-09-06 20:57:50 +00:00
|
|
|
|
2015-10-20 21:06:05 +00:00
|
|
|
@add_metaclass(abc.ABCMeta)
|
2015-02-04 23:19:15 +00:00
|
|
|
class _BaseProcess(object):
|
|
|
|
|
|
|
|
@abc.abstractproperty
|
|
|
|
def pid(self):
|
|
|
|
"""Returns process PID if has been launched already."""
|
|
|
|
|
|
|
|
@abc.abstractmethod
|
2021-09-27 14:12:29 +02:00
|
|
|
def launch(self, executable, args, extra_env):
|
2015-02-04 23:19:15 +00:00
|
|
|
"""Launches new process with given executable and args."""
|
|
|
|
|
|
|
|
@abc.abstractmethod
|
|
|
|
def terminate(self):
|
|
|
|
"""Terminates previously launched process.."""
|
|
|
|
|
2016-09-06 20:57:50 +00:00
|
|
|
|
2015-02-04 23:19:15 +00:00
|
|
|
class _LocalProcess(_BaseProcess):
|
|
|
|
|
|
|
|
def __init__(self, trace_on):
|
|
|
|
self._proc = None
|
|
|
|
self._trace_on = trace_on
|
2015-04-15 13:35:49 +00:00
|
|
|
self._delayafterterminate = 0.1
|
2015-02-04 23:19:15 +00:00
|
|
|
|
|
|
|
@property
|
|
|
|
def pid(self):
|
|
|
|
return self._proc.pid
|
|
|
|
|
2021-09-27 14:12:29 +02:00
|
|
|
def launch(self, executable, args, extra_env):
|
|
|
|
env=None
|
|
|
|
if extra_env:
|
|
|
|
env = dict(os.environ)
|
|
|
|
env.update([kv.split("=", 1) for kv in extra_env])
|
|
|
|
|
2015-02-04 23:19:15 +00:00
|
|
|
self._proc = Popen(
|
|
|
|
[executable] + args,
|
|
|
|
stdout=open(
|
|
|
|
os.devnull) if not self._trace_on else None,
|
2021-01-14 11:53:53 +01:00
|
|
|
stdin=PIPE,
|
2021-09-27 14:12:29 +02:00
|
|
|
preexec_fn=lldbplatformutil.enable_attach,
|
|
|
|
env=env)
|
2015-02-04 23:19:15 +00:00
|
|
|
|
|
|
|
def terminate(self):
|
|
|
|
if self._proc.poll() is None:
|
2015-04-15 13:35:49 +00:00
|
|
|
# Terminate _proc like it does the pexpect
|
2015-07-07 14:47:34 +00:00
|
|
|
signals_to_try = [
|
|
|
|
sig for sig in [
|
|
|
|
'SIGHUP',
|
|
|
|
'SIGCONT',
|
|
|
|
'SIGINT'] if sig in dir(signal)]
|
|
|
|
for sig in signals_to_try:
|
|
|
|
try:
|
|
|
|
self._proc.send_signal(getattr(signal, sig))
|
|
|
|
time.sleep(self._delayafterterminate)
|
|
|
|
if self._proc.poll() is not None:
|
|
|
|
return
|
|
|
|
except ValueError:
|
|
|
|
pass # Windows says SIGINT is not a valid signal to send
|
2015-02-04 23:19:15 +00:00
|
|
|
self._proc.terminate()
|
2015-04-15 13:35:49 +00:00
|
|
|
time.sleep(self._delayafterterminate)
|
|
|
|
if self._proc.poll() is not None:
|
|
|
|
return
|
|
|
|
self._proc.kill()
|
|
|
|
time.sleep(self._delayafterterminate)
|
2015-02-04 23:19:15 +00:00
|
|
|
|
2015-03-11 13:51:07 +00:00
|
|
|
def poll(self):
|
|
|
|
return self._proc.poll()
|
|
|
|
|
2021-11-04 13:23:12 +01:00
|
|
|
def wait(self, timeout=None):
|
|
|
|
return self._proc.wait(timeout)
|
|
|
|
|
2016-09-06 20:57:50 +00:00
|
|
|
|
2015-02-04 23:19:15 +00:00
|
|
|
class _RemoteProcess(_BaseProcess):
|
|
|
|
|
2015-03-11 13:51:07 +00:00
|
|
|
def __init__(self, install_remote):
|
2015-02-04 23:19:15 +00:00
|
|
|
self._pid = None
|
2015-03-11 13:51:07 +00:00
|
|
|
self._install_remote = install_remote
|
2015-02-04 23:19:15 +00:00
|
|
|
|
|
|
|
@property
|
|
|
|
def pid(self):
|
|
|
|
return self._pid
|
|
|
|
|
2021-09-27 14:12:29 +02:00
|
|
|
def launch(self, executable, args, extra_env):
|
2015-03-11 13:51:07 +00:00
|
|
|
if self._install_remote:
|
|
|
|
src_path = executable
|
2018-02-21 15:33:53 +00:00
|
|
|
dst_path = lldbutil.join_remote_paths(
|
|
|
|
lldb.remote_platform.GetWorkingDirectory(), os.path.basename(executable))
|
2015-03-11 13:51:07 +00:00
|
|
|
|
|
|
|
dst_file_spec = lldb.SBFileSpec(dst_path, False)
|
|
|
|
err = lldb.remote_platform.Install(
|
|
|
|
lldb.SBFileSpec(src_path, True), dst_file_spec)
|
|
|
|
if err.Fail():
|
|
|
|
raise Exception(
|
|
|
|
"remote_platform.Install('%s', '%s') failed: %s" %
|
|
|
|
(src_path, dst_path, err))
|
|
|
|
else:
|
|
|
|
dst_path = executable
|
|
|
|
dst_file_spec = lldb.SBFileSpec(executable, False)
|
2015-02-04 23:19:15 +00:00
|
|
|
|
|
|
|
launch_info = lldb.SBLaunchInfo(args)
|
|
|
|
launch_info.SetExecutableFile(dst_file_spec, True)
|
2015-05-11 17:53:39 +00:00
|
|
|
launch_info.SetWorkingDirectory(
|
|
|
|
lldb.remote_platform.GetWorkingDirectory())
|
2015-02-04 23:19:15 +00:00
|
|
|
|
|
|
|
# Redirect stdout and stderr to /dev/null
|
|
|
|
launch_info.AddSuppressFileAction(1, False, True)
|
|
|
|
launch_info.AddSuppressFileAction(2, False, True)
|
|
|
|
|
2021-09-27 14:12:29 +02:00
|
|
|
if extra_env:
|
|
|
|
launch_info.SetEnvironmentEntries(extra_env, True)
|
|
|
|
|
2015-02-04 23:19:15 +00:00
|
|
|
err = lldb.remote_platform.Launch(launch_info)
|
|
|
|
if err.Fail():
|
|
|
|
raise Exception(
|
|
|
|
"remote_platform.Launch('%s', '%s') failed: %s" %
|
|
|
|
(dst_path, args, err))
|
|
|
|
self._pid = launch_info.GetProcessID()
|
|
|
|
|
|
|
|
def terminate(self):
|
2015-03-11 13:51:07 +00:00
|
|
|
lldb.remote_platform.Kill(self._pid)
|
2015-02-04 23:19:15 +00:00
|
|
|
|
2010-11-01 20:35:01 +00:00
|
|
|
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)
|
|
|
|
|
2016-09-06 20:57:50 +00:00
|
|
|
|
2011-06-20 19:06:20 +00:00
|
|
|
def builder_module():
|
2020-08-19 08:27:54 -07:00
|
|
|
return get_builder(sys.platform)
|
2011-06-20 19:06:20 +00:00
|
|
|
|
2014-12-01 23:21:18 +00:00
|
|
|
|
2011-08-01 18:46:13 +00:00
|
|
|
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.
|
2016-09-06 20:57:50 +00:00
|
|
|
|
2010-10-22 23:15:46 +00:00
|
|
|
"""
|
2012-10-24 21:42:49 +00:00
|
|
|
|
2012-10-24 21:44:48 +00:00
|
|
|
# The concrete subclass should override this attribute.
|
|
|
|
mydir = None
|
2010-07-03 03:41:59 +00:00
|
|
|
|
2010-09-16 01:53:04 +00:00
|
|
|
# Keep track of the old current working directory.
|
|
|
|
oldcwd = None
|
2014-12-01 23:21:18 +00:00
|
|
|
|
2013-12-10 23:19:29 +00:00
|
|
|
@staticmethod
|
|
|
|
def compute_mydir(test_file):
|
2018-02-06 18:22:51 +00:00
|
|
|
'''Subclasses should call this function to correctly calculate the
|
|
|
|
required "mydir" attribute as follows:
|
2016-09-06 20:57:50 +00:00
|
|
|
|
2018-02-06 18:22:51 +00:00
|
|
|
mydir = TestBase.compute_mydir(__file__)
|
|
|
|
'''
|
|
|
|
# /abs/path/to/packages/group/subdir/mytest.py -> group/subdir
|
2020-08-05 11:35:37 -07:00
|
|
|
lldb_test_src = configuration.test_src_root
|
|
|
|
if not test_file.startswith(lldb_test_src):
|
|
|
|
raise Exception(
|
|
|
|
"Test file '%s' must reside within lldb_test_src "
|
|
|
|
"(which is '%s')." % (test_file, lldb_test_src))
|
|
|
|
return os.path.dirname(os.path.relpath(test_file, start=lldb_test_src))
|
2016-09-06 20:57:50 +00:00
|
|
|
|
2011-08-01 19:50:58 +00:00
|
|
|
def TraceOn(self):
|
|
|
|
"""Returns True if we are in trace mode (tracing detailed test execution)."""
|
|
|
|
return traceAlways
|
2016-09-06 20:57:50 +00:00
|
|
|
|
2020-05-25 10:59:39 -07:00
|
|
|
def trace(self, *args,**kwargs):
|
|
|
|
with recording(self, self.TraceOn()) as sbuf:
|
2020-06-03 14:53:30 -07:00
|
|
|
print(*args, file=sbuf, **kwargs)
|
2020-05-25 10:59:39 -07:00
|
|
|
|
2010-09-16 01:53:04 +00:00
|
|
|
@classmethod
|
|
|
|
def setUpClass(cls):
|
2010-10-01 22:59:49 +00:00
|
|
|
"""
|
|
|
|
Python unittest framework class setup fixture.
|
|
|
|
Do current directory manipulation.
|
|
|
|
"""
|
2010-07-03 20:41:42 +00:00
|
|
|
# Fail fast if 'mydir' attribute is not overridden.
|
2010-09-16 01:53:04 +00:00
|
|
|
if not cls.mydir or len(cls.mydir) == 0:
|
2010-07-03 20:41:42 +00:00
|
|
|
raise Exception("Subclasses must override the 'mydir' attribute.")
|
2012-10-24 18:14:21 +00:00
|
|
|
|
2010-07-03 03:41:59 +00:00
|
|
|
# Save old working directory.
|
2010-09-16 01:53:04 +00:00
|
|
|
cls.oldcwd = os.getcwd()
|
2010-07-03 03:41:59 +00:00
|
|
|
|
2020-08-05 08:50:41 -07:00
|
|
|
full_dir = os.path.join(configuration.test_src_root, cls.mydir)
|
|
|
|
if traceAlways:
|
|
|
|
print("Change dir to:", full_dir, file=sys.stderr)
|
|
|
|
os.chdir(full_dir)
|
|
|
|
lldb.SBReproducer.SetWorkingDirectory(full_dir)
|
2015-05-21 19:09:29 +00:00
|
|
|
|
2014-12-01 23:21:18 +00:00
|
|
|
# Set platform context.
|
2016-02-04 23:04:17 +00:00
|
|
|
cls.platformContext = lldbplatformutil.createPlatformContext()
|
2014-12-01 23:21:18 +00:00
|
|
|
|
2010-09-16 01:53:04 +00:00
|
|
|
@classmethod
|
|
|
|
def tearDownClass(cls):
|
2010-10-01 22:59:49 +00:00
|
|
|
"""
|
|
|
|
Python unittest framework class teardown fixture.
|
|
|
|
Do class-wide cleanup.
|
|
|
|
"""
|
2010-09-16 01:53:04 +00:00
|
|
|
|
2015-12-11 19:21:49 +00:00
|
|
|
if doCleanup:
|
2010-10-11 22:25:46 +00:00
|
|
|
# First, let's do the platform-specific cleanup.
|
2011-06-20 19:06:20 +00:00
|
|
|
module = builder_module()
|
2015-08-26 19:44:56 +00:00
|
|
|
module.cleanup()
|
2010-09-16 01:53:04 +00:00
|
|
|
|
2010-10-11 22:25:46 +00:00
|
|
|
# Subclass might have specific cleanup function defined.
|
|
|
|
if getattr(cls, "classCleanup", None):
|
|
|
|
if traceAlways:
|
2015-10-19 23:45:41 +00:00
|
|
|
print(
|
|
|
|
"Call class-specific cleanup function for class:",
|
|
|
|
cls,
|
|
|
|
file=sys.stderr)
|
2010-10-11 22:25:46 +00:00
|
|
|
try:
|
|
|
|
cls.classCleanup()
|
|
|
|
except:
|
|
|
|
exc_type, exc_value, exc_tb = sys.exc_info()
|
|
|
|
traceback.print_exception(exc_type, exc_value, exc_tb)
|
2010-09-16 01:53:04 +00:00
|
|
|
|
|
|
|
# Restore old working directory.
|
|
|
|
if traceAlways:
|
2015-10-19 23:45:41 +00:00
|
|
|
print("Restore dir to:", cls.oldcwd, file=sys.stderr)
|
2010-09-16 01:53:04 +00:00
|
|
|
os.chdir(cls.oldcwd)
|
|
|
|
|
2015-05-10 22:01:59 +00:00
|
|
|
def enableLogChannelsForCurrentTest(self):
|
|
|
|
if len(lldbtest_config.channels) == 0:
|
|
|
|
return
|
|
|
|
|
|
|
|
# if debug channels are specified in lldbtest_config.channels,
|
|
|
|
# create a new set of log files for every test
|
|
|
|
log_basename = self.getLogBasenameForCurrentTest()
|
|
|
|
|
|
|
|
# confirm that the file is writeable
|
|
|
|
host_log_path = "{}-host.log".format(log_basename)
|
|
|
|
open(host_log_path, 'w').close()
|
2020-07-14 13:08:52 +02:00
|
|
|
self.log_files.append(host_log_path)
|
2015-05-10 22:01:59 +00:00
|
|
|
|
|
|
|
log_enable = "log enable -Tpn -f {} ".format(host_log_path)
|
|
|
|
for channel_with_categories in lldbtest_config.channels:
|
|
|
|
channel_then_categories = channel_with_categories.split(' ', 1)
|
|
|
|
channel = channel_then_categories[0]
|
|
|
|
if len(channel_then_categories) > 1:
|
|
|
|
categories = channel_then_categories[1]
|
|
|
|
else:
|
|
|
|
categories = "default"
|
|
|
|
|
2016-07-04 09:59:45 +00:00
|
|
|
if channel == "gdb-remote" and lldb.remote_platform is None:
|
2015-05-10 22:01:59 +00:00
|
|
|
# communicate gdb-remote categories to debugserver
|
|
|
|
os.environ["LLDB_DEBUGSERVER_LOG_FLAGS"] = categories
|
|
|
|
|
|
|
|
self.ci.HandleCommand(
|
|
|
|
log_enable + channel_with_categories, self.res)
|
|
|
|
if not self.res.Succeeded():
|
|
|
|
raise Exception(
|
|
|
|
'log enable failed (check LLDB_LOG_OPTION env variable)')
|
|
|
|
|
|
|
|
# Communicate log path name to debugserver & lldb-server
|
2016-07-04 09:59:45 +00:00
|
|
|
# For remote debugging, these variables need to be set when starting the platform
|
|
|
|
# instance.
|
|
|
|
if lldb.remote_platform is None:
|
|
|
|
server_log_path = "{}-server.log".format(log_basename)
|
|
|
|
open(server_log_path, 'w').close()
|
2020-07-14 13:08:52 +02:00
|
|
|
self.log_files.append(server_log_path)
|
2016-07-04 09:59:45 +00:00
|
|
|
os.environ["LLDB_DEBUGSERVER_LOG_FILE"] = server_log_path
|
2015-05-10 22:01:59 +00:00
|
|
|
|
2016-07-04 09:59:45 +00:00
|
|
|
# Communicate channels to lldb-server
|
|
|
|
os.environ["LLDB_SERVER_LOG_CHANNELS"] = ":".join(
|
|
|
|
lldbtest_config.channels)
|
2015-05-10 22:01:59 +00:00
|
|
|
|
2016-07-04 09:59:45 +00:00
|
|
|
self.addTearDownHook(self.disableLogChannelsForCurrentTest)
|
2015-05-10 22:01:59 +00:00
|
|
|
|
|
|
|
def disableLogChannelsForCurrentTest(self):
|
|
|
|
# close all log files that we opened
|
|
|
|
for channel_and_categories in lldbtest_config.channels:
|
|
|
|
# channel format - <channel-name> [<category0> [<category1> ...]]
|
|
|
|
channel = channel_and_categories.split(' ', 1)[0]
|
|
|
|
self.ci.HandleCommand("log disable " + channel, self.res)
|
|
|
|
if not self.res.Succeeded():
|
|
|
|
raise Exception(
|
|
|
|
'log disable failed (check LLDB_LOG_OPTION env variable)')
|
|
|
|
|
2016-07-04 09:59:45 +00:00
|
|
|
# Retrieve the server log (if any) from the remote system. It is assumed the server log
|
|
|
|
# is writing to the "server.log" file in the current test directory. This can be
|
|
|
|
# achieved by setting LLDB_DEBUGSERVER_LOG_FILE="server.log" when starting remote
|
2020-07-14 13:08:52 +02:00
|
|
|
# platform.
|
2016-07-04 09:59:45 +00:00
|
|
|
if lldb.remote_platform:
|
2020-07-14 13:08:52 +02:00
|
|
|
server_log_path = self.getLogBasenameForCurrentTest() + "-server.log"
|
|
|
|
if lldb.remote_platform.Get(
|
|
|
|
lldb.SBFileSpec("server.log"),
|
|
|
|
lldb.SBFileSpec(server_log_path)).Success():
|
|
|
|
self.log_files.append(server_log_path)
|
2016-07-04 09:59:45 +00:00
|
|
|
|
|
|
|
def setPlatformWorkingDir(self):
|
|
|
|
if not lldb.remote_platform or not configuration.lldb_platform_working_dir:
|
|
|
|
return
|
|
|
|
|
2018-02-16 11:39:38 +00:00
|
|
|
components = self.mydir.split(os.path.sep) + [str(self.test_number), self.getBuildDirBasename()]
|
2017-03-20 16:07:17 +00:00
|
|
|
remote_test_dir = configuration.lldb_platform_working_dir
|
|
|
|
for c in components:
|
|
|
|
remote_test_dir = lldbutil.join_remote_paths(remote_test_dir, c)
|
|
|
|
error = lldb.remote_platform.MakeDirectory(
|
|
|
|
remote_test_dir, 448) # 448 = 0o700
|
|
|
|
if error.Fail():
|
|
|
|
raise Exception("making remote directory '%s': %s" % (
|
|
|
|
remote_test_dir, error))
|
|
|
|
|
|
|
|
lldb.remote_platform.SetWorkingDirectory(remote_test_dir)
|
|
|
|
|
|
|
|
# This function removes all files from the current working directory while leaving
|
2020-04-07 01:06:02 +09:00
|
|
|
# the directories in place. The cleanup is required to reduce the disk space required
|
2017-09-25 18:19:39 +00:00
|
|
|
# by the test suite while leaving the directories untouched is neccessary because
|
2017-03-20 16:07:17 +00:00
|
|
|
# sub-directories might belong to an other test
|
|
|
|
def clean_working_directory():
|
|
|
|
# TODO: Make it working on Windows when we need it for remote debugging support
|
|
|
|
# TODO: Replace the heuristic to remove the files with a logic what collects the
|
|
|
|
# list of files we have to remove during test runs.
|
|
|
|
shell_cmd = lldb.SBPlatformShellCommand(
|
|
|
|
"rm %s/*" % remote_test_dir)
|
|
|
|
lldb.remote_platform.Run(shell_cmd)
|
|
|
|
self.addTearDownHook(clean_working_directory)
|
2016-07-04 09:59:45 +00:00
|
|
|
|
2018-01-30 18:29:16 +00:00
|
|
|
def getSourceDir(self):
|
|
|
|
"""Return the full path to the current test."""
|
2020-08-05 08:50:41 -07:00
|
|
|
return os.path.join(configuration.test_src_root, self.mydir)
|
2018-01-30 18:29:16 +00:00
|
|
|
|
2018-02-16 09:21:11 +00:00
|
|
|
def getBuildDirBasename(self):
|
|
|
|
return self.__class__.__module__ + "." + self.testMethodName
|
|
|
|
|
2018-01-30 18:29:16 +00:00
|
|
|
def getBuildDir(self):
|
|
|
|
"""Return the full path to the current test."""
|
2020-06-02 16:49:03 -07:00
|
|
|
return os.path.join(configuration.test_build_dir, self.mydir,
|
2018-02-16 09:21:11 +00:00
|
|
|
self.getBuildDirBasename())
|
2018-07-27 22:20:59 +00:00
|
|
|
|
2018-01-30 18:29:16 +00:00
|
|
|
def makeBuildDir(self):
|
[dotest] Clean up test folder clean-up
Summary:
This patch implements a unified way of cleaning the build folder of each
test. This is done by completely removing the build folder before each
test, in the respective setUp() method. Previously, we were using a
combination of several methods, each with it's own drawbacks:
- nuking the entire build tree before running dotest: the issue here is
that this did not take place if you ran dotest manually
- running "make clean" before the main "make" target: this relied on the
clean command being correctly implemented. This was usually true, but
not always.
- for files which were not produced by make, each python file was
responsible for ensuring their deleting, using a variety of methods.
With this approach, the previous methods become redundant. I remove the
first two, since they are centralized. For the other various bits of
clean-up code in python files, I indend to delete it when I come
across it.
Reviewers: aprantl
Subscribers: emaste, ki.stfu, mgorny, eraman, lldb-commits
Differential Revision: https://reviews.llvm.org/D44526
llvm-svn: 327703
2018-03-16 12:04:46 +00:00
|
|
|
"""Create the test-specific working directory, deleting any previous
|
|
|
|
contents."""
|
|
|
|
bdir = self.getBuildDir()
|
|
|
|
if os.path.isdir(bdir):
|
|
|
|
shutil.rmtree(bdir)
|
|
|
|
lldbutil.mkdir_p(bdir)
|
2018-07-27 22:20:59 +00:00
|
|
|
|
2018-01-23 16:43:01 +00:00
|
|
|
def getBuildArtifact(self, name="a.out"):
|
|
|
|
"""Return absolute path to an artifact in the test's build directory."""
|
2018-01-30 18:29:16 +00:00
|
|
|
return os.path.join(self.getBuildDir(), name)
|
2018-07-27 22:20:59 +00:00
|
|
|
|
2021-10-21 14:21:36 -07:00
|
|
|
def getSourcePath(self, name):
|
|
|
|
"""Return absolute path to a file in the test's source directory."""
|
|
|
|
return os.path.join(self.getSourceDir(), name)
|
|
|
|
|
2019-09-05 07:35:45 +00:00
|
|
|
@classmethod
|
|
|
|
def setUpCommands(cls):
|
|
|
|
commands = [
|
2020-03-11 19:51:40 +03:00
|
|
|
# First of all, clear all settings to have clean state of global properties.
|
|
|
|
"settings clear -all",
|
|
|
|
|
2019-07-29 16:10:16 +00:00
|
|
|
# Disable Spotlight lookup. The testsuite creates
|
|
|
|
# different binaries with the same UUID, because they only
|
|
|
|
# differ in the debug info, which is not being hashed.
|
|
|
|
"settings set symbols.enable-external-lookup false",
|
|
|
|
|
2020-08-05 10:02:51 -07:00
|
|
|
# Inherit the TCC permissions from the inferior's parent.
|
|
|
|
"settings set target.inherit-tcc true",
|
|
|
|
|
2020-12-09 18:39:29 -08:00
|
|
|
# Kill rather than detach from the inferior if something goes wrong.
|
|
|
|
"settings set target.detach-on-error false",
|
|
|
|
|
2020-02-24 09:04:18 +01:00
|
|
|
# Disable fix-its by default so that incorrect expressions in tests don't
|
|
|
|
# pass just because Clang thinks it has a fix-it.
|
|
|
|
"settings set target.auto-apply-fixits false",
|
|
|
|
|
2019-07-29 16:10:16 +00:00
|
|
|
# Testsuite runs in parallel and the host can have also other load.
|
2019-09-05 07:35:45 +00:00
|
|
|
"settings set plugin.process.gdb-remote.packet-timeout 60",
|
|
|
|
|
|
|
|
'settings set symbols.clang-modules-cache-path "{}"'.format(
|
2019-10-10 17:27:09 +00:00
|
|
|
configuration.lldb_module_cache_dir),
|
2019-09-05 07:35:45 +00:00
|
|
|
"settings set use-color false",
|
|
|
|
]
|
2020-03-05 10:12:54 +03:00
|
|
|
|
|
|
|
# Set any user-overridden settings.
|
|
|
|
for setting, value in configuration.settings:
|
|
|
|
commands.append('setting set %s %s'%(setting, value))
|
|
|
|
|
2019-09-05 07:35:45 +00:00
|
|
|
# Make sure that a sanitizer LLDB's environment doesn't get passed on.
|
|
|
|
if cls.platformContext and cls.platformContext.shlib_environment_var in os.environ:
|
|
|
|
commands.append('settings set target.env-vars {}='.format(
|
|
|
|
cls.platformContext.shlib_environment_var))
|
|
|
|
|
|
|
|
# Set environment variables for the inferior.
|
|
|
|
if lldbtest_config.inferior_env:
|
|
|
|
commands.append('settings set target.env-vars {}'.format(
|
|
|
|
lldbtest_config.inferior_env))
|
|
|
|
return commands
|
2019-07-29 16:10:16 +00:00
|
|
|
|
2011-08-01 18:46:13 +00:00
|
|
|
def setUp(self):
|
2011-08-01 19:50:58 +00:00
|
|
|
"""Fixture for unittest test case setup.
|
|
|
|
|
|
|
|
It works with the test driver to conditionally skip tests and does other
|
|
|
|
initializations."""
|
2011-08-01 18:46:13 +00:00
|
|
|
#import traceback
|
|
|
|
# traceback.print_stack()
|
|
|
|
|
2013-08-06 15:02:32 +00:00
|
|
|
if "LIBCXX_PATH" in os.environ:
|
|
|
|
self.libcxxPath = os.environ["LIBCXX_PATH"]
|
|
|
|
else:
|
|
|
|
self.libcxxPath = None
|
|
|
|
|
2018-08-16 17:59:38 +00:00
|
|
|
if "LLDBVSCODE_EXEC" in os.environ:
|
|
|
|
self.lldbVSCodeExec = os.environ["LLDBVSCODE_EXEC"]
|
|
|
|
else:
|
|
|
|
self.lldbVSCodeExec = None
|
|
|
|
|
2019-07-29 16:10:16 +00:00
|
|
|
self.lldbOption = " ".join(
|
|
|
|
"-o '" + s + "'" for s in self.setUpCommands())
|
2019-06-17 14:46:17 +00:00
|
|
|
|
2011-10-07 19:21:09 +00:00
|
|
|
# If we spawn an lldb process for test (via pexpect), do not load the
|
|
|
|
# init file unless told otherwise.
|
2019-06-17 14:46:17 +00:00
|
|
|
if os.environ.get("NO_LLDBINIT") != "NO":
|
|
|
|
self.lldbOption += " --no-lldbinit"
|
2011-08-02 22:54:37 +00:00
|
|
|
|
2011-08-01 21:13:26 +00:00
|
|
|
# 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
|
|
|
|
|
|
|
|
# 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
|
|
|
|
|
2011-08-01 19:50:58 +00:00
|
|
|
# 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
|
|
|
|
|
2013-02-15 21:21:52 +00:00
|
|
|
# List of spawned subproces.Popen objects
|
|
|
|
self.subprocesses = []
|
|
|
|
|
2020-07-14 13:08:52 +02:00
|
|
|
# List of log files produced by the current test.
|
|
|
|
self.log_files = []
|
|
|
|
|
2020-12-04 11:42:36 +01:00
|
|
|
# Create the build directory.
|
|
|
|
# The logs are stored in the build directory, so we have to create it
|
|
|
|
# before creating the first log file.
|
|
|
|
self.makeBuildDir()
|
|
|
|
|
2020-07-14 13:08:52 +02:00
|
|
|
session_file = self.getLogBasenameForCurrentTest()+".log"
|
|
|
|
self.log_files.append(session_file)
|
2015-05-21 18:20:21 +00:00
|
|
|
|
2015-11-07 01:08:15 +00:00
|
|
|
# Python 3 doesn't support unbuffered I/O in text mode. Open buffered.
|
2016-02-01 18:12:59 +00:00
|
|
|
self.session = encoded_file.open(session_file, "utf-8", mode="w")
|
2011-08-01 19:50:58 +00:00
|
|
|
|
|
|
|
# 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.
|
2015-08-26 19:44:56 +00:00
|
|
|
self.__cleanup_errored__ = False
|
2011-08-01 19:50:58 +00:00
|
|
|
self.__errored__ = False
|
|
|
|
self.__failed__ = False
|
|
|
|
self.__expected__ = False
|
|
|
|
# We are also interested in unexpected success.
|
|
|
|
self.__unexpected__ = False
|
2011-08-16 00:48:58 +00:00
|
|
|
# And skipped tests.
|
|
|
|
self.__skipped__ = False
|
2011-08-01 19:50:58 +00:00
|
|
|
|
|
|
|
# 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
|
|
|
|
|
2014-12-02 21:32:44 +00:00
|
|
|
if self.platformContext:
|
|
|
|
# set environment variable names for finding shared libraries
|
|
|
|
self.dylibPath = self.platformContext.shlib_environment_var
|
2012-11-26 21:21:11 +00:00
|
|
|
|
2020-03-05 10:12:54 +03:00
|
|
|
# Create the debugger instance.
|
|
|
|
self.dbg = lldb.SBDebugger.Create()
|
|
|
|
# Copy selected platform from a global instance if it exists.
|
|
|
|
if lldb.selected_platform is not None:
|
|
|
|
self.dbg.SetSelectedPlatform(lldb.selected_platform)
|
2015-05-10 22:01:59 +00:00
|
|
|
|
|
|
|
if not self.dbg:
|
|
|
|
raise Exception('Invalid debugger instance')
|
|
|
|
|
|
|
|
# Retrieve the associated command interpreter instance.
|
|
|
|
self.ci = self.dbg.GetCommandInterpreter()
|
|
|
|
if not self.ci:
|
|
|
|
raise Exception('Could not get the command interpreter')
|
|
|
|
|
|
|
|
# And the result object.
|
|
|
|
self.res = lldb.SBCommandReturnObject()
|
|
|
|
|
2016-07-04 09:59:45 +00:00
|
|
|
self.setPlatformWorkingDir()
|
2015-05-10 22:01:59 +00:00
|
|
|
self.enableLogChannelsForCurrentTest()
|
|
|
|
|
2020-08-28 15:43:35 -07:00
|
|
|
self.lib_lldb = None
|
2016-10-31 04:48:10 +00:00
|
|
|
self.framework_dir = None
|
2020-08-28 15:43:35 -07:00
|
|
|
self.darwinWithFramework = False
|
|
|
|
|
|
|
|
if sys.platform.startswith("darwin") and configuration.lldb_framework_path:
|
|
|
|
framework = configuration.lldb_framework_path
|
|
|
|
lib = os.path.join(framework, 'LLDB')
|
|
|
|
if os.path.exists(lib):
|
|
|
|
self.framework_dir = os.path.dirname(framework)
|
|
|
|
self.lib_lldb = lib
|
|
|
|
self.darwinWithFramework = self.platformIsDarwin()
|
|
|
|
|
2013-02-19 16:08:57 +00:00
|
|
|
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))
|
|
|
|
|
2013-02-15 21:21:52 +00:00
|
|
|
def cleanupSubprocesses(self):
|
2020-07-15 09:59:54 -07:00
|
|
|
# Terminate subprocesses in reverse order from how they were created.
|
|
|
|
for p in reversed(self.subprocesses):
|
2015-02-04 23:19:15 +00:00
|
|
|
p.terminate()
|
2013-02-15 21:21:52 +00:00
|
|
|
del p
|
2020-07-14 12:12:05 -07:00
|
|
|
del self.subprocesses[:]
|
2013-02-15 21:21:52 +00:00
|
|
|
|
2021-09-27 14:12:29 +02:00
|
|
|
def spawnSubprocess(self, executable, args=[], extra_env=None, install_remote=True):
|
2013-02-15 21:21:52 +00:00
|
|
|
""" Creates a subprocess.Popen object with the specified executable and arguments,
|
|
|
|
saves it in self.subprocesses, and returns the object.
|
|
|
|
"""
|
2015-03-11 13:51:07 +00:00
|
|
|
proc = _RemoteProcess(
|
|
|
|
install_remote) if lldb.remote_platform else _LocalProcess(self.TraceOn())
|
2021-09-27 14:12:29 +02:00
|
|
|
proc.launch(executable, args, extra_env=extra_env)
|
2013-02-15 21:21:52 +00:00
|
|
|
self.subprocesses.append(proc)
|
|
|
|
return proc
|
|
|
|
|
2011-08-01 19:50:58 +00:00
|
|
|
def HideStdout(self):
|
|
|
|
"""Hide output to stdout from the user.
|
|
|
|
|
|
|
|
During test execution, there might be cases where we don't want to show the
|
|
|
|
standard output to the user. For example,
|
|
|
|
|
2015-10-23 17:04:29 +00:00
|
|
|
self.runCmd(r'''sc print("\n\n\tHello!\n")''')
|
2011-08-01 19:50:58 +00:00
|
|
|
|
|
|
|
tests whether command abbreviation for 'script' works or not. There is no
|
|
|
|
need to show the 'Hello' output to the user as long as the 'script' command
|
|
|
|
succeeds and we are not in TraceOn() mode (see the '-t' option).
|
|
|
|
|
|
|
|
In this case, the test method calls self.HideStdout(self) to redirect the
|
|
|
|
sys.stdout to a null device, and restores the sys.stdout upon teardown.
|
|
|
|
|
|
|
|
Note that you should only call this method at most once during a test case
|
|
|
|
execution. Any subsequent call has no effect at all."""
|
|
|
|
if self.sys_stdout_hidden:
|
|
|
|
return
|
|
|
|
|
|
|
|
self.sys_stdout_hidden = True
|
|
|
|
old_stdout = sys.stdout
|
|
|
|
sys.stdout = open(os.devnull, 'w')
|
2016-09-06 20:57:50 +00:00
|
|
|
|
2011-08-01 19:50:58 +00:00
|
|
|
def restore_stdout():
|
|
|
|
sys.stdout = old_stdout
|
|
|
|
self.addTearDownHook(restore_stdout)
|
|
|
|
|
|
|
|
# =======================================================================
|
|
|
|
# Methods for customized teardown cleanups as well as execution of hooks.
|
|
|
|
# =======================================================================
|
|
|
|
|
|
|
|
def setTearDownCleanup(self, dictionary=None):
|
2020-04-07 01:06:02 +09:00
|
|
|
"""Register a cleanup action at tearDown() time with a dictionary"""
|
2011-08-01 19:50:58 +00:00
|
|
|
self.dict = dictionary
|
|
|
|
self.doTearDownCleanup = True
|
|
|
|
|
|
|
|
def addTearDownCleanup(self, dictionary):
|
2020-04-07 01:06:02 +09:00
|
|
|
"""Add a cleanup action at tearDown() time with a dictionary"""
|
2011-08-01 19:50:58 +00:00
|
|
|
self.dicts.append(dictionary)
|
|
|
|
self.doTearDownCleanups = True
|
|
|
|
|
|
|
|
def addTearDownHook(self, hook):
|
|
|
|
"""
|
|
|
|
Add a function to be run during tearDown() time.
|
|
|
|
|
|
|
|
Hooks are executed in a first come first serve manner.
|
|
|
|
"""
|
2015-10-26 18:48:24 +00:00
|
|
|
if six.callable(hook):
|
2011-08-01 19:50:58 +00:00
|
|
|
with recording(self, traceAlways) as sbuf:
|
2015-10-19 23:45:41 +00:00
|
|
|
print(
|
|
|
|
"Adding tearDown hook:",
|
|
|
|
getsource_if_available(hook),
|
|
|
|
file=sbuf)
|
2011-08-01 19:50:58 +00:00
|
|
|
self.hooks.append(hook)
|
2016-09-06 20:57:50 +00:00
|
|
|
|
2014-11-05 21:31:57 +00:00
|
|
|
return self
|
2011-08-01 19:50:58 +00:00
|
|
|
|
2014-10-16 23:02:14 +00:00
|
|
|
def deletePexpectChild(self):
|
2011-08-01 21:13:26 +00:00
|
|
|
# This is for the case of directly spawning 'lldb' and interacting with it
|
|
|
|
# using pexpect.
|
|
|
|
if self.child and self.child.isalive():
|
2014-07-22 16:19:29 +00:00
|
|
|
import pexpect
|
2011-08-01 21:13:26 +00:00
|
|
|
with recording(self, traceAlways) as sbuf:
|
2015-10-19 23:45:41 +00:00
|
|
|
print("tearing down the child process....", file=sbuf)
|
2011-08-01 21:13:26 +00:00
|
|
|
try:
|
2013-02-22 00:41:26 +00:00
|
|
|
if self.child_in_script_interpreter:
|
|
|
|
self.child.sendline('quit()')
|
|
|
|
self.child.expect_exact(self.child_prompt)
|
|
|
|
self.child.sendline(
|
|
|
|
'settings set interpreter.prompt-on-quit false')
|
|
|
|
self.child.sendline('quit')
|
2011-08-01 21:13:26 +00:00
|
|
|
self.child.expect(pexpect.EOF)
|
2015-02-11 21:41:58 +00:00
|
|
|
except (ValueError, pexpect.ExceptionPexpect):
|
|
|
|
# child is already terminated
|
|
|
|
pass
|
|
|
|
except OSError as exception:
|
|
|
|
import errno
|
|
|
|
if exception.errno != errno.EIO:
|
|
|
|
# unexpected error
|
|
|
|
raise
|
2013-02-22 00:41:26 +00:00
|
|
|
# child is already terminated
|
2014-11-06 17:52:15 +00:00
|
|
|
finally:
|
|
|
|
# Give it one final blow to make sure the child is terminated.
|
|
|
|
self.child.close()
|
2014-10-16 23:02:14 +00:00
|
|
|
|
|
|
|
def tearDown(self):
|
|
|
|
"""Fixture for unittest test case teardown."""
|
|
|
|
self.deletePexpectChild()
|
|
|
|
|
2011-08-01 19:50:58 +00:00
|
|
|
# Check and run any hook functions.
|
|
|
|
for hook in reversed(self.hooks):
|
|
|
|
with recording(self, traceAlways) as sbuf:
|
2015-10-19 23:45:41 +00:00
|
|
|
print(
|
|
|
|
"Executing tearDown hook:",
|
|
|
|
getsource_if_available(hook),
|
|
|
|
file=sbuf)
|
2016-02-04 18:03:01 +00:00
|
|
|
if funcutils.requires_self(hook):
|
2014-11-05 21:31:57 +00:00
|
|
|
hook(self)
|
|
|
|
else:
|
|
|
|
hook() # try the plain call and hope it works
|
2011-08-01 19:50:58 +00:00
|
|
|
|
|
|
|
del self.hooks
|
|
|
|
|
|
|
|
# Perform registered teardown cleanup.
|
|
|
|
if doCleanup and self.doTearDownCleanup:
|
2011-11-17 19:57:27 +00:00
|
|
|
self.cleanup(dictionary=self.dict)
|
2011-08-01 19:50:58 +00:00
|
|
|
|
|
|
|
# In rare cases where there are multiple teardown cleanups added.
|
|
|
|
if doCleanup and self.doTearDownCleanups:
|
|
|
|
if self.dicts:
|
|
|
|
for dict in reversed(self.dicts):
|
2011-11-17 19:57:27 +00:00
|
|
|
self.cleanup(dictionary=dict)
|
2011-08-01 19:50:58 +00:00
|
|
|
|
2020-07-14 12:12:05 -07:00
|
|
|
# Remove subprocesses created by the test.
|
|
|
|
self.cleanupSubprocesses()
|
|
|
|
|
2020-03-05 10:12:54 +03:00
|
|
|
# This must be the last statement, otherwise teardown hooks or other
|
|
|
|
# lines might depend on this still being active.
|
|
|
|
lldb.SBDebugger.Destroy(self.dbg)
|
|
|
|
del self.dbg
|
|
|
|
|
2020-08-17 10:56:02 +02:00
|
|
|
# All modules should be orphaned now so that they can be cleared from
|
|
|
|
# the shared module cache.
|
|
|
|
lldb.SBModule.GarbageCollectAllocatedModules()
|
|
|
|
|
2021-09-29 22:32:21 -07:00
|
|
|
# Assert that the global module cache is empty.
|
|
|
|
self.assertEqual(lldb.SBModule.GetNumberAllocatedModules(), 0)
|
2020-08-17 10:56:02 +02:00
|
|
|
|
|
|
|
|
2011-08-01 19:50:58 +00:00
|
|
|
# =========================================================
|
|
|
|
# Various callbacks to allow introspection of test progress
|
|
|
|
# =========================================================
|
|
|
|
|
|
|
|
def markError(self):
|
|
|
|
"""Callback invoked when an error (unexpected exception) errored."""
|
|
|
|
self.__errored__ = True
|
|
|
|
with recording(self, False) as sbuf:
|
|
|
|
# False because there's no need to write "ERROR" to the stderr twice.
|
|
|
|
# Once by the Python unittest framework, and a second time by us.
|
2015-10-19 23:45:41 +00:00
|
|
|
print("ERROR", file=sbuf)
|
2011-08-01 19:50:58 +00:00
|
|
|
|
2015-08-26 19:44:56 +00:00
|
|
|
def markCleanupError(self):
|
|
|
|
"""Callback invoked when an error occurs while a test is cleaning up."""
|
|
|
|
self.__cleanup_errored__ = True
|
|
|
|
with recording(self, False) as sbuf:
|
|
|
|
# False because there's no need to write "CLEANUP_ERROR" to the stderr twice.
|
|
|
|
# Once by the Python unittest framework, and a second time by us.
|
2015-10-19 23:45:41 +00:00
|
|
|
print("CLEANUP_ERROR", file=sbuf)
|
2015-08-26 19:44:56 +00:00
|
|
|
|
2011-08-01 19:50:58 +00:00
|
|
|
def markFailure(self):
|
|
|
|
"""Callback invoked when a failure (test assertion failure) occurred."""
|
|
|
|
self.__failed__ = True
|
|
|
|
with recording(self, False) as sbuf:
|
|
|
|
# False because there's no need to write "FAIL" to the stderr twice.
|
|
|
|
# Once by the Python unittest framework, and a second time by us.
|
2015-10-19 23:45:41 +00:00
|
|
|
print("FAIL", file=sbuf)
|
2011-08-01 19:50:58 +00:00
|
|
|
|
2013-02-23 01:05:23 +00:00
|
|
|
def markExpectedFailure(self, err, bugnumber):
|
2011-08-01 19:50:58 +00:00
|
|
|
"""Callback invoked when an expected failure/error occurred."""
|
|
|
|
self.__expected__ = True
|
|
|
|
with recording(self, False) as sbuf:
|
|
|
|
# False because there's no need to write "expected failure" to the
|
|
|
|
# stderr twice.
|
|
|
|
# Once by the Python unittest framework, and a second time by us.
|
2013-02-23 01:05:23 +00:00
|
|
|
if bugnumber is None:
|
2015-10-19 23:45:41 +00:00
|
|
|
print("expected failure", file=sbuf)
|
2013-02-23 01:05:23 +00:00
|
|
|
else:
|
2015-10-19 23:45:41 +00:00
|
|
|
print(
|
|
|
|
"expected failure (problem id:" + str(bugnumber) + ")",
|
|
|
|
file=sbuf)
|
2011-08-01 19:50:58 +00:00
|
|
|
|
2011-08-15 23:09:08 +00:00
|
|
|
def markSkippedTest(self):
|
|
|
|
"""Callback invoked when a test is skipped."""
|
|
|
|
self.__skipped__ = True
|
|
|
|
with recording(self, False) as sbuf:
|
|
|
|
# False because there's no need to write "skipped test" to the
|
|
|
|
# stderr twice.
|
|
|
|
# Once by the Python unittest framework, and a second time by us.
|
2015-10-19 23:45:41 +00:00
|
|
|
print("skipped test", file=sbuf)
|
2011-08-15 23:09:08 +00:00
|
|
|
|
2013-02-23 01:05:23 +00:00
|
|
|
def markUnexpectedSuccess(self, bugnumber):
|
2011-08-01 19:50:58 +00:00
|
|
|
"""Callback invoked when an unexpected success occurred."""
|
|
|
|
self.__unexpected__ = True
|
|
|
|
with recording(self, False) as sbuf:
|
|
|
|
# False because there's no need to write "unexpected success" to the
|
|
|
|
# stderr twice.
|
|
|
|
# Once by the Python unittest framework, and a second time by us.
|
2013-02-23 01:05:23 +00:00
|
|
|
if bugnumber is None:
|
2015-10-19 23:45:41 +00:00
|
|
|
print("unexpected success", file=sbuf)
|
2013-02-23 01:05:23 +00:00
|
|
|
else:
|
2015-10-19 23:45:41 +00:00
|
|
|
print(
|
|
|
|
"unexpected success (problem id:" + str(bugnumber) + ")",
|
|
|
|
file=sbuf)
|
2011-08-01 19:50:58 +00:00
|
|
|
|
2015-01-07 22:25:50 +00:00
|
|
|
def getRerunArgs(self):
|
|
|
|
return " -f %s.%s" % (self.__class__.__name__, self._testMethodName)
|
2015-05-10 15:22:09 +00:00
|
|
|
|
2020-12-04 11:42:36 +01:00
|
|
|
def getLogBasenameForCurrentTest(self, prefix="Incomplete"):
|
2015-05-10 15:22:09 +00:00
|
|
|
"""
|
|
|
|
returns a partial path that can be used as the beginning of the name of multiple
|
|
|
|
log files pertaining to this test
|
|
|
|
"""
|
2020-12-04 11:42:36 +01:00
|
|
|
return os.path.join(self.getBuildDir(), prefix)
|
2015-05-10 15:22:09 +00:00
|
|
|
|
2011-08-01 19:50:58 +00:00
|
|
|
def dumpSessionInfo(self):
|
|
|
|
"""
|
|
|
|
Dump the debugger interactions leading to a test error/failure. This
|
|
|
|
allows for more convenient postmortem analysis.
|
|
|
|
|
|
|
|
See also LLDBTestResult (dotest.py) which is a singlton class derived
|
|
|
|
from TextTestResult and overwrites addError, addFailure, and
|
|
|
|
addExpectedFailure methods to allow us to to mark the test instance as
|
|
|
|
such.
|
|
|
|
"""
|
|
|
|
|
|
|
|
# We are here because self.tearDown() detected that this test instance
|
|
|
|
# either errored or failed. The lldb.test_result singleton contains
|
2020-04-07 01:06:02 +09:00
|
|
|
# two lists (errors and failures) which get populated by the unittest
|
2011-08-01 19:50:58 +00:00
|
|
|
# framework. Look over there for stack trace information.
|
|
|
|
#
|
|
|
|
# The lists contain 2-tuples of TestCase instances and strings holding
|
|
|
|
# formatted tracebacks.
|
|
|
|
#
|
|
|
|
# See http://docs.python.org/library/unittest.html#unittest.TestResult.
|
2015-05-10 15:22:09 +00:00
|
|
|
|
2015-05-21 18:20:21 +00:00
|
|
|
# output tracebacks into session
|
2015-05-10 15:22:09 +00:00
|
|
|
pairs = []
|
2011-08-01 19:50:58 +00:00
|
|
|
if self.__errored__:
|
2015-12-08 01:15:30 +00:00
|
|
|
pairs = configuration.test_result.errors
|
2011-08-01 19:50:58 +00:00
|
|
|
prefix = 'Error'
|
2015-09-11 21:27:37 +00:00
|
|
|
elif self.__cleanup_errored__:
|
2015-12-08 01:15:30 +00:00
|
|
|
pairs = configuration.test_result.cleanup_errors
|
2015-08-26 19:44:56 +00:00
|
|
|
prefix = 'CleanupError'
|
2011-08-01 19:50:58 +00:00
|
|
|
elif self.__failed__:
|
2015-12-08 01:15:30 +00:00
|
|
|
pairs = configuration.test_result.failures
|
2011-08-01 19:50:58 +00:00
|
|
|
prefix = 'Failure'
|
|
|
|
elif self.__expected__:
|
2015-12-08 01:15:30 +00:00
|
|
|
pairs = configuration.test_result.expectedFailures
|
2011-08-01 19:50:58 +00:00
|
|
|
prefix = 'ExpectedFailure'
|
2011-08-15 23:09:08 +00:00
|
|
|
elif self.__skipped__:
|
|
|
|
prefix = 'SkippedTest'
|
2011-08-01 19:50:58 +00:00
|
|
|
elif self.__unexpected__:
|
2015-05-21 18:20:21 +00:00
|
|
|
prefix = 'UnexpectedSuccess'
|
2011-08-01 19:50:58 +00:00
|
|
|
else:
|
2015-05-21 18:20:21 +00:00
|
|
|
prefix = 'Success'
|
2011-08-01 19:50:58 +00:00
|
|
|
|
2011-08-15 23:09:08 +00:00
|
|
|
if not self.__unexpected__ and not self.__skipped__:
|
2011-08-01 19:50:58 +00:00
|
|
|
for test, traceback in pairs:
|
|
|
|
if test is self:
|
2016-01-27 19:47:28 +00:00
|
|
|
print(traceback, file=self.session)
|
2011-08-01 19:50:58 +00:00
|
|
|
|
2015-05-21 18:20:21 +00:00
|
|
|
import datetime
|
2015-10-19 23:45:41 +00:00
|
|
|
print(
|
|
|
|
"Session info generated @",
|
|
|
|
datetime.datetime.now().ctime(),
|
|
|
|
file=self.session)
|
2015-05-21 18:20:21 +00:00
|
|
|
self.session.close()
|
|
|
|
del self.session
|
|
|
|
|
|
|
|
# process the log files
|
|
|
|
if prefix != 'Success' or lldbtest_config.log_success:
|
|
|
|
# keep all log files, rename them to include prefix
|
2020-12-04 11:42:36 +01:00
|
|
|
src_log_basename = self.getLogBasenameForCurrentTest()
|
2015-05-21 18:20:21 +00:00
|
|
|
dst_log_basename = self.getLogBasenameForCurrentTest(prefix)
|
2020-07-14 13:08:52 +02:00
|
|
|
for src in self.log_files:
|
2015-05-26 20:26:29 +00:00
|
|
|
if os.path.isfile(src):
|
2020-07-14 13:08:52 +02:00
|
|
|
dst = src.replace(src_log_basename, dst_log_basename)
|
2015-05-26 20:26:29 +00:00
|
|
|
if os.name == "nt" and os.path.isfile(dst):
|
2019-01-10 19:06:46 +00:00
|
|
|
# On Windows, renaming a -> b will throw an exception if
|
|
|
|
# b exists. On non-Windows platforms it silently
|
|
|
|
# replaces the destination. Ultimately this means that
|
|
|
|
# atomic renames are not guaranteed to be possible on
|
|
|
|
# Windows, but we need this to work anyway, so just
|
|
|
|
# remove the destination first if it already exists.
|
2016-04-11 15:21:01 +00:00
|
|
|
remove_file(dst)
|
2015-05-26 20:26:29 +00:00
|
|
|
|
2019-01-10 19:06:46 +00:00
|
|
|
lldbutil.mkdir_p(os.path.dirname(dst))
|
2019-01-23 00:13:47 +00:00
|
|
|
os.rename(src, dst)
|
2015-05-21 18:20:21 +00:00
|
|
|
else:
|
|
|
|
# success! (and we don't want log files) delete log files
|
2020-07-14 13:08:52 +02:00
|
|
|
for log_file in self.log_files:
|
|
|
|
if os.path.isfile(log_file):
|
|
|
|
remove_file(log_file)
|
2011-08-01 19:50:58 +00:00
|
|
|
|
|
|
|
# ====================================================
|
|
|
|
# Config. methods supported through a plugin interface
|
|
|
|
# (enables reading of the current test configuration)
|
|
|
|
# ====================================================
|
|
|
|
|
2017-02-08 07:42:56 +00:00
|
|
|
def isMIPS(self):
|
|
|
|
"""Returns true if the architecture is MIPS."""
|
|
|
|
arch = self.getArchitecture()
|
|
|
|
if re.match("mips", arch):
|
|
|
|
return True
|
|
|
|
return False
|
|
|
|
|
Fix some tests for PPC64le architecture
Summary:
- Fix test jump for powerpc64le
Jumping directly to the return line on power architecture dos not means
returning the value that is seen on the code. The last test fails, because
it needs the execution of some assembly in the beginning of the function.
Avoiding this test for this architecture.
- Avoid evaluate environ variable name on Linux
On Linux the Symbol environ conflicts with another variable, then in
order to avoid it, this test was moved into a specific test, which is not
supported if the OS is Linux.
- Added PPC64le as MIPS behavior
Checking the disassembler output, on PPC64le machines behaves as MPIS.
Added method to identify PPC64le architecture and checking it when
disassembling instructions in the test case.
Reviewers: labath
Reviewed By: labath
Subscribers: clayborg, labath, luporl, alexandreyy, sdardis, ki.stfu, arichardson
Differential Revision: https://reviews.llvm.org/D44101
Patch by Leonardo Bianconi <leonardo.bianconi@eldorado.org.br>.
llvm-svn: 327977
2018-03-20 12:46:33 +00:00
|
|
|
def isPPC64le(self):
|
|
|
|
"""Returns true if the architecture is PPC64LE."""
|
|
|
|
arch = self.getArchitecture()
|
|
|
|
if re.match("powerpc64le", arch):
|
|
|
|
return True
|
|
|
|
return False
|
|
|
|
|
2021-04-01 14:10:14 +05:00
|
|
|
def getCPUInfo(self):
|
2020-09-07 08:35:56 +05:00
|
|
|
triple = self.dbg.GetSelectedPlatform().GetTriple()
|
|
|
|
|
|
|
|
# TODO other platforms, please implement this function
|
|
|
|
if not re.match(".*-.*-linux", triple):
|
2021-04-01 15:30:16 +01:00
|
|
|
return ""
|
2020-09-07 08:35:56 +05:00
|
|
|
|
|
|
|
# Need to do something different for non-Linux/Android targets
|
|
|
|
cpuinfo_path = self.getBuildArtifact("cpuinfo")
|
|
|
|
if configuration.lldb_platform_name:
|
|
|
|
self.runCmd('platform get-file "/proc/cpuinfo" ' + cpuinfo_path)
|
|
|
|
else:
|
|
|
|
cpuinfo_path = "/proc/cpuinfo"
|
|
|
|
|
|
|
|
try:
|
2021-04-01 15:30:16 +01:00
|
|
|
with open(cpuinfo_path, 'r') as f:
|
|
|
|
cpuinfo = f.read()
|
2020-09-07 08:35:56 +05:00
|
|
|
except:
|
2021-04-01 15:30:16 +01:00
|
|
|
return ""
|
2020-09-07 08:35:56 +05:00
|
|
|
|
2021-04-01 14:10:14 +05:00
|
|
|
return cpuinfo
|
|
|
|
|
2021-07-12 14:18:18 +05:00
|
|
|
def isAArch64(self):
|
|
|
|
"""Returns true if the architecture is AArch64."""
|
2021-08-17 18:05:46 -07:00
|
|
|
arch = self.getArchitecture().lower()
|
|
|
|
return arch in ["aarch64", "arm64", "arm64e"]
|
2021-07-12 14:18:18 +05:00
|
|
|
|
2021-04-01 14:10:14 +05:00
|
|
|
def isAArch64SVE(self):
|
2021-07-12 14:18:18 +05:00
|
|
|
return self.isAArch64() and "sve" in self.getCPUInfo()
|
2021-04-01 14:10:14 +05:00
|
|
|
|
|
|
|
def isAArch64MTE(self):
|
2021-07-12 14:18:18 +05:00
|
|
|
return self.isAArch64() and "mte" in self.getCPUInfo()
|
2021-04-01 14:10:14 +05:00
|
|
|
|
|
|
|
def isAArch64PAuth(self):
|
2021-07-12 14:18:18 +05:00
|
|
|
return self.isAArch64() and "paca" in self.getCPUInfo()
|
2020-09-07 08:35:56 +05:00
|
|
|
|
2011-08-01 19:50:58 +00:00
|
|
|
def getArchitecture(self):
|
|
|
|
"""Returns the architecture in effect the test suite is running with."""
|
|
|
|
module = builder_module()
|
2015-04-06 15:50:48 +00:00
|
|
|
arch = module.getArchitecture()
|
|
|
|
if arch == 'amd64':
|
|
|
|
arch = 'x86_64'
|
2020-03-09 20:28:13 +05:00
|
|
|
if arch in ['armv7l', 'armv8l'] :
|
|
|
|
arch = 'arm'
|
2015-04-06 15:50:48 +00:00
|
|
|
return arch
|
2011-08-01 19:50:58 +00:00
|
|
|
|
2015-05-04 00:17:53 +00:00
|
|
|
def getLldbArchitecture(self):
|
|
|
|
"""Returns the architecture of the lldb binary."""
|
|
|
|
if not hasattr(self, 'lldbArchitecture'):
|
|
|
|
|
|
|
|
# spawn local process
|
|
|
|
command = [
|
2015-05-18 19:39:03 +00:00
|
|
|
lldbtest_config.lldbExec,
|
2015-05-04 00:17:53 +00:00
|
|
|
"-o",
|
2015-05-18 19:39:03 +00:00
|
|
|
"file " + lldbtest_config.lldbExec,
|
2015-05-04 00:17:53 +00:00
|
|
|
"-o",
|
|
|
|
"quit"
|
|
|
|
]
|
|
|
|
|
|
|
|
output = check_output(command)
|
|
|
|
str = output.decode("utf-8")
|
|
|
|
|
|
|
|
for line in str.splitlines():
|
|
|
|
m = re.search(
|
|
|
|
"Current executable set to '.*' \\((.*)\\)\\.", line)
|
|
|
|
if m:
|
|
|
|
self.lldbArchitecture = m.group(1)
|
|
|
|
break
|
|
|
|
|
|
|
|
return self.lldbArchitecture
|
|
|
|
|
2011-08-01 19:50:58 +00:00
|
|
|
def getCompiler(self):
|
|
|
|
"""Returns the compiler in effect the test suite is running with."""
|
|
|
|
module = builder_module()
|
|
|
|
return module.getCompiler()
|
|
|
|
|
2014-11-26 18:30:04 +00:00
|
|
|
def getCompilerBinary(self):
|
|
|
|
"""Returns the compiler binary the test suite is running with."""
|
|
|
|
return self.getCompiler().split()[0]
|
|
|
|
|
2013-02-27 17:29:46 +00:00
|
|
|
def getCompilerVersion(self):
|
|
|
|
""" Returns a string that represents the compiler version.
|
|
|
|
Supports: llvm, clang.
|
|
|
|
"""
|
2014-11-26 18:30:04 +00:00
|
|
|
compiler = self.getCompilerBinary()
|
2021-10-19 13:49:31 +02:00
|
|
|
version_output = check_output([compiler, "--version"], errors="replace")
|
|
|
|
m = re.search('version ([0-9.]+)', version_output)
|
|
|
|
if m:
|
|
|
|
return m.group(1)
|
2020-09-21 16:19:28 -07:00
|
|
|
return 'unknown'
|
2013-02-27 17:29:46 +00:00
|
|
|
|
2019-01-24 18:24:14 +00:00
|
|
|
def getDwarfVersion(self):
|
2019-01-24 20:09:17 +00:00
|
|
|
""" Returns the dwarf version generated by clang or '0'. """
|
2019-08-19 16:04:21 +00:00
|
|
|
if configuration.dwarf_version:
|
|
|
|
return str(configuration.dwarf_version)
|
2019-01-24 19:16:45 +00:00
|
|
|
if 'clang' in self.getCompiler():
|
|
|
|
try:
|
2021-10-22 10:09:17 -07:00
|
|
|
triple = builder_module().getTriple(self.getArchitecture())
|
|
|
|
target = ['-target', triple] if triple else []
|
2019-01-24 19:16:45 +00:00
|
|
|
driver_output = check_output(
|
2021-10-22 10:09:17 -07:00
|
|
|
[self.getCompiler()] + target + '-g -c -x c - -o - -###'.split(),
|
2019-01-24 19:16:45 +00:00
|
|
|
stderr=STDOUT)
|
2019-08-23 22:28:46 +00:00
|
|
|
driver_output = driver_output.decode("utf-8")
|
2019-01-24 19:16:45 +00:00
|
|
|
for line in driver_output.split(os.linesep):
|
|
|
|
m = re.search('dwarf-version=([0-9])', line)
|
|
|
|
if m:
|
|
|
|
return m.group(1)
|
2021-10-22 10:09:17 -07:00
|
|
|
except CalledProcessError:
|
|
|
|
pass
|
2019-01-24 20:09:17 +00:00
|
|
|
return '0'
|
2019-01-24 18:24:14 +00:00
|
|
|
|
2015-04-02 18:24:03 +00:00
|
|
|
def platformIsDarwin(self):
|
|
|
|
"""Returns true if the OS triple for the selected platform is any valid apple OS"""
|
2016-02-04 23:04:17 +00:00
|
|
|
return lldbplatformutil.platformIsDarwin()
|
2015-04-03 01:00:06 +00:00
|
|
|
|
2016-10-31 04:48:10 +00:00
|
|
|
def hasDarwinFramework(self):
|
|
|
|
return self.darwinWithFramework
|
|
|
|
|
2015-03-30 14:12:17 +00:00
|
|
|
def getPlatform(self):
|
2015-04-17 08:02:18 +00:00
|
|
|
"""Returns the target platform the test suite is running on."""
|
2016-02-04 23:04:17 +00:00
|
|
|
return lldbplatformutil.getPlatform()
|
2015-03-30 14:12:17 +00:00
|
|
|
|
2013-08-06 20:51:41 +00:00
|
|
|
def isIntelCompiler(self):
|
|
|
|
""" Returns true if using an Intel (ICC) compiler, false otherwise. """
|
|
|
|
return any([x in self.getCompiler() for x in ["icc", "icpc", "icl"]])
|
|
|
|
|
2013-06-06 14:23:31 +00:00
|
|
|
def expectedCompilerVersion(self, compiler_version):
|
|
|
|
"""Returns True iff compiler_version[1] matches the current compiler version.
|
|
|
|
Use compiler_version[0] to specify the operator used to determine if a match has occurred.
|
|
|
|
Any operator other than the following defaults to an equality test:
|
|
|
|
'>', '>=', "=>", '<', '<=', '=<', '!=', "!" or 'not'
|
2020-08-05 13:16:01 -07:00
|
|
|
|
|
|
|
If the current compiler version cannot be determined, we assume it is close to the top
|
|
|
|
of trunk, so any less-than or equal-to comparisons will return False, and any
|
|
|
|
greater-than or not-equal-to comparisons will return True.
|
2013-06-06 14:23:31 +00:00
|
|
|
"""
|
2020-08-05 13:16:01 -07:00
|
|
|
if compiler_version is None:
|
2013-05-17 20:15:07 +00:00
|
|
|
return True
|
|
|
|
operator = str(compiler_version[0])
|
|
|
|
version = compiler_version[1]
|
|
|
|
|
2020-08-05 13:16:01 -07:00
|
|
|
if version is None:
|
2013-05-17 20:15:07 +00:00
|
|
|
return True
|
2020-08-05 13:16:01 -07:00
|
|
|
|
|
|
|
test_compiler_version = self.getCompilerVersion()
|
|
|
|
if test_compiler_version == 'unknown':
|
|
|
|
# Assume the compiler version is at or near the top of trunk.
|
|
|
|
return operator in ['>', '>=', '!', '!=', 'not']
|
|
|
|
|
|
|
|
if operator == '>':
|
|
|
|
return LooseVersion(test_compiler_version) > LooseVersion(version)
|
|
|
|
if operator == '>=' or operator == '=>':
|
|
|
|
return LooseVersion(test_compiler_version) >= LooseVersion(version)
|
|
|
|
if operator == '<':
|
|
|
|
return LooseVersion(test_compiler_version) < LooseVersion(version)
|
|
|
|
if operator == '<=' or operator == '=<':
|
|
|
|
return LooseVersion(test_compiler_version) <= LooseVersion(version)
|
|
|
|
if operator == '!=' or operator == '!' or operator == 'not':
|
|
|
|
return str(version) not in str(test_compiler_version)
|
|
|
|
return str(version) in str(test_compiler_version)
|
2013-05-17 20:15:07 +00:00
|
|
|
|
|
|
|
def expectedCompiler(self, compilers):
|
2013-06-06 14:23:31 +00:00
|
|
|
"""Returns True iff any element of compilers is a sub-string of the current compiler."""
|
2013-05-17 20:15:07 +00:00
|
|
|
if (compilers is None):
|
|
|
|
return True
|
2013-06-06 14:23:31 +00:00
|
|
|
|
|
|
|
for compiler in compilers:
|
|
|
|
if compiler in self.getCompiler():
|
|
|
|
return True
|
|
|
|
|
|
|
|
return False
|
2013-05-17 20:15:07 +00:00
|
|
|
|
2015-04-21 01:15:47 +00:00
|
|
|
def expectedArch(self, archs):
|
|
|
|
"""Returns True iff any element of archs is a sub-string of the current architecture."""
|
|
|
|
if (archs is None):
|
|
|
|
return True
|
|
|
|
|
|
|
|
for arch in archs:
|
|
|
|
if arch in self.getArchitecture():
|
|
|
|
return True
|
|
|
|
|
|
|
|
return False
|
|
|
|
|
2011-08-01 19:50:58 +00:00
|
|
|
def getRunOptions(self):
|
|
|
|
"""Command line option for -A and -C to run this test again, called from
|
|
|
|
self.dumpSessionInfo()."""
|
|
|
|
arch = self.getArchitecture()
|
|
|
|
comp = self.getCompiler()
|
2017-10-23 17:51:22 +00:00
|
|
|
option_str = ""
|
2011-08-24 19:48:51 +00:00
|
|
|
if arch:
|
|
|
|
option_str = "-A " + arch
|
|
|
|
if comp:
|
2012-03-16 20:44:00 +00:00
|
|
|
option_str += " -C " + comp
|
2011-08-24 19:48:51 +00:00
|
|
|
return option_str
|
2011-08-01 19:50:58 +00:00
|
|
|
|
2018-02-05 11:30:46 +00:00
|
|
|
def getDebugInfo(self):
|
|
|
|
method = getattr(self, self.testMethodName)
|
|
|
|
return getattr(method, "debug_info", None)
|
|
|
|
|
2021-10-18 14:45:57 +02:00
|
|
|
def build(
|
|
|
|
self,
|
|
|
|
debug_info=None,
|
|
|
|
architecture=None,
|
|
|
|
compiler=None,
|
|
|
|
dictionary=None):
|
|
|
|
"""Platform specific way to build binaries."""
|
|
|
|
if not architecture and configuration.arch:
|
|
|
|
architecture = configuration.arch
|
|
|
|
|
|
|
|
if debug_info is None:
|
|
|
|
debug_info = self.getDebugInfo()
|
|
|
|
|
|
|
|
dictionary = lldbplatformutil.finalize_build_dictionary(dictionary)
|
|
|
|
|
|
|
|
testdir = self.mydir
|
|
|
|
testname = self.getBuildDirBasename()
|
|
|
|
|
|
|
|
module = builder_module()
|
2021-10-19 13:49:31 +02:00
|
|
|
command = builder_module().getBuildCommand(debug_info, architecture,
|
|
|
|
compiler, dictionary, testdir, testname)
|
|
|
|
if command is None:
|
2021-10-18 14:45:57 +02:00
|
|
|
raise Exception("Don't know how to build binary")
|
|
|
|
|
2021-10-19 13:49:31 +02:00
|
|
|
self.runBuildCommand(command)
|
|
|
|
|
|
|
|
def runBuildCommand(self, command):
|
2021-10-29 13:33:56 +02:00
|
|
|
self.trace(seven.join_for_shell(command))
|
2021-10-19 13:49:31 +02:00
|
|
|
try:
|
|
|
|
output = check_output(command, stderr=STDOUT, errors="replace")
|
|
|
|
except CalledProcessError as cpe:
|
|
|
|
raise build_exception.BuildError(cpe)
|
|
|
|
self.trace(output)
|
|
|
|
|
|
|
|
|
2011-08-01 19:50:58 +00:00
|
|
|
# ==================================================
|
|
|
|
# Build methods supported through a plugin interface
|
|
|
|
# ==================================================
|
|
|
|
|
2014-04-01 18:47:58 +00:00
|
|
|
def getstdlibFlag(self):
|
|
|
|
""" Returns the proper -stdlib flag, or empty if not required."""
|
2018-06-04 11:57:12 +00:00
|
|
|
if self.platformIsDarwin() or self.getPlatform() == "freebsd" or self.getPlatform() == "openbsd":
|
2014-04-01 18:47:58 +00:00
|
|
|
stdlibflag = "-stdlib=libc++"
|
2015-12-07 21:25:57 +00:00
|
|
|
else: # this includes NetBSD
|
2014-04-01 18:47:58 +00:00
|
|
|
stdlibflag = ""
|
|
|
|
return stdlibflag
|
|
|
|
|
2013-09-25 17:44:00 +00:00
|
|
|
def getstdFlag(self):
|
|
|
|
""" Returns the proper stdflag. """
|
2013-05-02 21:44:31 +00:00
|
|
|
if "gcc" in self.getCompiler() and "4.6" in self.getCompilerVersion():
|
2013-05-06 19:31:31 +00:00
|
|
|
stdflag = "-std=c++0x"
|
2013-05-02 21:44:31 +00:00
|
|
|
else:
|
|
|
|
stdflag = "-std=c++11"
|
2013-09-25 17:44:00 +00:00
|
|
|
return stdflag
|
|
|
|
|
|
|
|
def buildDriver(self, sources, exe_name):
|
|
|
|
""" Platform-specific way to build a program that links with LLDB (via the liblldb.so
|
|
|
|
or LLDB.framework).
|
|
|
|
"""
|
|
|
|
stdflag = self.getstdFlag()
|
2014-04-01 18:47:58 +00:00
|
|
|
stdlibflag = self.getstdlibFlag()
|
2016-09-06 20:57:50 +00:00
|
|
|
|
2020-01-31 09:35:34 +01:00
|
|
|
lib_dir = configuration.lldb_libs_dir
|
2016-10-31 04:48:10 +00:00
|
|
|
if self.hasDarwinFramework():
|
2013-05-02 21:44:31 +00:00
|
|
|
d = {'CXX_SOURCES': sources,
|
|
|
|
'EXE': exe_name,
|
2014-04-01 18:47:58 +00:00
|
|
|
'CFLAGS_EXTRAS': "%s %s" % (stdflag, stdlibflag),
|
2016-10-31 04:48:10 +00:00
|
|
|
'FRAMEWORK_INCLUDES': "-F%s" % self.framework_dir,
|
2020-08-28 15:43:35 -07:00
|
|
|
'LD_EXTRAS': "%s -Wl,-rpath,%s" % (self.lib_lldb, self.framework_dir),
|
2013-05-02 21:44:31 +00:00
|
|
|
}
|
2018-06-04 11:57:12 +00:00
|
|
|
elif sys.platform.startswith('win'):
|
2015-03-27 20:47:35 +00:00
|
|
|
d = {
|
|
|
|
'CXX_SOURCES': sources,
|
2013-05-02 21:44:31 +00:00
|
|
|
'EXE': exe_name,
|
2014-04-01 18:47:58 +00:00
|
|
|
'CFLAGS_EXTRAS': "%s %s -I%s" % (stdflag,
|
|
|
|
stdlibflag,
|
|
|
|
os.path.join(
|
|
|
|
os.environ["LLDB_SRC"],
|
|
|
|
"include")),
|
2020-08-28 15:43:35 -07:00
|
|
|
'LD_EXTRAS': "-L%s -lliblldb" % lib_dir}
|
2018-06-04 11:57:12 +00:00
|
|
|
else:
|
2015-03-27 20:47:35 +00:00
|
|
|
d = {
|
|
|
|
'CXX_SOURCES': sources,
|
|
|
|
'EXE': exe_name,
|
|
|
|
'CFLAGS_EXTRAS': "%s %s -I%s" % (stdflag,
|
|
|
|
stdlibflag,
|
|
|
|
os.path.join(
|
|
|
|
os.environ["LLDB_SRC"],
|
|
|
|
"include")),
|
2020-01-31 09:35:34 +01:00
|
|
|
'LD_EXTRAS': "-L%s -llldb -Wl,-rpath,%s" % (lib_dir, lib_dir)}
|
2013-05-02 21:44:31 +00:00
|
|
|
if self.TraceOn():
|
2015-10-19 23:45:41 +00:00
|
|
|
print(
|
|
|
|
"Building LLDB Driver (%s) from sources %s" %
|
|
|
|
(exe_name, sources))
|
2013-05-02 21:44:31 +00:00
|
|
|
|
2021-10-18 14:45:57 +02:00
|
|
|
self.build(dictionary=d)
|
2013-05-02 21:44:31 +00:00
|
|
|
|
2013-09-25 17:44:00 +00:00
|
|
|
def buildLibrary(self, sources, lib_name):
|
|
|
|
"""Platform specific way to build a default library. """
|
|
|
|
|
|
|
|
stdflag = self.getstdFlag()
|
|
|
|
|
2020-01-31 09:35:34 +01:00
|
|
|
lib_dir = configuration.lldb_libs_dir
|
2016-10-31 04:48:10 +00:00
|
|
|
if self.hasDarwinFramework():
|
2013-09-25 17:44:00 +00:00
|
|
|
d = {'DYLIB_CXX_SOURCES': sources,
|
|
|
|
'DYLIB_NAME': lib_name,
|
|
|
|
'CFLAGS_EXTRAS': "%s -stdlib=libc++" % stdflag,
|
2016-10-31 04:48:10 +00:00
|
|
|
'FRAMEWORK_INCLUDES': "-F%s" % self.framework_dir,
|
2020-08-28 15:43:35 -07:00
|
|
|
'LD_EXTRAS': "%s -Wl,-rpath,%s -dynamiclib" % (self.lib_lldb, self.framework_dir),
|
2013-09-25 17:44:00 +00:00
|
|
|
}
|
2015-05-15 18:54:32 +00:00
|
|
|
elif self.getPlatform() == 'windows':
|
2015-03-27 20:47:35 +00:00
|
|
|
d = {
|
|
|
|
'DYLIB_CXX_SOURCES': sources,
|
|
|
|
'DYLIB_NAME': lib_name,
|
2018-02-08 23:10:29 +00:00
|
|
|
'CFLAGS_EXTRAS': "%s -I%s " % (stdflag,
|
|
|
|
os.path.join(
|
|
|
|
os.environ["LLDB_SRC"],
|
|
|
|
"include")),
|
2020-08-28 15:43:35 -07:00
|
|
|
'LD_EXTRAS': "-shared -l%s\liblldb.lib" % lib_dir}
|
2018-06-04 11:57:12 +00:00
|
|
|
else:
|
|
|
|
d = {
|
|
|
|
'DYLIB_CXX_SOURCES': sources,
|
|
|
|
'DYLIB_NAME': lib_name,
|
|
|
|
'CFLAGS_EXTRAS': "%s -I%s -fPIC" % (stdflag,
|
|
|
|
os.path.join(
|
|
|
|
os.environ["LLDB_SRC"],
|
|
|
|
"include")),
|
2020-01-31 09:35:34 +01:00
|
|
|
'LD_EXTRAS': "-shared -L%s -llldb -Wl,-rpath,%s" % (lib_dir, lib_dir)}
|
2013-09-25 17:44:00 +00:00
|
|
|
if self.TraceOn():
|
2015-10-19 23:45:41 +00:00
|
|
|
print(
|
|
|
|
"Building LLDB Library (%s) from sources %s" %
|
|
|
|
(lib_name, sources))
|
2013-09-25 17:44:00 +00:00
|
|
|
|
2021-10-18 14:45:57 +02:00
|
|
|
self.build(dictionary=d)
|
2016-09-06 20:57:50 +00:00
|
|
|
|
2013-05-02 21:44:31 +00:00
|
|
|
def buildProgram(self, sources, exe_name):
|
|
|
|
""" Platform specific way to build an executable from C/C++ sources. """
|
|
|
|
d = {'CXX_SOURCES': sources,
|
|
|
|
'EXE': exe_name}
|
2021-10-18 14:45:57 +02:00
|
|
|
self.build(dictionary=d)
|
2016-05-26 13:57:03 +00:00
|
|
|
|
2015-01-22 20:03:21 +00:00
|
|
|
def signBinary(self, binary_path):
|
|
|
|
if sys.platform.startswith("darwin"):
|
2016-10-21 22:13:55 +00:00
|
|
|
codesign_cmd = "codesign --force --sign \"%s\" %s" % (
|
|
|
|
lldbtest_config.codesign_identity, binary_path)
|
2015-01-22 20:03:21 +00:00
|
|
|
call(codesign_cmd, shell=True)
|
|
|
|
|
2014-09-04 01:03:18 +00:00
|
|
|
def findBuiltClang(self):
|
|
|
|
"""Tries to find and use Clang from the build directory as the compiler (instead of the system compiler)."""
|
|
|
|
paths_to_try = [
|
[lldb] Generic base for testing gdb-remote behavior
Summary:
Adds new utilities that make it easier to write test cases for lldb acting as a client over a gdb-remote connection.
- A GDBRemoteTestBase class that starts a mock GDB server and provides an easy way to check client packets
- A MockGDBServer that, via MockGDBServerResponder, can be made to issue server responses that test client behavior.
- Utility functions for handling common data encoding/decoding
- Utility functions for creating dummy targets from YAML files
----
Split from the review at https://reviews.llvm.org/D42145, which was a new feature that necessitated the new testing capabilities.
Reviewers: clayborg, labath
Reviewed By: clayborg, labath
Subscribers: hintonda, davide, jingham, krytarowski, mgorny, lldb-commits
Differential Revision: https://reviews.llvm.org/D42195
Patch by Owen Shaw <llvm@owenpshaw.net>
llvm-svn: 323636
2018-01-29 10:02:40 +00:00
|
|
|
"llvm-build/Release+Asserts/x86_64/bin/clang",
|
|
|
|
"llvm-build/Debug+Asserts/x86_64/bin/clang",
|
|
|
|
"llvm-build/Release/x86_64/bin/clang",
|
|
|
|
"llvm-build/Debug/x86_64/bin/clang",
|
2014-09-04 01:03:18 +00:00
|
|
|
]
|
2015-11-19 21:45:07 +00:00
|
|
|
lldb_root_path = os.path.join(
|
|
|
|
os.path.dirname(__file__), "..", "..", "..", "..")
|
2014-09-04 01:03:18 +00:00
|
|
|
for p in paths_to_try:
|
|
|
|
path = os.path.join(lldb_root_path, p)
|
|
|
|
if os.path.exists(path):
|
|
|
|
return path
|
Skip AsanTestCase and AsanTestReportDataCase on Darwin
Summary:
This patch skips tests which cause the following error:
```
1: test_with_dsym (TestMemoryHistory.AsanTestCase) ...
os command: make clean ; make MAKE_DSYM=YES ARCH=x86_64 CC="/Users/IliaK/p/llvm/build_ninja/bin/clang"
with pid: 9475
stdout: rm -f "a.out" main.o main.d main.d.tmp
rm -f -r "a.out.dSYM"
/Users/IliaK/p/llvm/build_ninja/bin/clang -fsanitize=address -fsanitize-address-field-padding=1 -g -arch x86_64 -I/Users/IliaK/p/llvm/tools/lldb/test/make/../../include -c -o main.o main.c
/Users/IliaK/p/llvm/build_ninja/bin/clang main.o -fsanitize=address -fsanitize-address-field-padding=1 -g -arch x86_64 -I/Users/IliaK/p/llvm/tools/lldb/test/make/../../include -o "a.out"
stderr: clang: error: unknown argument: '-fsanitize-address-field-padding=1'
clang: error: unsupported argument 'address' to option 'fsanitize='
ld: file not found: /Users/IliaK/p/llvm/build_ninja/bin/../lib/clang/3.7.0/lib/darwin/libclang_rt.asan_osx_dynamic.dylib
clang-3.7: error: linker command failed with exit code 1 (use -v to see invocation)
make: *** [a.out] Error 1
retcode: 2
ERROR
os command: make clean
with pid: 9521
stdout: rm -f "a.out" main.o main.d main.d.tmp
rm -f -r "a.out.dSYM"
stderr:
retcode: 0
Restore dir to: /Users/IliaK/p/llvm/tools/lldb
======================================================================
ERROR: test_with_dsym (TestMemoryHistory.AsanTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/Users/IliaK/p/llvm/tools/lldb/test/lldbtest.py", line 612, in wrapper
func(*args, **kwargs)
File "/Users/IliaK/p/llvm/tools/lldb/test/lldbtest.py", line 456, in wrapper
return func(self, *args, **kwargs)
File "/Users/IliaK/p/llvm/tools/lldb/test/functionalities/asan/TestMemoryHistory.py", line 24, in test_with_dsym
self.buildDsym (None, compiler)
File "/Users/IliaK/p/llvm/tools/lldb/test/lldbtest.py", line 1496, in buildDsym
if not module.buildDsym(self, architecture, compiler, dictionary, clean):
File "/Users/IliaK/p/llvm/tools/lldb/test/plugins/builder_darwin.py", line 16, in buildDsym
lldbtest.system(commands, sender=sender)
File "/Users/IliaK/p/llvm/tools/lldb/test/lldbtest.py", line 370, in system
raise CalledProcessError(retcode, cmd)
CalledProcessError: Command 'make clean ; make MAKE_DSYM=YES ARCH=x86_64 CC="/Users/IliaK/p/llvm/build_ninja/bin/clang" ' returned non-zero exit status 2
Config=x86_64-clang
----------------------------------------------------------------------
```
Also this patch fixes findBuiltClang() by looking a clang in the build folder.
BTW, another patch was made in October 2014, but it wasn't committed: http://reviews.llvm.org/D6272.
Reviewers: abidh, zturner, emaste, jingham, jasonmolenda, granata.enrico, DougSnyder, clayborg
Reviewed By: clayborg
Subscribers: lldb-commits, DougSnyder, granata.enrico, jasonmolenda, jingham, emaste, zturner, abidh, clayborg
Differential Revision: http://reviews.llvm.org/D7958
llvm-svn: 232016
2015-03-12 07:19:41 +00:00
|
|
|
|
|
|
|
# Tries to find clang at the same folder as the lldb
|
2018-01-30 14:33:54 +00:00
|
|
|
lldb_dir = os.path.dirname(lldbtest_config.lldbExec)
|
|
|
|
path = distutils.spawn.find_executable("clang", lldb_dir)
|
|
|
|
if path is not None:
|
Skip AsanTestCase and AsanTestReportDataCase on Darwin
Summary:
This patch skips tests which cause the following error:
```
1: test_with_dsym (TestMemoryHistory.AsanTestCase) ...
os command: make clean ; make MAKE_DSYM=YES ARCH=x86_64 CC="/Users/IliaK/p/llvm/build_ninja/bin/clang"
with pid: 9475
stdout: rm -f "a.out" main.o main.d main.d.tmp
rm -f -r "a.out.dSYM"
/Users/IliaK/p/llvm/build_ninja/bin/clang -fsanitize=address -fsanitize-address-field-padding=1 -g -arch x86_64 -I/Users/IliaK/p/llvm/tools/lldb/test/make/../../include -c -o main.o main.c
/Users/IliaK/p/llvm/build_ninja/bin/clang main.o -fsanitize=address -fsanitize-address-field-padding=1 -g -arch x86_64 -I/Users/IliaK/p/llvm/tools/lldb/test/make/../../include -o "a.out"
stderr: clang: error: unknown argument: '-fsanitize-address-field-padding=1'
clang: error: unsupported argument 'address' to option 'fsanitize='
ld: file not found: /Users/IliaK/p/llvm/build_ninja/bin/../lib/clang/3.7.0/lib/darwin/libclang_rt.asan_osx_dynamic.dylib
clang-3.7: error: linker command failed with exit code 1 (use -v to see invocation)
make: *** [a.out] Error 1
retcode: 2
ERROR
os command: make clean
with pid: 9521
stdout: rm -f "a.out" main.o main.d main.d.tmp
rm -f -r "a.out.dSYM"
stderr:
retcode: 0
Restore dir to: /Users/IliaK/p/llvm/tools/lldb
======================================================================
ERROR: test_with_dsym (TestMemoryHistory.AsanTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/Users/IliaK/p/llvm/tools/lldb/test/lldbtest.py", line 612, in wrapper
func(*args, **kwargs)
File "/Users/IliaK/p/llvm/tools/lldb/test/lldbtest.py", line 456, in wrapper
return func(self, *args, **kwargs)
File "/Users/IliaK/p/llvm/tools/lldb/test/functionalities/asan/TestMemoryHistory.py", line 24, in test_with_dsym
self.buildDsym (None, compiler)
File "/Users/IliaK/p/llvm/tools/lldb/test/lldbtest.py", line 1496, in buildDsym
if not module.buildDsym(self, architecture, compiler, dictionary, clean):
File "/Users/IliaK/p/llvm/tools/lldb/test/plugins/builder_darwin.py", line 16, in buildDsym
lldbtest.system(commands, sender=sender)
File "/Users/IliaK/p/llvm/tools/lldb/test/lldbtest.py", line 370, in system
raise CalledProcessError(retcode, cmd)
CalledProcessError: Command 'make clean ; make MAKE_DSYM=YES ARCH=x86_64 CC="/Users/IliaK/p/llvm/build_ninja/bin/clang" ' returned non-zero exit status 2
Config=x86_64-clang
----------------------------------------------------------------------
```
Also this patch fixes findBuiltClang() by looking a clang in the build folder.
BTW, another patch was made in October 2014, but it wasn't committed: http://reviews.llvm.org/D6272.
Reviewers: abidh, zturner, emaste, jingham, jasonmolenda, granata.enrico, DougSnyder, clayborg
Reviewed By: clayborg
Subscribers: lldb-commits, DougSnyder, granata.enrico, jasonmolenda, jingham, emaste, zturner, abidh, clayborg
Differential Revision: http://reviews.llvm.org/D7958
llvm-svn: 232016
2015-03-12 07:19:41 +00:00
|
|
|
return path
|
2016-09-06 20:57:50 +00:00
|
|
|
|
2014-09-04 01:03:18 +00:00
|
|
|
return os.environ["CC"]
|
|
|
|
|
[lldb] Generic base for testing gdb-remote behavior
Summary:
Adds new utilities that make it easier to write test cases for lldb acting as a client over a gdb-remote connection.
- A GDBRemoteTestBase class that starts a mock GDB server and provides an easy way to check client packets
- A MockGDBServer that, via MockGDBServerResponder, can be made to issue server responses that test client behavior.
- Utility functions for handling common data encoding/decoding
- Utility functions for creating dummy targets from YAML files
----
Split from the review at https://reviews.llvm.org/D42145, which was a new feature that necessitated the new testing capabilities.
Reviewers: clayborg, labath
Reviewed By: clayborg, labath
Subscribers: hintonda, davide, jingham, krytarowski, mgorny, lldb-commits
Differential Revision: https://reviews.llvm.org/D42195
Patch by Owen Shaw <llvm@owenpshaw.net>
llvm-svn: 323636
2018-01-29 10:02:40 +00:00
|
|
|
|
2021-12-01 23:04:59 +01:00
|
|
|
def yaml2obj(self, yaml_path, obj_path, max_size=None):
|
[lldb] Generic base for testing gdb-remote behavior
Summary:
Adds new utilities that make it easier to write test cases for lldb acting as a client over a gdb-remote connection.
- A GDBRemoteTestBase class that starts a mock GDB server and provides an easy way to check client packets
- A MockGDBServer that, via MockGDBServerResponder, can be made to issue server responses that test client behavior.
- Utility functions for handling common data encoding/decoding
- Utility functions for creating dummy targets from YAML files
----
Split from the review at https://reviews.llvm.org/D42145, which was a new feature that necessitated the new testing capabilities.
Reviewers: clayborg, labath
Reviewed By: clayborg, labath
Subscribers: hintonda, davide, jingham, krytarowski, mgorny, lldb-commits
Differential Revision: https://reviews.llvm.org/D42195
Patch by Owen Shaw <llvm@owenpshaw.net>
llvm-svn: 323636
2018-01-29 10:02:40 +00:00
|
|
|
"""
|
|
|
|
Create an object file at the given path from a yaml file.
|
|
|
|
|
|
|
|
Throws subprocess.CalledProcessError if the object could not be created.
|
|
|
|
"""
|
2020-07-10 21:14:06 -07:00
|
|
|
yaml2obj_bin = configuration.get_yaml2obj_path()
|
|
|
|
if not yaml2obj_bin:
|
2020-07-29 16:58:29 -07:00
|
|
|
self.assertTrue(False, "No valid yaml2obj executable specified")
|
2020-07-10 21:14:06 -07:00
|
|
|
command = [yaml2obj_bin, "-o=%s" % obj_path, yaml_path]
|
2021-12-01 23:04:59 +01:00
|
|
|
if max_size is not None:
|
|
|
|
command += ["--max-size=%d" % max_size]
|
2021-10-19 13:49:31 +02:00
|
|
|
self.runBuildCommand(command)
|
[lldb] Generic base for testing gdb-remote behavior
Summary:
Adds new utilities that make it easier to write test cases for lldb acting as a client over a gdb-remote connection.
- A GDBRemoteTestBase class that starts a mock GDB server and provides an easy way to check client packets
- A MockGDBServer that, via MockGDBServerResponder, can be made to issue server responses that test client behavior.
- Utility functions for handling common data encoding/decoding
- Utility functions for creating dummy targets from YAML files
----
Split from the review at https://reviews.llvm.org/D42145, which was a new feature that necessitated the new testing capabilities.
Reviewers: clayborg, labath
Reviewed By: clayborg, labath
Subscribers: hintonda, davide, jingham, krytarowski, mgorny, lldb-commits
Differential Revision: https://reviews.llvm.org/D42195
Patch by Owen Shaw <llvm@owenpshaw.net>
llvm-svn: 323636
2018-01-29 10:02:40 +00:00
|
|
|
|
2011-08-12 20:19:22 +00:00
|
|
|
def cleanup(self, dictionary=None):
|
|
|
|
"""Platform specific way to do cleanup after build."""
|
|
|
|
module = builder_module()
|
2021-10-18 15:14:43 +02:00
|
|
|
if not module.cleanup(dictionary):
|
2011-11-17 19:57:27 +00:00
|
|
|
raise Exception(
|
|
|
|
"Don't know how to do cleanup with dictionary: " +
|
|
|
|
dictionary)
|
2011-08-12 20:19:22 +00:00
|
|
|
|
2021-01-06 17:05:27 +01:00
|
|
|
def invoke(self, obj, name, trace=False):
|
|
|
|
"""Use reflection to call a method dynamically with no argument."""
|
|
|
|
trace = (True if traceAlways else trace)
|
|
|
|
|
|
|
|
method = getattr(obj, name)
|
|
|
|
import inspect
|
|
|
|
self.assertTrue(inspect.ismethod(method),
|
|
|
|
name + "is a method name of object: " + str(obj))
|
|
|
|
result = method()
|
|
|
|
with recording(self, trace) as sbuf:
|
|
|
|
print(str(method) + ":", result, file=sbuf)
|
|
|
|
return result
|
|
|
|
|
2013-05-02 21:44:31 +00:00
|
|
|
def getLLDBLibraryEnvVal(self):
|
|
|
|
""" Returns the path that the OS-specific library search environment variable
|
|
|
|
(self.dylibPath) should be set to in order for a program to find the LLDB
|
|
|
|
library. If an environment variable named self.dylibPath is already set,
|
|
|
|
the new path is appended to it and returned.
|
|
|
|
"""
|
|
|
|
existing_library_path = os.environ[
|
|
|
|
self.dylibPath] if self.dylibPath in os.environ else None
|
|
|
|
if existing_library_path:
|
2020-08-28 15:43:35 -07:00
|
|
|
return "%s:%s" % (existing_library_path, configuration.lldb_libs_dir)
|
|
|
|
if sys.platform.startswith("darwin") and configuration.lldb_framework_path:
|
|
|
|
return configuration.lldb_framework_path
|
|
|
|
return configuration.lldb_libs_dir
|
2011-08-01 18:46:13 +00:00
|
|
|
|
2013-09-09 14:04:04 +00:00
|
|
|
def getLibcPlusPlusLibs(self):
|
2018-06-04 11:57:12 +00:00
|
|
|
if self.getPlatform() in ('freebsd', 'linux', 'netbsd', 'openbsd'):
|
2013-09-09 14:04:04 +00:00
|
|
|
return ['libc++.so.1']
|
|
|
|
else:
|
2019-03-07 00:34:13 +00:00
|
|
|
return ['libc++.1.dylib', 'libc++abi.']
|
2013-09-09 14:04:04 +00:00
|
|
|
|
2020-12-10 15:25:55 +01:00
|
|
|
def run_platform_command(self, cmd):
|
|
|
|
platform = self.dbg.GetSelectedPlatform()
|
|
|
|
shell_command = lldb.SBPlatformShellCommand(cmd)
|
|
|
|
err = platform.Run(shell_command)
|
|
|
|
return (err, shell_command.GetStatus(), shell_command.GetOutput())
|
|
|
|
|
2015-09-30 10:12:40 +00:00
|
|
|
# Metaclass for TestBase to change the list of test metods when a new TestCase is loaded.
|
|
|
|
# We change the test methods to create a new test method for each test for each debug info we are
|
|
|
|
# testing. The name of the new test method will be '<original-name>_<debug-info>' and with adding
|
2016-03-31 14:22:52 +00:00
|
|
|
# the new test method we remove the old method at the same time. This functionality can be
|
|
|
|
# supressed by at test case level setting the class attribute NO_DEBUG_INFO_TESTCASE or at test
|
|
|
|
# level by using the decorator @no_debug_info_test.
|
2016-09-06 20:57:50 +00:00
|
|
|
|
|
|
|
|
2015-09-30 10:12:40 +00:00
|
|
|
class LLDBTestCaseFactory(type):
|
2016-09-06 20:57:50 +00:00
|
|
|
|
2015-09-30 10:12:40 +00:00
|
|
|
def __new__(cls, name, bases, attrs):
|
2016-03-31 14:22:52 +00:00
|
|
|
original_testcase = super(
|
|
|
|
LLDBTestCaseFactory, cls).__new__(
|
|
|
|
cls, name, bases, attrs)
|
|
|
|
if original_testcase.NO_DEBUG_INFO_TESTCASE:
|
|
|
|
return original_testcase
|
|
|
|
|
2015-09-30 10:12:40 +00:00
|
|
|
newattrs = {}
|
2015-10-23 17:53:51 +00:00
|
|
|
for attrname, attrvalue in attrs.items():
|
2015-09-30 10:12:40 +00:00
|
|
|
if attrname.startswith("test") and not getattr(
|
|
|
|
attrvalue, "__no_debug_info_test__", False):
|
2015-12-14 18:49:16 +00:00
|
|
|
|
|
|
|
# If any debug info categories were explicitly tagged, assume that list to be
|
|
|
|
# authoritative. If none were specified, try with all debug
|
|
|
|
# info formats.
|
2018-04-24 10:51:44 +00:00
|
|
|
all_dbginfo_categories = set(test_categories.debug_info_categories)
|
2015-12-14 18:49:16 +00:00
|
|
|
categories = set(
|
|
|
|
getattr(
|
|
|
|
attrvalue,
|
|
|
|
"categories",
|
|
|
|
[])) & all_dbginfo_categories
|
|
|
|
if not categories:
|
|
|
|
categories = all_dbginfo_categories
|
|
|
|
|
2018-04-24 10:51:44 +00:00
|
|
|
for cat in categories:
|
|
|
|
@decorators.add_test_categories([cat])
|
2015-12-14 18:49:16 +00:00
|
|
|
@wraps(attrvalue)
|
2018-04-24 10:51:44 +00:00
|
|
|
def test_method(self, attrvalue=attrvalue):
|
2015-12-14 18:49:16 +00:00
|
|
|
return attrvalue(self)
|
2015-12-14 22:58:16 +00:00
|
|
|
|
2018-04-24 10:51:44 +00:00
|
|
|
method_name = attrname + "_" + cat
|
|
|
|
test_method.__name__ = method_name
|
|
|
|
test_method.debug_info = cat
|
|
|
|
newattrs[method_name] = test_method
|
2016-05-26 13:57:03 +00:00
|
|
|
|
2015-09-30 10:12:40 +00:00
|
|
|
else:
|
|
|
|
newattrs[attrname] = attrvalue
|
|
|
|
return super(
|
|
|
|
LLDBTestCaseFactory,
|
|
|
|
cls).__new__(
|
|
|
|
cls,
|
|
|
|
name,
|
|
|
|
bases,
|
|
|
|
newattrs)
|
2016-09-06 20:57:50 +00:00
|
|
|
|
2015-10-20 21:06:05 +00:00
|
|
|
# Setup the metaclass for this class to change the list of the test
|
|
|
|
# methods when a new class is loaded
|
2016-09-06 20:57:50 +00:00
|
|
|
|
2015-09-30 10:12:40 +00:00
|
|
|
|
2015-10-20 21:06:05 +00:00
|
|
|
@add_metaclass(LLDBTestCaseFactory)
|
2011-08-01 18:46:13 +00:00
|
|
|
class TestBase(Base):
|
|
|
|
"""
|
|
|
|
This abstract base class is meant to be subclassed. It provides default
|
|
|
|
implementations for setUpClass(), tearDownClass(), setUp(), and tearDown(),
|
|
|
|
among other things.
|
|
|
|
|
|
|
|
Important things for test class writers:
|
|
|
|
|
|
|
|
- Overwrite the mydir class attribute, otherwise your test class won't
|
|
|
|
run. It specifies the relative directory to the top level 'test' so
|
|
|
|
the test harness can change to the correct working directory before
|
|
|
|
running your test.
|
|
|
|
|
|
|
|
- The setUp method sets up things to facilitate subsequent interactions
|
|
|
|
with the debugger as part of the test. These include:
|
|
|
|
- populate the test method name
|
|
|
|
- create/get a debugger set with synchronous mode (self.dbg)
|
|
|
|
- get the command interpreter from with the debugger (self.ci)
|
|
|
|
- create a result object for use with the command interpreter
|
|
|
|
(self.res)
|
|
|
|
- plus other stuffs
|
|
|
|
|
|
|
|
- The tearDown method tries to perform some necessary cleanup on behalf
|
|
|
|
of the test to return the debugger to a good state for the next test.
|
|
|
|
These include:
|
|
|
|
- execute any tearDown hooks registered by the test method with
|
|
|
|
TestBase.addTearDownHook(); examples can be found in
|
|
|
|
settings/TestSettings.py
|
|
|
|
- kill the inferior process associated with each target, if any,
|
|
|
|
and, then delete the target from the debugger's target list
|
|
|
|
- perform build cleanup before running the next test method in the
|
|
|
|
same test class; examples of registering for this service can be
|
|
|
|
found in types/TestIntegerTypes.py with the call:
|
|
|
|
- self.setTearDownCleanup(dictionary=d)
|
|
|
|
|
|
|
|
- Similarly setUpClass and tearDownClass perform classwise setup and
|
|
|
|
teardown fixtures. The tearDownClass method invokes a default build
|
|
|
|
cleanup for the entire test class; also, subclasses can implement the
|
|
|
|
classmethod classCleanup(cls) to perform special class cleanup action.
|
|
|
|
|
|
|
|
- The instance methods runCmd and expect are used heavily by existing
|
|
|
|
test cases to send a command to the command interpreter and to perform
|
|
|
|
string/pattern matching on the output of such command execution. The
|
|
|
|
expect method also provides a mode to peform string/pattern matching
|
|
|
|
without running a command.
|
|
|
|
|
2021-10-18 14:45:57 +02:00
|
|
|
- The build method is used to build the binaries used during a
|
|
|
|
particular test scenario. A plugin should be provided for the
|
|
|
|
sys.platform running the test suite. The Mac OS X implementation is
|
|
|
|
located in builders/darwin.py.
|
2011-08-01 18:46:13 +00:00
|
|
|
"""
|
|
|
|
|
2016-03-31 14:22:52 +00:00
|
|
|
# Subclasses can set this to true (if they don't depend on debug info) to avoid running the
|
|
|
|
# test multiple times with various debug info types.
|
|
|
|
NO_DEBUG_INFO_TESTCASE = False
|
|
|
|
|
2011-08-01 18:46:13 +00:00
|
|
|
# Maximum allowed attempts when launching the inferior process.
|
|
|
|
# Can be overridden by the LLDB_MAX_LAUNCH_COUNT environment variable.
|
2018-06-13 19:02:44 +00:00
|
|
|
maxLaunchCount = 1
|
2011-08-01 18:46:13 +00:00
|
|
|
|
|
|
|
# Time to wait before the next launching attempt in second(s).
|
|
|
|
# Can be overridden by the LLDB_TIME_WAIT_NEXT_LAUNCH environment variable.
|
|
|
|
timeWaitNextLaunch = 1.0
|
|
|
|
|
2016-10-31 04:48:19 +00:00
|
|
|
def generateSource(self, source):
|
|
|
|
template = source + '.template'
|
2018-01-30 18:29:16 +00:00
|
|
|
temp = os.path.join(self.getSourceDir(), template)
|
2016-10-31 04:48:19 +00:00
|
|
|
with open(temp, 'r') as f:
|
|
|
|
content = f.read()
|
2018-07-27 22:20:59 +00:00
|
|
|
|
2016-10-31 04:48:19 +00:00
|
|
|
public_api_dir = os.path.join(
|
|
|
|
os.environ["LLDB_SRC"], "include", "lldb", "API")
|
|
|
|
|
|
|
|
# Look under the include/lldb/API directory and add #include statements
|
|
|
|
# for all the SB API headers.
|
|
|
|
public_headers = os.listdir(public_api_dir)
|
|
|
|
# For different platforms, the include statement can vary.
|
|
|
|
if self.hasDarwinFramework():
|
|
|
|
include_stmt = "'#include <%s>' % os.path.join('LLDB', header)"
|
|
|
|
else:
|
2016-11-08 18:14:42 +00:00
|
|
|
include_stmt = "'#include <%s>' % os.path.join('" + public_api_dir + "', header)"
|
2016-10-31 04:48:19 +00:00
|
|
|
list = [eval(include_stmt) for header in public_headers if (
|
|
|
|
header.startswith("SB") and header.endswith(".h"))]
|
|
|
|
includes = '\n'.join(list)
|
|
|
|
new_content = content.replace('%include_SB_APIs%', includes)
|
2020-10-28 11:58:25 -07:00
|
|
|
new_content = new_content.replace('%SOURCE_DIR%', self.getSourceDir())
|
2018-01-30 18:29:16 +00:00
|
|
|
src = os.path.join(self.getBuildDir(), source)
|
2016-10-31 04:48:19 +00:00
|
|
|
with open(src, 'w') as f:
|
|
|
|
f.write(new_content)
|
|
|
|
|
|
|
|
self.addTearDownHook(lambda: os.remove(src))
|
|
|
|
|
2010-09-16 01:53:04 +00:00
|
|
|
def setUp(self):
|
2011-08-01 18:46:13 +00:00
|
|
|
# Works with the test driver to conditionally skip tests via
|
|
|
|
# decorators.
|
|
|
|
Base.setUp(self)
|
|
|
|
|
2019-07-29 16:10:16 +00:00
|
|
|
for s in self.setUpCommands():
|
|
|
|
self.runCmd(s)
|
2018-02-09 22:08:26 +00:00
|
|
|
|
2010-08-25 18:49:48 +00:00
|
|
|
if "LLDB_MAX_LAUNCH_COUNT" in os.environ:
|
|
|
|
self.maxLaunchCount = int(os.environ["LLDB_MAX_LAUNCH_COUNT"])
|
|
|
|
|
2010-10-19 16:00:42 +00:00
|
|
|
if "LLDB_TIME_WAIT_NEXT_LAUNCH" in os.environ:
|
2010-11-29 20:20:34 +00:00
|
|
|
self.timeWaitNextLaunch = float(
|
|
|
|
os.environ["LLDB_TIME_WAIT_NEXT_LAUNCH"])
|
2010-08-25 18:49:48 +00:00
|
|
|
|
2010-07-03 03:41:59 +00:00
|
|
|
# We want our debugger to be synchronous.
|
|
|
|
self.dbg.SetAsync(False)
|
|
|
|
|
|
|
|
# Retrieve the associated command interpreter instance.
|
|
|
|
self.ci = self.dbg.GetCommandInterpreter()
|
|
|
|
if not self.ci:
|
|
|
|
raise Exception('Could not get the command interpreter')
|
|
|
|
|
|
|
|
# And the result object.
|
|
|
|
self.res = lldb.SBCommandReturnObject()
|
|
|
|
|
2014-11-17 18:40:27 +00:00
|
|
|
def registerSharedLibrariesWithTarget(self, target, shlibs):
|
|
|
|
'''If we are remotely running the test suite, register the shared libraries with the target so they get uploaded, otherwise do nothing
|
2016-09-06 20:57:50 +00:00
|
|
|
|
2014-11-17 18:40:27 +00:00
|
|
|
Any modules in the target that have their remote install file specification set will
|
|
|
|
get uploaded to the remote host. This function registers the local copies of the
|
|
|
|
shared libraries with the target and sets their remote install locations so they will
|
|
|
|
be uploaded when the target is run.
|
|
|
|
'''
|
2014-12-02 21:32:44 +00:00
|
|
|
if not shlibs or not self.platformContext:
|
2014-12-01 23:21:18 +00:00
|
|
|
return None
|
|
|
|
|
|
|
|
shlib_environment_var = self.platformContext.shlib_environment_var
|
|
|
|
shlib_prefix = self.platformContext.shlib_prefix
|
|
|
|
shlib_extension = '.' + self.platformContext.shlib_extension
|
|
|
|
|
2020-07-10 14:58:29 +02:00
|
|
|
dirs = []
|
2014-12-01 23:21:18 +00:00
|
|
|
# Add any shared libraries to our target if remote so they get
|
|
|
|
# uploaded into the working directory on the remote side
|
|
|
|
for name in shlibs:
|
|
|
|
# The path can be a full path to a shared library, or a make file name like "Foo" for
|
|
|
|
# "libFoo.dylib" or "libFoo.so", or "Foo.so" for "Foo.so" or "libFoo.so", or just a
|
|
|
|
# basename like "libFoo.so". So figure out which one it is and resolve the local copy
|
|
|
|
# of the shared library accordingly
|
2017-05-17 11:47:44 +00:00
|
|
|
if os.path.isfile(name):
|
2014-12-01 23:21:18 +00:00
|
|
|
local_shlib_path = name # name is the full path to the local shared library
|
|
|
|
else:
|
|
|
|
# Check relative names
|
|
|
|
local_shlib_path = os.path.join(
|
2018-01-30 18:29:16 +00:00
|
|
|
self.getBuildDir(), shlib_prefix + name + shlib_extension)
|
2014-12-01 23:21:18 +00:00
|
|
|
if not os.path.exists(local_shlib_path):
|
|
|
|
local_shlib_path = os.path.join(
|
2018-01-30 18:29:16 +00:00
|
|
|
self.getBuildDir(), name + shlib_extension)
|
2014-11-17 18:40:27 +00:00
|
|
|
if not os.path.exists(local_shlib_path):
|
2018-01-30 18:29:16 +00:00
|
|
|
local_shlib_path = os.path.join(self.getBuildDir(), name)
|
2014-12-01 23:21:18 +00:00
|
|
|
|
|
|
|
# Make sure we found the local shared library in the above code
|
|
|
|
self.assertTrue(os.path.exists(local_shlib_path))
|
|
|
|
|
2020-07-10 14:58:29 +02:00
|
|
|
|
2014-12-01 23:21:18 +00:00
|
|
|
# Add the shared library to our target
|
|
|
|
shlib_module = target.AddModule(local_shlib_path, None, None, None)
|
|
|
|
if lldb.remote_platform:
|
2014-11-17 18:40:27 +00:00
|
|
|
# We must set the remote install location if we want the shared library
|
|
|
|
# to get uploaded to the remote target
|
2018-02-21 15:33:53 +00:00
|
|
|
remote_shlib_path = lldbutil.append_to_process_working_directory(self,
|
2015-06-06 00:25:50 +00:00
|
|
|
os.path.basename(local_shlib_path))
|
2014-11-17 18:40:27 +00:00
|
|
|
shlib_module.SetRemoteInstallFileSpec(
|
|
|
|
lldb.SBFileSpec(remote_shlib_path, False))
|
2020-07-10 14:58:29 +02:00
|
|
|
dir_to_add = self.get_process_working_directory()
|
|
|
|
else:
|
|
|
|
dir_to_add = os.path.dirname(local_shlib_path)
|
|
|
|
|
|
|
|
if dir_to_add not in dirs:
|
|
|
|
dirs.append(dir_to_add)
|
2014-12-01 23:21:18 +00:00
|
|
|
|
2020-07-10 14:58:29 +02:00
|
|
|
env_value = self.platformContext.shlib_path_separator.join(dirs)
|
|
|
|
return ['%s=%s' % (shlib_environment_var, env_value)]
|
2014-12-01 23:21:18 +00:00
|
|
|
|
2019-11-06 13:53:14 -08:00
|
|
|
def registerSanitizerLibrariesWithTarget(self, target):
|
|
|
|
runtimes = []
|
|
|
|
for m in target.module_iter():
|
|
|
|
libspec = m.GetFileSpec()
|
|
|
|
if "clang_rt" in libspec.GetFilename():
|
|
|
|
runtimes.append(os.path.join(libspec.GetDirectory(),
|
|
|
|
libspec.GetFilename()))
|
|
|
|
return self.registerSharedLibrariesWithTarget(target, runtimes)
|
|
|
|
|
2012-10-24 01:23:57 +00:00
|
|
|
# utility methods that tests can use to access the current objects
|
|
|
|
def target(self):
|
|
|
|
if not self.dbg:
|
|
|
|
raise Exception('Invalid debugger instance')
|
|
|
|
return self.dbg.GetSelectedTarget()
|
|
|
|
|
|
|
|
def process(self):
|
|
|
|
if not self.dbg:
|
|
|
|
raise Exception('Invalid debugger instance')
|
|
|
|
return self.dbg.GetSelectedTarget().GetProcess()
|
|
|
|
|
|
|
|
def thread(self):
|
|
|
|
if not self.dbg:
|
|
|
|
raise Exception('Invalid debugger instance')
|
|
|
|
return self.dbg.GetSelectedTarget().GetProcess().GetSelectedThread()
|
|
|
|
|
|
|
|
def frame(self):
|
|
|
|
if not self.dbg:
|
|
|
|
raise Exception('Invalid debugger instance')
|
|
|
|
return self.dbg.GetSelectedTarget().GetProcess(
|
|
|
|
).GetSelectedThread().GetSelectedFrame()
|
|
|
|
|
2013-12-13 19:18:59 +00:00
|
|
|
def get_process_working_directory(self):
|
|
|
|
'''Get the working directory that should be used when launching processes for local or remote processes.'''
|
|
|
|
if lldb.remote_platform:
|
|
|
|
# Remote tests set the platform working directory up in
|
|
|
|
# TestBase.setUp()
|
|
|
|
return lldb.remote_platform.GetWorkingDirectory()
|
|
|
|
else:
|
|
|
|
# local tests change directory into each test subdirectory
|
2018-01-30 18:29:16 +00:00
|
|
|
return self.getBuildDir()
|
2016-09-06 20:57:50 +00:00
|
|
|
|
2010-07-03 03:41:59 +00:00
|
|
|
def tearDown(self):
|
2015-10-15 22:39:55 +00:00
|
|
|
# Ensure all the references to SB objects have gone away so that we can
|
|
|
|
# be sure that all test-specific resources have been freed before we
|
|
|
|
# attempt to delete the targets.
|
|
|
|
gc.collect()
|
|
|
|
|
2011-06-15 21:24:24 +00:00
|
|
|
# Delete the target(s) from the debugger as a general cleanup step.
|
|
|
|
# This includes terminating the process for each target, if any.
|
|
|
|
# We'd like to reuse the debugger for our next test without incurring
|
|
|
|
# the initialization overhead.
|
|
|
|
targets = []
|
|
|
|
for target in self.dbg:
|
|
|
|
if target:
|
|
|
|
targets.append(target)
|
|
|
|
process = target.GetProcess()
|
|
|
|
if process:
|
|
|
|
rc = self.invoke(process, "Kill")
|
2020-06-12 15:12:55 -07:00
|
|
|
assert rc.Success()
|
2011-06-15 21:24:24 +00:00
|
|
|
for target in targets:
|
|
|
|
self.dbg.DeleteTarget(target)
|
2010-08-16 21:28:10 +00:00
|
|
|
|
2021-09-29 22:32:21 -07:00
|
|
|
# Assert that all targets are deleted.
|
|
|
|
self.assertEqual(self.dbg.GetNumTargets(), 0)
|
2020-06-12 15:12:55 -07:00
|
|
|
|
2015-03-26 16:43:25 +00:00
|
|
|
# Do this last, to make sure it's in reverse order from how we setup.
|
|
|
|
Base.tearDown(self)
|
|
|
|
|
2011-09-30 21:48:35 +00:00
|
|
|
def switch_to_thread_with_stop_reason(self, stop_reason):
|
|
|
|
"""
|
|
|
|
Run the 'thread list' command, and select the thread with stop reason as
|
|
|
|
'stop_reason'. If no such thread exists, no select action is done.
|
|
|
|
"""
|
Python 3 - Turn on absolute imports, and fix existing imports.
Absolute imports were introduced in Python 2.5 as a feature
(e.g. from __future__ import absolute_import), and made default
in Python 3.
When absolute imports are enabled, the import system changes in
a couple of ways:
1) The `import foo` syntax will *only* search sys.path. If `foo`
isn't in sys.path, it won't be found. Period. Without absolute
imports, the import system will also search the same directory
that the importing file resides in, so that you can easily
import from the same folder.
2) From inside a package, you can use a dot syntax to refer to higher
levels of the current package. For example, if you are in the
package lldbsuite.test.utility, then ..foo refers to
lldbsuite.test.foo. You can use this notation with the
`from X import Y` syntax to write intra-package references. For
example, using the previous locationa s a starting point, writing
`from ..support import seven` would import lldbsuite.support.seven
Since this is now the default behavior in Python 3, this means that
importing from the same directory with `import foo` *no longer works*.
As a result, the only way to have portable code is to force absolute
imports for all versions of Python.
See PEP 0328 [https://www.python.org/dev/peps/pep-0328/] for more
information about absolute and relative imports.
Differential Revision: http://reviews.llvm.org/D14342
Reviewed By: Todd Fiala
llvm-svn: 252191
2015-11-05 19:22:28 +00:00
|
|
|
from .lldbutil import stop_reason_to_str
|
2011-09-30 21:48:35 +00:00
|
|
|
self.runCmd('thread list')
|
|
|
|
output = self.res.GetOutput()
|
|
|
|
thread_line_pattern = re.compile(
|
|
|
|
"^[ *] thread #([0-9]+):.*stop reason = %s" %
|
|
|
|
stop_reason_to_str(stop_reason))
|
|
|
|
for line in output.splitlines():
|
|
|
|
matched = thread_line_pattern.match(line)
|
|
|
|
if matched:
|
|
|
|
self.runCmd('thread select %s' % matched.group(1))
|
|
|
|
|
2013-06-17 22:51:50 +00:00
|
|
|
def runCmd(self, cmd, msg=None, check=True, trace=False, inHistory=False):
|
2010-08-19 23:26:59 +00:00
|
|
|
"""
|
|
|
|
Ask the command interpreter to handle the command and then check its
|
|
|
|
return status.
|
|
|
|
"""
|
|
|
|
# Fail fast if 'cmd' is not meaningful.
|
[trace][intel-pt] Implement the basic decoding functionality
Depends on D89408.
This diff finally implements trace decoding!
The current interface is
$ trace load /path/to/trace/session/file.json
$ thread trace dump instructions
thread #1: tid = 3842849, total instructions = 22
[ 0] 0x40052d
[ 1] 0x40052d
...
[19] 0x400521
$ # simply enter, which is a repeat command
[20] 0x40052d
[21] 0x400529
...
This doesn't do any disassembly, which will be done in the next diff.
Changes:
- Added an IntelPTDecoder class, that is a wrapper for libipt, which is the actual library that performs the decoding.
- Added TraceThreadDecoder class that decodes traces and memoizes the result to avoid repeating the decoding step.
- Added a DecodedThread class, which represents the output from decoding and that for the time being only stores the list of reconstructed instructions. Later it'll contain the function call hierarchy, which will enable reconstructing backtraces.
- Added basic APIs for accessing the trace in Trace.h:
- GetInstructionCount, which counts the number of instructions traced for a given thread
- IsTraceFailed, which returns an Error if decoding a thread failed
- ForEachInstruction, which iterates on the instructions traced for a given thread, concealing the internal storage of threads, as plug-ins can decide to generate the instructions on the fly or to store them all in a vector, like I do.
- DumpTraceInstructions was updated to print the instructions or show an error message if decoding was impossible.
- Tests included
Differential Revision: https://reviews.llvm.org/D89283
2020-10-14 10:26:10 -07:00
|
|
|
if cmd is None:
|
2010-08-19 23:26:59 +00:00
|
|
|
raise Exception("Bad 'cmd' parameter encountered")
|
2010-08-20 17:57:32 +00:00
|
|
|
|
2010-08-31 17:42:54 +00:00
|
|
|
trace = (True if traceAlways else trace)
|
2010-08-23 17:10:44 +00:00
|
|
|
|
2013-08-26 23:57:52 +00:00
|
|
|
if cmd.startswith("target create "):
|
|
|
|
cmd = cmd.replace("target create ", "file ")
|
|
|
|
|
2010-09-01 00:15:19 +00:00
|
|
|
running = (cmd.startswith("run") or cmd.startswith("process launch"))
|
2010-08-20 17:57:32 +00:00
|
|
|
|
2010-09-01 00:15:19 +00:00
|
|
|
for i in range(self.maxLaunchCount if running else 1):
|
2013-06-17 22:51:50 +00:00
|
|
|
self.ci.HandleCommand(cmd, self.res, inHistory)
|
2010-08-20 17:57:32 +00:00
|
|
|
|
2010-10-15 01:18:29 +00:00
|
|
|
with recording(self, trace) as sbuf:
|
2015-10-19 23:45:41 +00:00
|
|
|
print("runCmd:", cmd, file=sbuf)
|
2010-10-15 16:13:00 +00:00
|
|
|
if not check:
|
2015-10-19 23:45:41 +00:00
|
|
|
print("check of return status not required", file=sbuf)
|
2010-08-25 18:49:48 +00:00
|
|
|
if self.res.Succeeded():
|
2015-10-19 23:45:41 +00:00
|
|
|
print("output:", self.res.GetOutput(), file=sbuf)
|
2010-08-25 18:49:48 +00:00
|
|
|
else:
|
2015-10-19 23:45:41 +00:00
|
|
|
print("runCmd failed!", file=sbuf)
|
|
|
|
print(self.res.GetError(), file=sbuf)
|
2010-08-20 17:57:32 +00:00
|
|
|
|
2010-08-20 21:03:09 +00:00
|
|
|
if self.res.Succeeded():
|
2010-08-25 18:49:48 +00:00
|
|
|
break
|
2010-10-15 01:18:29 +00:00
|
|
|
elif running:
|
2011-01-19 02:02:08 +00:00
|
|
|
# For process launch, wait some time before possible next try.
|
|
|
|
time.sleep(self.timeWaitNextLaunch)
|
2012-08-01 19:56:04 +00:00
|
|
|
with recording(self, trace) as sbuf:
|
2015-10-19 23:45:41 +00:00
|
|
|
print("Command '" + cmd + "' failed!", file=sbuf)
|
2010-08-20 17:57:32 +00:00
|
|
|
|
2010-08-19 23:26:59 +00:00
|
|
|
if check:
|
2018-08-09 15:29:32 +00:00
|
|
|
output = ""
|
|
|
|
if self.res.GetOutput():
|
2019-08-29 18:37:05 +00:00
|
|
|
output += "\nCommand output:\n" + self.res.GetOutput()
|
2018-08-09 15:29:32 +00:00
|
|
|
if self.res.GetError():
|
2019-08-29 18:37:05 +00:00
|
|
|
output += "\nError output:\n" + self.res.GetError()
|
2018-08-09 15:57:43 +00:00
|
|
|
if msg:
|
2019-08-29 18:37:05 +00:00
|
|
|
msg += output
|
2018-08-09 15:57:43 +00:00
|
|
|
if cmd:
|
2019-08-29 18:37:05 +00:00
|
|
|
cmd += output
|
2015-07-01 23:56:30 +00:00
|
|
|
self.assertTrue(self.res.Succeeded(),
|
2018-08-09 15:57:43 +00:00
|
|
|
msg if (msg) else CMD_MSG(cmd))
|
2010-08-19 23:26:59 +00:00
|
|
|
|
2012-09-22 00:05:11 +00:00
|
|
|
def match(
|
|
|
|
self,
|
|
|
|
str,
|
|
|
|
patterns,
|
|
|
|
msg=None,
|
|
|
|
trace=False,
|
|
|
|
error=False,
|
|
|
|
matching=True,
|
|
|
|
exe=True):
|
|
|
|
"""run command in str, and match the result against regexp in patterns returning the match object for the first matching pattern
|
|
|
|
|
|
|
|
Otherwise, all the arguments have the same meanings as for the expect function"""
|
|
|
|
|
|
|
|
trace = (True if traceAlways else trace)
|
|
|
|
|
|
|
|
if exe:
|
|
|
|
# First run the command. If we are expecting error, set check=False.
|
|
|
|
# Pass the assert message along since it provides more semantic
|
|
|
|
# info.
|
|
|
|
self.runCmd(
|
|
|
|
str,
|
|
|
|
msg=msg,
|
|
|
|
trace=(
|
|
|
|
True if trace else False),
|
|
|
|
check=not error)
|
|
|
|
|
|
|
|
# Then compare the output against expected strings.
|
|
|
|
output = self.res.GetError() if error else self.res.GetOutput()
|
|
|
|
|
|
|
|
# If error is True, the API client expects the command to fail!
|
|
|
|
if error:
|
|
|
|
self.assertFalse(self.res.Succeeded(),
|
|
|
|
"Command '" + str + "' is expected to fail!")
|
|
|
|
else:
|
|
|
|
# No execution required, just compare str against the golden input.
|
|
|
|
output = str
|
|
|
|
with recording(self, trace) as sbuf:
|
2015-10-19 23:45:41 +00:00
|
|
|
print("looking at:", output, file=sbuf)
|
2012-09-22 00:05:11 +00:00
|
|
|
|
|
|
|
# The heading says either "Expecting" or "Not expecting".
|
|
|
|
heading = "Expecting" if matching else "Not expecting"
|
|
|
|
|
|
|
|
for pattern in patterns:
|
|
|
|
# Match Objects always have a boolean value of True.
|
|
|
|
match_object = re.search(pattern, output)
|
|
|
|
matched = bool(match_object)
|
|
|
|
with recording(self, trace) as sbuf:
|
2015-10-19 23:45:41 +00:00
|
|
|
print("%s pattern: %s" % (heading, pattern), file=sbuf)
|
|
|
|
print("Matched" if matched else "Not matched", file=sbuf)
|
2012-09-22 00:05:11 +00:00
|
|
|
if matched:
|
|
|
|
break
|
|
|
|
|
|
|
|
self.assertTrue(matched if matching else not matched,
|
2016-03-08 18:58:48 +00:00
|
|
|
msg if msg else EXP_MSG(str, output, exe))
|
2012-09-22 00:05:11 +00:00
|
|
|
|
|
|
|
return match_object
|
2016-09-06 20:57:50 +00:00
|
|
|
|
2020-05-27 19:21:54 +02:00
|
|
|
def check_completion_with_desc(self, str_input, match_desc_pairs, enforce_order=False):
|
|
|
|
"""
|
|
|
|
Checks that when the given input is completed at the given list of
|
|
|
|
completions and descriptions is returned.
|
|
|
|
:param str_input: The input that should be completed. The completion happens at the end of the string.
|
|
|
|
:param match_desc_pairs: A list of pairs that indicate what completions have to be in the list of
|
|
|
|
completions returned by LLDB. The first element of the pair is the completion
|
|
|
|
string that LLDB should generate and the second element the description.
|
|
|
|
:param enforce_order: True iff the order in which the completions are returned by LLDB
|
|
|
|
should match the order of the match_desc_pairs pairs.
|
|
|
|
"""
|
2018-09-13 21:26:00 +00:00
|
|
|
interp = self.dbg.GetCommandInterpreter()
|
|
|
|
match_strings = lldb.SBStringList()
|
|
|
|
description_strings = lldb.SBStringList()
|
|
|
|
num_matches = interp.HandleCompletionWithDescriptions(str_input, len(str_input), 0, -1, match_strings, description_strings)
|
|
|
|
self.assertEqual(len(description_strings), len(match_strings))
|
|
|
|
|
2020-05-27 19:21:54 +02:00
|
|
|
# The index of the last matched description in description_strings or
|
|
|
|
# -1 if no description has been matched yet.
|
|
|
|
last_found_index = -1
|
|
|
|
out_of_order_errors = ""
|
2018-09-13 21:26:00 +00:00
|
|
|
missing_pairs = []
|
|
|
|
for pair in match_desc_pairs:
|
|
|
|
found_pair = False
|
|
|
|
for i in range(num_matches + 1):
|
|
|
|
match_candidate = match_strings.GetStringAtIndex(i)
|
|
|
|
description_candidate = description_strings.GetStringAtIndex(i)
|
|
|
|
if match_candidate == pair[0] and description_candidate == pair[1]:
|
|
|
|
found_pair = True
|
2020-05-27 19:21:54 +02:00
|
|
|
if enforce_order and last_found_index > i:
|
|
|
|
new_err = ("Found completion " + pair[0] + " at index " +
|
|
|
|
str(i) + " in returned completion list but " +
|
|
|
|
"should have been after completion " +
|
|
|
|
match_strings.GetStringAtIndex(last_found_index) +
|
|
|
|
" (index:" + str(last_found_index) + ")\n")
|
|
|
|
out_of_order_errors += new_err
|
|
|
|
last_found_index = i
|
2018-09-13 21:26:00 +00:00
|
|
|
break
|
|
|
|
if not found_pair:
|
|
|
|
missing_pairs.append(pair)
|
|
|
|
|
2020-05-27 19:21:54 +02:00
|
|
|
error_msg = ""
|
|
|
|
got_failure = False
|
2018-09-13 21:26:00 +00:00
|
|
|
if len(missing_pairs):
|
2020-05-27 19:21:54 +02:00
|
|
|
got_failure = True
|
|
|
|
error_msg += "Missing pairs:\n"
|
2018-09-13 21:26:00 +00:00
|
|
|
for pair in missing_pairs:
|
|
|
|
error_msg += " [" + pair[0] + ":" + pair[1] + "]\n"
|
2020-05-27 19:21:54 +02:00
|
|
|
if len(out_of_order_errors):
|
|
|
|
got_failure = True
|
|
|
|
error_msg += out_of_order_errors
|
|
|
|
if got_failure:
|
2018-09-13 21:26:00 +00:00
|
|
|
error_msg += "Got the following " + str(num_matches) + " completions back:\n"
|
|
|
|
for i in range(num_matches + 1):
|
|
|
|
match_candidate = match_strings.GetStringAtIndex(i)
|
|
|
|
description_candidate = description_strings.GetStringAtIndex(i)
|
2020-05-27 19:21:54 +02:00
|
|
|
error_msg += "[" + match_candidate + ":" + description_candidate + "] index " + str(i) + "\n"
|
|
|
|
self.assertFalse(got_failure, error_msg)
|
2018-08-30 17:29:37 +00:00
|
|
|
|
|
|
|
def complete_exactly(self, str_input, patterns):
|
|
|
|
self.complete_from_to(str_input, patterns, True)
|
|
|
|
|
|
|
|
def complete_from_to(self, str_input, patterns, turn_off_re_match=False):
|
|
|
|
"""Test that the completion mechanism completes str_input to patterns,
|
|
|
|
where patterns could be a pattern-string or a list of pattern-strings"""
|
|
|
|
# Patterns should not be None in order to proceed.
|
|
|
|
self.assertFalse(patterns is None)
|
|
|
|
# And should be either a string or list of strings. Check for list type
|
|
|
|
# below, if not, make a list out of the singleton string. If patterns
|
|
|
|
# is not a string or not a list of strings, there'll be runtime errors
|
|
|
|
# later on.
|
|
|
|
if not isinstance(patterns, list):
|
|
|
|
patterns = [patterns]
|
|
|
|
|
|
|
|
interp = self.dbg.GetCommandInterpreter()
|
|
|
|
match_strings = lldb.SBStringList()
|
|
|
|
num_matches = interp.HandleCompletion(str_input, len(str_input), 0, -1, match_strings)
|
|
|
|
common_match = match_strings.GetStringAtIndex(0)
|
|
|
|
if num_matches == 0:
|
|
|
|
compare_string = str_input
|
|
|
|
else:
|
|
|
|
if common_match != None and len(common_match) > 0:
|
|
|
|
compare_string = str_input + common_match
|
|
|
|
else:
|
|
|
|
compare_string = ""
|
|
|
|
for idx in range(1, num_matches+1):
|
|
|
|
compare_string += match_strings.GetStringAtIndex(idx) + "\n"
|
|
|
|
|
|
|
|
for p in patterns:
|
|
|
|
if turn_off_re_match:
|
|
|
|
self.expect(
|
|
|
|
compare_string, msg=COMPLETION_MSG(
|
|
|
|
str_input, p, match_strings), exe=False, substrs=[p])
|
|
|
|
else:
|
|
|
|
self.expect(
|
|
|
|
compare_string, msg=COMPLETION_MSG(
|
|
|
|
str_input, p, match_strings), exe=False, patterns=[p])
|
|
|
|
|
2019-08-28 10:17:23 +00:00
|
|
|
def completions_match(self, command, completions):
|
|
|
|
"""Checks that the completions for the given command are equal to the
|
|
|
|
given list of completions"""
|
|
|
|
interp = self.dbg.GetCommandInterpreter()
|
|
|
|
match_strings = lldb.SBStringList()
|
|
|
|
interp.HandleCompletion(command, len(command), 0, -1, match_strings)
|
|
|
|
# match_strings is a 1-indexed list, so we have to slice...
|
|
|
|
self.assertItemsEqual(completions, list(match_strings)[1:],
|
|
|
|
"List of returned completion is wrong")
|
|
|
|
|
[lldb] Fix TestCompletion's pid completion failing randomly
TestCompletion is randomly failing on some bots. The error message however states
that the computed completions actually do contain the expected pid we're
looking for, so there shouldn't be any test failure.
The reason for that turns out to be that complete_from_to is actually used
for testing two different features. It can be used for testing what the
common prefix for the list of completions is and *also* for checking all the
possible completions that are returned for a command. Which one of the two
things should be checked can't be defined by a parameter to the function, but
is instead guessed by the test method instead based on the results that were
returned. If there is a common prefix in all completions, then that prefix
is searched and otherwise all completions are searched.
For TestCompletion's pid test this behaviour leads to the strange test failures.
If all the pid's that our test LLDB can see have a common prefix (e.g., it
can only see pids [123, 122, 10004, 10000] -> common prefix '1'), then
complete_from_to check that the common prefix contains our pid, which is
always fails ('1' doesn't contain '123' or any other valid pid). If there
isn't a common prefix (e.g., pids are [123, 122, 10004, 777]) then
complete_from_to will check the list of completions instead which works correctly.
This patch is fixing this by adding a simple check method that doesn't
have this behaviour and is simply searching the returned list of completions.
This should get the bots green while I'm working on a proper fix that fixes
complete_from_to.
2020-08-31 11:58:26 +02:00
|
|
|
def completions_contain(self, command, completions):
|
|
|
|
"""Checks that the completions for the given command contain the given
|
|
|
|
list of completions."""
|
|
|
|
interp = self.dbg.GetCommandInterpreter()
|
|
|
|
match_strings = lldb.SBStringList()
|
|
|
|
interp.HandleCompletion(command, len(command), 0, -1, match_strings)
|
|
|
|
for completion in completions:
|
|
|
|
# match_strings is a 1-indexed list, so we have to slice...
|
|
|
|
self.assertIn(completion, list(match_strings)[1:],
|
|
|
|
"Couldn't find expected completion")
|
|
|
|
|
2018-09-18 19:31:47 +00:00
|
|
|
def filecheck(
|
|
|
|
self,
|
|
|
|
command,
|
|
|
|
check_file,
|
2019-09-10 18:36:53 +00:00
|
|
|
filecheck_options = '',
|
|
|
|
expect_cmd_failure = False):
|
2018-09-18 19:31:47 +00:00
|
|
|
# Run the command.
|
|
|
|
self.runCmd(
|
|
|
|
command,
|
2019-09-10 18:36:53 +00:00
|
|
|
check=(not expect_cmd_failure),
|
2018-09-18 19:31:47 +00:00
|
|
|
msg="FileCheck'ing result of `{0}`".format(command))
|
|
|
|
|
2019-09-10 18:36:53 +00:00
|
|
|
self.assertTrue((not expect_cmd_failure) == self.res.Succeeded())
|
|
|
|
|
2018-09-18 19:31:47 +00:00
|
|
|
# Get the error text if there was an error, and the regular text if not.
|
|
|
|
output = self.res.GetOutput() if self.res.Succeeded() \
|
|
|
|
else self.res.GetError()
|
|
|
|
|
|
|
|
# Assemble the absolute path to the check file. As a convenience for
|
|
|
|
# LLDB inline tests, assume that the check file is a relative path to
|
|
|
|
# a file within the inline test directory.
|
|
|
|
if check_file.endswith('.pyc'):
|
|
|
|
check_file = check_file[:-1]
|
2018-09-20 23:56:39 +00:00
|
|
|
check_file_abs = os.path.abspath(check_file)
|
2018-09-18 19:31:47 +00:00
|
|
|
|
|
|
|
# Run FileCheck.
|
|
|
|
filecheck_bin = configuration.get_filecheck_path()
|
2018-10-12 19:29:59 +00:00
|
|
|
if not filecheck_bin:
|
|
|
|
self.assertTrue(False, "No valid FileCheck executable specified")
|
2018-09-18 19:31:47 +00:00
|
|
|
filecheck_args = [filecheck_bin, check_file_abs]
|
|
|
|
if filecheck_options:
|
|
|
|
filecheck_args.append(filecheck_options)
|
2018-10-12 17:56:01 +00:00
|
|
|
subproc = Popen(filecheck_args, stdin=PIPE, stdout=PIPE, stderr=PIPE, universal_newlines = True)
|
2018-09-18 19:31:47 +00:00
|
|
|
cmd_stdout, cmd_stderr = subproc.communicate(input=output)
|
|
|
|
cmd_status = subproc.returncode
|
|
|
|
|
2018-09-20 23:56:39 +00:00
|
|
|
filecheck_cmd = " ".join(filecheck_args)
|
|
|
|
filecheck_trace = """
|
|
|
|
--- FileCheck trace (code={0}) ---
|
2018-09-18 19:31:47 +00:00
|
|
|
{1}
|
|
|
|
|
|
|
|
FileCheck input:
|
|
|
|
{2}
|
|
|
|
|
|
|
|
FileCheck output:
|
|
|
|
{3}
|
|
|
|
{4}
|
2018-09-20 23:56:39 +00:00
|
|
|
""".format(cmd_status, filecheck_cmd, output, cmd_stdout, cmd_stderr)
|
|
|
|
|
|
|
|
trace = cmd_status != 0 or traceAlways
|
|
|
|
with recording(self, trace) as sbuf:
|
|
|
|
print(filecheck_trace, file=sbuf)
|
|
|
|
|
|
|
|
self.assertTrue(cmd_status == 0)
|
2018-09-18 19:31:47 +00:00
|
|
|
|
2013-06-17 22:51:50 +00:00
|
|
|
def expect(
|
|
|
|
self,
|
|
|
|
str,
|
|
|
|
msg=None,
|
|
|
|
patterns=None,
|
|
|
|
startstr=None,
|
|
|
|
endstr=None,
|
|
|
|
substrs=None,
|
|
|
|
trace=False,
|
|
|
|
error=False,
|
2020-01-31 14:13:20 -08:00
|
|
|
ordered=True,
|
2013-06-17 22:51:50 +00:00
|
|
|
matching=True,
|
|
|
|
exe=True,
|
|
|
|
inHistory=False):
|
2010-08-19 23:26:59 +00:00
|
|
|
"""
|
|
|
|
Similar to runCmd; with additional expect style output matching ability.
|
|
|
|
|
|
|
|
Ask the command interpreter to handle the command and then check its
|
|
|
|
return status. The 'msg' parameter specifies an informational assert
|
|
|
|
message. We expect the output from running the command to start with
|
2010-09-21 21:08:53 +00:00
|
|
|
'startstr', matches the substrings contained in 'substrs', and regexp
|
|
|
|
matches the patterns contained in 'patterns'.
|
2010-09-17 22:28:51 +00:00
|
|
|
|
2020-01-31 14:13:20 -08:00
|
|
|
When matching is true and ordered is true, which are both the default,
|
|
|
|
the strings in the substrs array have to appear in the command output
|
|
|
|
in the order in which they appear in the array.
|
|
|
|
|
2010-09-17 22:28:51 +00:00
|
|
|
If the keyword argument error is set to True, it signifies that the API
|
|
|
|
client is expecting the command to fail. In this case, the error stream
|
2010-09-17 22:45:27 +00:00
|
|
|
from running the command is retrieved and compared against the golden
|
2010-09-17 22:28:51 +00:00
|
|
|
input, instead.
|
2010-09-21 21:08:53 +00:00
|
|
|
|
|
|
|
If the keyword argument matching is set to False, it signifies that the API
|
|
|
|
client is expecting the output of the command not to match the golden
|
|
|
|
input.
|
2010-09-21 23:33:30 +00:00
|
|
|
|
|
|
|
Finally, the required argument 'str' represents the lldb command to be
|
|
|
|
sent to the command interpreter. In case the keyword argument 'exe' is
|
|
|
|
set to False, the 'str' is treated as a string to be matched/not-matched
|
|
|
|
against the golden input.
|
2010-08-19 23:26:59 +00:00
|
|
|
"""
|
2020-10-03 22:51:43 -07:00
|
|
|
# Catch cases where `expect` has been miscalled. Specifically, prevent
|
|
|
|
# this easy to make mistake:
|
|
|
|
# self.expect("lldb command", "some substr")
|
|
|
|
# The `msg` parameter is used only when a failed match occurs. A failed
|
|
|
|
# match can only occur when one of `patterns`, `startstr`, `endstr`, or
|
|
|
|
# `substrs` has been given. Thus, if a `msg` is given, it's an error to
|
|
|
|
# not also provide one of the matcher parameters.
|
|
|
|
if msg and not (patterns or startstr or endstr or substrs or error):
|
|
|
|
assert False, "expect() missing a matcher argument"
|
|
|
|
|
|
|
|
# Check `patterns` and `substrs` are not accidentally given as strings.
|
|
|
|
assert not isinstance(patterns, six.string_types), \
|
|
|
|
"patterns must be a collection of strings"
|
|
|
|
assert not isinstance(substrs, six.string_types), \
|
|
|
|
"substrs must be a collection of strings"
|
|
|
|
|
2010-08-31 17:42:54 +00:00
|
|
|
trace = (True if traceAlways else trace)
|
2010-08-23 17:10:44 +00:00
|
|
|
|
2010-09-21 23:33:30 +00:00
|
|
|
if exe:
|
|
|
|
# First run the command. If we are expecting error, set check=False.
|
2010-10-28 21:10:32 +00:00
|
|
|
# Pass the assert message along since it provides more semantic
|
|
|
|
# info.
|
2013-06-17 22:51:50 +00:00
|
|
|
self.runCmd(
|
|
|
|
str,
|
|
|
|
msg=msg,
|
|
|
|
trace=(
|
|
|
|
True if trace else False),
|
|
|
|
check=not error,
|
|
|
|
inHistory=inHistory)
|
2010-08-19 23:26:59 +00:00
|
|
|
|
2010-09-21 23:33:30 +00:00
|
|
|
# Then compare the output against expected strings.
|
|
|
|
output = self.res.GetError() if error else self.res.GetOutput()
|
2010-09-17 22:28:51 +00:00
|
|
|
|
2010-09-21 23:33:30 +00:00
|
|
|
# If error is True, the API client expects the command to fail!
|
|
|
|
if error:
|
|
|
|
self.assertFalse(self.res.Succeeded(),
|
|
|
|
"Command '" + str + "' is expected to fail!")
|
|
|
|
else:
|
|
|
|
# No execution required, just compare str against the golden input.
|
2012-10-23 00:09:02 +00:00
|
|
|
if isinstance(str, lldb.SBCommandReturnObject):
|
|
|
|
output = str.GetOutput()
|
|
|
|
else:
|
|
|
|
output = str
|
2010-10-15 01:18:29 +00:00
|
|
|
with recording(self, trace) as sbuf:
|
2015-10-19 23:45:41 +00:00
|
|
|
print("looking at:", output, file=sbuf)
|
2010-09-17 22:28:51 +00:00
|
|
|
|
2020-08-28 12:30:56 +01:00
|
|
|
expecting_str = "Expecting" if matching else "Not expecting"
|
|
|
|
def found_str(matched):
|
|
|
|
return "was found" if matched else "was not found"
|
|
|
|
|
|
|
|
# To be used as assert fail message and/or trace content
|
|
|
|
log_lines = [
|
|
|
|
"{}:".format("Ran command" if exe else "Checking string"),
|
|
|
|
"\"{}\"".format(str),
|
|
|
|
# Space out command and output
|
|
|
|
"",
|
|
|
|
]
|
|
|
|
if exe:
|
|
|
|
# Newline before output to make large strings more readable
|
|
|
|
log_lines.append("Got output:\n{}".format(output))
|
2010-09-21 21:08:53 +00:00
|
|
|
|
2020-08-28 12:30:56 +01:00
|
|
|
# Assume that we start matched if we want a match
|
|
|
|
# Meaning if you have no conditions, matching or
|
|
|
|
# not matching will always pass
|
|
|
|
matched = matching
|
2010-08-20 18:25:15 +00:00
|
|
|
|
2020-08-28 12:30:56 +01:00
|
|
|
# We will stop checking on first failure
|
2010-10-15 01:18:29 +00:00
|
|
|
if startstr:
|
2020-08-28 12:30:56 +01:00
|
|
|
matched = output.startswith(startstr)
|
|
|
|
log_lines.append("{} start string: \"{}\" ({})".format(
|
|
|
|
expecting_str, startstr, found_str(matched)))
|
2010-08-20 18:25:15 +00:00
|
|
|
|
2020-08-28 12:30:56 +01:00
|
|
|
if endstr and matched == matching:
|
2011-09-30 21:48:35 +00:00
|
|
|
matched = output.endswith(endstr)
|
2020-08-28 12:30:56 +01:00
|
|
|
log_lines.append("{} end string: \"{}\" ({})".format(
|
|
|
|
expecting_str, endstr, found_str(matched)))
|
2011-09-30 21:48:35 +00:00
|
|
|
|
2020-08-28 12:30:56 +01:00
|
|
|
if substrs and matched == matching:
|
2020-01-31 14:13:20 -08:00
|
|
|
start = 0
|
2016-03-08 18:58:48 +00:00
|
|
|
for substr in substrs:
|
2020-01-31 14:13:20 -08:00
|
|
|
index = output[start:].find(substr)
|
|
|
|
start = start + index if ordered and matching else 0
|
|
|
|
matched = index != -1
|
2020-08-28 12:30:56 +01:00
|
|
|
log_lines.append("{} sub string: \"{}\" ({})".format(
|
|
|
|
expecting_str, substr, found_str(matched)))
|
|
|
|
|
|
|
|
if matched != matching:
|
2010-09-21 21:08:53 +00:00
|
|
|
break
|
|
|
|
|
2020-08-28 12:30:56 +01:00
|
|
|
if patterns and matched == matching:
|
2010-09-21 21:08:53 +00:00
|
|
|
for pattern in patterns:
|
2020-08-28 12:30:56 +01:00
|
|
|
matched = re.search(pattern, output)
|
|
|
|
|
|
|
|
pattern_line = "{} regex pattern: \"{}\" ({}".format(
|
|
|
|
expecting_str, pattern, found_str(matched))
|
|
|
|
if matched:
|
|
|
|
pattern_line += ", matched \"{}\"".format(
|
|
|
|
matched.group(0))
|
|
|
|
pattern_line += ")"
|
|
|
|
log_lines.append(pattern_line)
|
|
|
|
|
|
|
|
# Convert to bool because match objects
|
|
|
|
# are True-ish but != True itself
|
|
|
|
matched = bool(matched)
|
|
|
|
if matched != matching:
|
2010-08-19 23:26:59 +00:00
|
|
|
break
|
|
|
|
|
2020-08-28 12:30:56 +01:00
|
|
|
# If a check failed, add any extra assert message
|
|
|
|
if msg is not None and matched != matching:
|
|
|
|
log_lines.append(msg)
|
|
|
|
|
|
|
|
log_msg = "\n".join(log_lines)
|
|
|
|
with recording(self, trace) as sbuf:
|
|
|
|
print(log_msg, file=sbuf)
|
|
|
|
if matched != matching:
|
|
|
|
self.fail(log_msg)
|
2010-08-19 23:26:59 +00:00
|
|
|
|
2020-01-15 13:03:25 +01:00
|
|
|
def expect_expr(
|
|
|
|
self,
|
|
|
|
expr,
|
|
|
|
result_summary=None,
|
|
|
|
result_value=None,
|
|
|
|
result_type=None,
|
2020-08-12 11:27:21 +02:00
|
|
|
result_children=None
|
2020-01-15 13:03:25 +01:00
|
|
|
):
|
|
|
|
"""
|
|
|
|
Evaluates the given expression and verifies the result.
|
|
|
|
:param expr: The expression as a string.
|
|
|
|
:param result_summary: The summary that the expression should have. None if the summary should not be checked.
|
|
|
|
:param result_value: The value that the expression should have. None if the value should not be checked.
|
|
|
|
:param result_type: The type that the expression result should have. None if the type should not be checked.
|
2020-08-12 11:27:21 +02:00
|
|
|
:param result_children: The expected children of the expression result
|
|
|
|
as a list of ValueChecks. None if the children shouldn't be checked.
|
2020-01-15 13:03:25 +01:00
|
|
|
"""
|
|
|
|
self.assertTrue(expr.strip() == expr, "Expression contains trailing/leading whitespace: '" + expr + "'")
|
|
|
|
|
|
|
|
frame = self.frame()
|
2020-02-24 09:04:18 +01:00
|
|
|
options = lldb.SBExpressionOptions()
|
|
|
|
|
|
|
|
# Disable fix-its that tests don't pass by accident.
|
|
|
|
options.SetAutoApplyFixIts(False)
|
|
|
|
|
|
|
|
# Set the usual default options for normal expressions.
|
|
|
|
options.SetIgnoreBreakpoints(True)
|
|
|
|
|
2020-04-01 09:39:14 +02:00
|
|
|
if self.frame().IsValid():
|
2020-07-08 12:32:07 +02:00
|
|
|
options.SetLanguage(frame.GuessLanguage())
|
|
|
|
eval_result = self.frame().EvaluateExpression(expr, options)
|
2020-04-01 09:39:14 +02:00
|
|
|
else:
|
2020-07-15 13:55:32 +02:00
|
|
|
target = self.target()
|
|
|
|
# If there is no selected target, run the expression in the dummy
|
|
|
|
# target.
|
|
|
|
if not target.IsValid():
|
|
|
|
target = self.dbg.GetDummyTarget()
|
|
|
|
eval_result = target.EvaluateExpression(expr, options)
|
2020-01-15 13:03:25 +01:00
|
|
|
|
2020-08-12 11:27:21 +02:00
|
|
|
value_check = ValueCheck(type=result_type, value=result_value,
|
|
|
|
summary=result_summary, children=result_children)
|
|
|
|
value_check.check_value(self, eval_result, str(eval_result))
|
2020-08-18 15:46:26 +02:00
|
|
|
return eval_result
|
2020-01-15 13:03:25 +01:00
|
|
|
|
2020-11-12 16:07:58 +01:00
|
|
|
def expect_var_path(
|
|
|
|
self,
|
|
|
|
var_path,
|
|
|
|
summary=None,
|
|
|
|
value=None,
|
|
|
|
type=None,
|
|
|
|
children=None
|
|
|
|
):
|
|
|
|
"""
|
|
|
|
Evaluates the given variable path and verifies the result.
|
|
|
|
See also 'frame variable' and SBFrame.GetValueForVariablePath.
|
|
|
|
:param var_path: The variable path as a string.
|
|
|
|
:param summary: The summary that the variable should have. None if the summary should not be checked.
|
|
|
|
:param value: The value that the variable should have. None if the value should not be checked.
|
|
|
|
:param type: The type that the variable result should have. None if the type should not be checked.
|
|
|
|
:param children: The expected children of the variable as a list of ValueChecks.
|
|
|
|
None if the children shouldn't be checked.
|
|
|
|
"""
|
|
|
|
self.assertTrue(var_path.strip() == var_path,
|
|
|
|
"Expression contains trailing/leading whitespace: '" + var_path + "'")
|
|
|
|
|
|
|
|
frame = self.frame()
|
|
|
|
eval_result = frame.GetValueForVariablePath(var_path)
|
|
|
|
|
|
|
|
value_check = ValueCheck(type=type, value=value,
|
|
|
|
summary=summary, children=children)
|
|
|
|
value_check.check_value(self, eval_result, str(eval_result))
|
|
|
|
return eval_result
|
|
|
|
|
[lldb/Test] Introduce "assertSuccess"
Summary:
A lot of our tests do 'self.assertTrue(error.Success()'. The problem
with that is that when this fails, it produces a completely useless
error message (False is not True) and the most important piece of
information -- the actual error message -- is completely hidden.
Sometimes we mitigate that by including the error message in the "msg"
argument, but this has two additional problems:
- as the msg argument is evaluated unconditionally, one needs to be
careful to not trigger an exception when the operation was actually
successful.
- it requires more typing, which means we often don't do it
assertSuccess solves these problems by taking the entire SBError object
as an argument. If the operation was unsuccessful, it can format a
reasonable error message itself. The function still accepts a "msg"
argument, which can include any additional context, but this context now
does not need to include the error message.
To demonstrate usage, I replace a number of existing assertTrue
assertions with the new function. As this process is not easily
automatable, I have just manually updated a representative sample. In
some cases, I did not update the code to use assertSuccess, but I went
for even higher-level assertion apis (runCmd, expect_expr), as these are
even shorter, and can produce even better failure messages.
Reviewers: teemperor, JDevlieghere
Subscribers: arphaman, lldb-commits
Tags: #lldb
Differential Revision: https://reviews.llvm.org/D82759
2020-06-29 13:51:46 +02:00
|
|
|
"""Assert that an lldb.SBError is in the "success" state."""
|
|
|
|
def assertSuccess(self, obj, msg=None):
|
|
|
|
if not obj.Success():
|
|
|
|
error = obj.GetCString()
|
|
|
|
self.fail(self._formatMessage(msg,
|
|
|
|
"'{}' is not success".format(error)))
|
|
|
|
|
Added the ability to cache the finalized symbol tables subsequent debug sessions to start faster.
This is an updated version of the https://reviews.llvm.org/D113789 patch with the following changes:
- We no longer modify modification times of the cache files
- Use LLVM caching and cache pruning instead of making a new cache mechanism (See DataFileCache.h/.cpp)
- Add signature to start of each file since we are not using modification times so we can tell when caches are stale and remove and re-create the cache file as files are changed
- Add settings to control the cache size, disk percentage and expiration in days to keep cache size under control
This patch enables symbol tables to be cached in the LLDB index cache directory. All cache files are in a single directory and the files use unique names to ensure that files from the same path will re-use the same file as files get modified. This means as files change, their cache files will be deleted and updated. The modification time of each of the cache files is not modified so that access based pruning of the cache can be implemented.
The symbol table cache files start with a signature that uniquely identifies a file on disk and contains one or more of the following items:
- object file UUID if available
- object file mod time if available
- object name for BSD archive .o files that are in .a files if available
If none of these signature items are available, then the file will not be cached. This keeps temporary object files from expressions from being cached.
When the cache files are loaded on subsequent debug sessions, the signature is compare and if the file has been modified (uuid changes, mod time changes, or object file mod time changes) then the cache file is deleted and re-created.
Module caching must be enabled by the user before this can be used:
symbols.enable-lldb-index-cache (boolean) = false
(lldb) settings set symbols.enable-lldb-index-cache true
There is also a setting that allows the user to specify a module cache directory that defaults to a directory that defaults to being next to the symbols.clang-modules-cache-path directory in a temp directory:
(lldb) settings show symbols.lldb-index-cache-path
/var/folders/9p/472sr0c55l9b20x2zg36b91h0000gn/C/lldb/IndexCache
If this setting is enabled, the finalized symbol tables will be serialized and saved to disc so they can be quickly loaded next time you debug.
Each module can cache one or more files in the index cache directory. The cache file names must be unique to a file on disk and its architecture and object name for .o files in BSD archives. This allows universal mach-o files to support caching multuple architectures in the same module cache directory. Making the file based on the this info allows this cache file to be deleted and replaced when the file gets updated on disk. This keeps the cache from growing over time during the compile/edit/debug cycle and prevents out of space issues.
If the cache is enabled, the symbol table will be loaded from the cache the next time you debug if the module has not changed.
The cache also has settings to control the size of the cache on disk. Each time LLDB starts up with the index cache enable, the cache will be pruned to ensure it stays within the user defined settings:
(lldb) settings set symbols.lldb-index-cache-expiration-days <days>
A value of zero will disable cache files from expiring when the cache is pruned. The default value is 7 currently.
(lldb) settings set symbols.lldb-index-cache-max-byte-size <size>
A value of zero will disable pruning based on a total byte size. The default value is zero currently.
(lldb) settings set symbols.lldb-index-cache-max-percent <percentage-of-disk-space>
A value of 100 will allow the disc to be filled to the max, a value of zero will disable percentage pruning. The default value is zero.
Reviewed By: labath, wallace
Differential Revision: https://reviews.llvm.org/D115324
2021-12-16 09:59:25 -08:00
|
|
|
def createTestTarget(self, file_path=None, msg=None,
|
|
|
|
load_dependent_modules=True):
|
2021-05-24 16:01:48 +02:00
|
|
|
"""
|
|
|
|
Creates a target from the file found at the given file path.
|
|
|
|
Asserts that the resulting target is valid.
|
|
|
|
:param file_path: The file path that should be used to create the target.
|
|
|
|
The default argument opens the current default test
|
|
|
|
executable in the current test directory.
|
|
|
|
:param msg: A custom error message.
|
|
|
|
"""
|
|
|
|
if file_path is None:
|
|
|
|
file_path = self.getBuildArtifact("a.out")
|
|
|
|
error = lldb.SBError()
|
|
|
|
triple = ""
|
|
|
|
platform = ""
|
|
|
|
target = self.dbg.CreateTarget(file_path, triple, platform,
|
|
|
|
load_dependent_modules, error)
|
|
|
|
if error.Fail():
|
|
|
|
err = "Couldn't create target for path '{}': {}".format(file_path,
|
|
|
|
str(error))
|
|
|
|
self.fail(self._formatMessage(msg, err))
|
|
|
|
|
|
|
|
self.assertTrue(target.IsValid(), "Got invalid target without error")
|
|
|
|
return target
|
|
|
|
|
2011-05-27 23:36:52 +00:00
|
|
|
# =================================================
|
|
|
|
# Misc. helper methods for debugging test execution
|
|
|
|
# =================================================
|
|
|
|
|
2011-07-11 19:15:11 +00:00
|
|
|
def DebugSBValue(self, val):
|
2010-08-31 17:42:54 +00:00
|
|
|
"""Debug print a SBValue object, if traceAlways is True."""
|
Python 3 - Turn on absolute imports, and fix existing imports.
Absolute imports were introduced in Python 2.5 as a feature
(e.g. from __future__ import absolute_import), and made default
in Python 3.
When absolute imports are enabled, the import system changes in
a couple of ways:
1) The `import foo` syntax will *only* search sys.path. If `foo`
isn't in sys.path, it won't be found. Period. Without absolute
imports, the import system will also search the same directory
that the importing file resides in, so that you can easily
import from the same folder.
2) From inside a package, you can use a dot syntax to refer to higher
levels of the current package. For example, if you are in the
package lldbsuite.test.utility, then ..foo refers to
lldbsuite.test.foo. You can use this notation with the
`from X import Y` syntax to write intra-package references. For
example, using the previous locationa s a starting point, writing
`from ..support import seven` would import lldbsuite.support.seven
Since this is now the default behavior in Python 3, this means that
importing from the same directory with `import foo` *no longer works*.
As a result, the only way to have portable code is to force absolute
imports for all versions of Python.
See PEP 0328 [https://www.python.org/dev/peps/pep-0328/] for more
information about absolute and relative imports.
Differential Revision: http://reviews.llvm.org/D14342
Reviewed By: Todd Fiala
llvm-svn: 252191
2015-11-05 19:22:28 +00:00
|
|
|
from .lldbutil import value_type_to_str
|
2010-11-03 21:37:58 +00:00
|
|
|
|
2010-08-31 17:42:54 +00:00
|
|
|
if not traceAlways:
|
2010-08-27 00:15:48 +00:00
|
|
|
return
|
|
|
|
|
|
|
|
err = sys.stderr
|
|
|
|
err.write(val.GetName() + ":\n")
|
2011-09-30 21:48:35 +00:00
|
|
|
err.write('\t' + "TypeName -> " + val.GetTypeName() + '\n')
|
|
|
|
err.write('\t' + "ByteSize -> " +
|
|
|
|
str(val.GetByteSize()) + '\n')
|
|
|
|
err.write('\t' + "NumChildren -> " +
|
|
|
|
str(val.GetNumChildren()) + '\n')
|
|
|
|
err.write('\t' + "Value -> " + str(val.GetValue()) + '\n')
|
|
|
|
err.write('\t' + "ValueAsUnsigned -> " +
|
|
|
|
str(val.GetValueAsUnsigned()) + '\n')
|
|
|
|
err.write(
|
|
|
|
'\t' +
|
|
|
|
"ValueType -> " +
|
|
|
|
value_type_to_str(
|
|
|
|
val.GetValueType()) +
|
|
|
|
'\n')
|
|
|
|
err.write('\t' + "Summary -> " + str(val.GetSummary()) + '\n')
|
|
|
|
err.write('\t' + "IsPointerType -> " +
|
|
|
|
str(val.TypeIsPointerType()) + '\n')
|
|
|
|
err.write('\t' + "Location -> " + val.GetLocation() + '\n')
|
2010-08-27 00:15:48 +00:00
|
|
|
|
2011-08-05 20:17:27 +00:00
|
|
|
def DebugSBType(self, type):
|
|
|
|
"""Debug print a SBType object, if traceAlways is True."""
|
|
|
|
if not traceAlways:
|
|
|
|
return
|
|
|
|
|
|
|
|
err = sys.stderr
|
|
|
|
err.write(type.GetName() + ":\n")
|
|
|
|
err.write('\t' + "ByteSize -> " +
|
|
|
|
str(type.GetByteSize()) + '\n')
|
2022-03-08 14:17:08 -08:00
|
|
|
err.write('\t' + "IsAggregateType -> " +
|
|
|
|
str(type.IsAggregateType()) + '\n')
|
2011-08-05 20:17:27 +00:00
|
|
|
err.write('\t' + "IsPointerType -> " +
|
|
|
|
str(type.IsPointerType()) + '\n')
|
|
|
|
err.write('\t' + "IsReferenceType -> " +
|
|
|
|
str(type.IsReferenceType()) + '\n')
|
|
|
|
|
2011-03-12 01:18:19 +00:00
|
|
|
def DebugPExpect(self, child):
|
|
|
|
"""Debug the spwaned pexpect object."""
|
|
|
|
if not traceAlways:
|
|
|
|
return
|
|
|
|
|
2015-10-19 23:45:41 +00:00
|
|
|
print(child)
|
2012-06-20 10:13:40 +00:00
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def RemoveTempFile(cls, file):
|
|
|
|
if os.path.exists(file):
|
2016-04-11 15:21:01 +00:00
|
|
|
remove_file(file)
|
|
|
|
|
|
|
|
# On Windows, the first attempt to delete a recently-touched file can fail
|
|
|
|
# because of a race with antimalware scanners. This function will detect a
|
|
|
|
# failure and retry.
|
2016-09-06 20:57:50 +00:00
|
|
|
|
|
|
|
|
2016-04-11 15:21:01 +00:00
|
|
|
def remove_file(file, num_retries=1, sleep_duration=0.5):
|
|
|
|
for i in range(num_retries + 1):
|
|
|
|
try:
|
2012-06-20 10:13:40 +00:00
|
|
|
os.remove(file)
|
2016-04-11 15:21:01 +00:00
|
|
|
return True
|
|
|
|
except:
|
|
|
|
time.sleep(sleep_duration)
|
|
|
|
continue
|
|
|
|
return False
|