2010-07-03 11:41:59 +08:00
|
|
|
"""
|
|
|
|
LLDB module which provides the abstract base class of lldb test case.
|
|
|
|
|
|
|
|
The concrete subclass can override lldbtest.TesBase in order to inherit the
|
|
|
|
common behavior for unitest.TestCase.setUp/tearDown implemented in this file.
|
|
|
|
|
|
|
|
The subclass should override the attribute mydir in order for the python runtime
|
|
|
|
to locate the individual test cases when running as part of a large test suite
|
|
|
|
or when running each test case as a separate python invocation.
|
|
|
|
|
|
|
|
./dotest.py provides a test driver which sets up the environment to run the
|
2012-05-17 04:41:28 +08:00
|
|
|
entire of part of the test suite . Example:
|
2010-09-03 06:25:47 +08:00
|
|
|
|
2012-05-17 04:41:28 +08:00
|
|
|
# Exercises the test suite in the types directory....
|
|
|
|
/Volumes/data/lldb/svn/ToT/test $ ./dotest.py -A x86_64 types
|
2010-09-03 06:25:47 +08:00
|
|
|
...
|
2010-08-24 01:10:44 +08:00
|
|
|
|
2012-05-17 04:41:28 +08: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-24 01:10:44 +08:00
|
|
|
|
2012-05-17 04:41:28 +08:00
|
|
|
Configuration: arch=x86_64 compiler=clang
|
|
|
|
----------------------------------------------------------------------
|
|
|
|
Collected 72 tests
|
2010-08-24 01:10:44 +08:00
|
|
|
|
2012-05-17 04:41:28 +08:00
|
|
|
........................................................................
|
2010-08-24 01:10:44 +08:00
|
|
|
----------------------------------------------------------------------
|
2012-05-17 04:41:28 +08:00
|
|
|
Ran 72 tests in 135.468s
|
2010-08-24 01:10:44 +08:00
|
|
|
|
2010-07-03 11:41:59 +08:00
|
|
|
OK
|
2016-09-07 04:57:50 +08:00
|
|
|
$
|
2010-07-03 11:41:59 +08: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-06 03:22:28 +08:00
|
|
|
from __future__ import absolute_import
|
2016-04-21 00:27:27 +08:00
|
|
|
from __future__ import print_function
|
2015-10-20 07:45:41 +08: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-06 03:22:28 +08:00
|
|
|
# System modules
|
2015-02-05 07:19:15 +08:00
|
|
|
import abc
|
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-06 03:22:28 +08:00
|
|
|
import collections
|
2019-02-15 02:48:05 +08:00
|
|
|
from distutils.version import LooseVersion
|
2016-02-05 07:04:17 +08:00
|
|
|
from functools import wraps
|
2015-10-16 06:39:55 +08:00
|
|
|
import gc
|
2015-05-10 23:22:09 +08:00
|
|
|
import glob
|
2015-11-17 07:58:20 +08:00
|
|
|
import inspect
|
2016-01-23 07:54:49 +08:00
|
|
|
import io
|
2012-10-25 02:14:21 +08:00
|
|
|
import os.path
|
2010-09-22 05:08:53 +08: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 20:04:46 +08:00
|
|
|
import shutil
|
2013-06-06 05:07:02 +08:00
|
|
|
import signal
|
2010-08-31 05:35:00 +08:00
|
|
|
from subprocess import *
|
2016-04-21 00:27:27 +08:00
|
|
|
import sys
|
2010-08-26 02:49:48 +08:00
|
|
|
import time
|
2016-04-21 00:27:27 +08:00
|
|
|
import traceback
|
2010-08-31 07:08:52 +08:00
|
|
|
import types
|
2018-01-30 18:41:46 +08:00
|
|
|
import distutils.spawn
|
2015-10-21 05:06:05 +08: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-06 03:22:28 +08:00
|
|
|
# Third-party modules
|
|
|
|
import unittest2
|
2015-10-21 05:06:05 +08:00
|
|
|
from six import add_metaclass
|
2015-10-22 01:48:52 +08:00
|
|
|
from six import StringIO as SixStringIO
|
2015-10-27 02:48:24 +08: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-06 03:22:28 +08:00
|
|
|
|
|
|
|
# LLDB modules
|
2016-02-02 02:12:59 +08:00
|
|
|
import use_lldb_suite
|
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-06 03:22:28 +08:00
|
|
|
import lldb
|
2015-12-08 09:15:30 +08:00
|
|
|
from . import configuration
|
2016-02-05 02:03:01 +08:00
|
|
|
from . import decorators
|
2016-02-04 03:12:30 +08: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-06 03:22:28 +08:00
|
|
|
from . import lldbtest_config
|
|
|
|
from . import lldbutil
|
|
|
|
from . import test_categories
|
2016-02-02 02:12:59 +08:00
|
|
|
from lldbsuite.support import encoded_file
|
2016-02-05 02:03:01 +08:00
|
|
|
from lldbsuite.support import funcutils
|
2015-06-05 08:22:49 +08:00
|
|
|
|
2010-10-12 06:25:46 +08:00
|
|
|
# See also dotest.parseOptionsAndInitTestdirs(), where the environment variables
|
2018-12-15 07:02:41 +08:00
|
|
|
# LLDB_COMMAND_TRACE is set from '-t' option.
|
2010-10-12 06:25:46 +08:00
|
|
|
|
|
|
|
# By default, traceAlways is False.
|
2016-09-07 04:57:50 +08:00
|
|
|
if "LLDB_COMMAND_TRACE" in os.environ and os.environ[
|
|
|
|
"LLDB_COMMAND_TRACE"] == "YES":
|
2010-09-01 01:42:54 +08:00
|
|
|
traceAlways = True
|
|
|
|
else:
|
|
|
|
traceAlways = False
|
|
|
|
|
2010-10-12 06:25:46 +08:00
|
|
|
# By default, doCleanup is True.
|
2016-09-07 04:57:50 +08:00
|
|
|
if "LLDB_DO_CLEANUP" in os.environ and os.environ["LLDB_DO_CLEANUP"] == "NO":
|
2010-10-12 06:25:46 +08:00
|
|
|
doCleanup = False
|
|
|
|
else:
|
|
|
|
doCleanup = True
|
|
|
|
|
2010-09-01 01:42:54 +08:00
|
|
|
|
2010-08-10 06:01:17 +08:00
|
|
|
#
|
|
|
|
# Some commonly used assert messages.
|
|
|
|
#
|
|
|
|
|
2010-09-18 06:45:27 +08:00
|
|
|
COMMAND_FAILED_AS_EXPECTED = "Command has failed as expected"
|
|
|
|
|
2010-08-10 06:01:17 +08:00
|
|
|
CURRENT_EXECUTABLE_SET = "Current executable set successfully"
|
|
|
|
|
2010-09-03 05:23:12 +08:00
|
|
|
PROCESS_IS_VALID = "Process is valid"
|
|
|
|
|
|
|
|
PROCESS_KILLED = "Process is killed successfully"
|
|
|
|
|
2010-12-23 09:12:19 +08:00
|
|
|
PROCESS_EXITED = "Process exited successfully"
|
|
|
|
|
|
|
|
PROCESS_STOPPED = "Process status should be stopped"
|
|
|
|
|
2015-07-02 07:56:30 +08:00
|
|
|
RUN_SUCCEEDED = "Process is launched successfully"
|
2010-08-10 06:01:17 +08:00
|
|
|
|
2010-08-10 07:44:24 +08:00
|
|
|
RUN_COMPLETED = "Process exited successfully"
|
2010-08-10 06:01:17 +08:00
|
|
|
|
2010-10-06 03:27:32 +08:00
|
|
|
BACKTRACE_DISPLAYED_CORRECTLY = "Backtrace displayed correctly"
|
|
|
|
|
2010-08-10 07:44:24 +08:00
|
|
|
BREAKPOINT_CREATED = "Breakpoint created successfully"
|
|
|
|
|
2010-12-04 08:07:24 +08:00
|
|
|
BREAKPOINT_STATE_CORRECT = "Breakpoint state is correct"
|
|
|
|
|
2010-08-18 05:33:31 +08:00
|
|
|
BREAKPOINT_PENDING_CREATED = "Pending breakpoint created successfully"
|
|
|
|
|
2010-08-10 07:44:24 +08:00
|
|
|
BREAKPOINT_HIT_ONCE = "Breakpoint resolved with hit cout = 1"
|
2010-08-10 06:01:17 +08:00
|
|
|
|
2010-10-01 01:06:24 +08:00
|
|
|
BREAKPOINT_HIT_TWICE = "Breakpoint resolved with hit cout = 2"
|
|
|
|
|
2010-10-16 02:07:09 +08:00
|
|
|
BREAKPOINT_HIT_THRICE = "Breakpoint resolved with hit cout = 3"
|
|
|
|
|
2012-10-25 02:24:14 +08:00
|
|
|
MISSING_EXPECTED_REGISTERS = "At least one expected register is unavailable."
|
|
|
|
|
2011-06-28 04:05:23 +08:00
|
|
|
OBJECT_PRINTED_CORRECTLY = "Object printed correctly"
|
|
|
|
|
2010-12-10 02:22:12 +08:00
|
|
|
SOURCE_DISPLAYED_CORRECTLY = "Source code displayed correctly"
|
|
|
|
|
2010-09-23 07:00:20 +08:00
|
|
|
STEP_OUT_SUCCEEDED = "Thread step-out succeeded"
|
|
|
|
|
2011-04-16 00:44:48 +08:00
|
|
|
STOPPED_DUE_TO_EXC_BAD_ACCESS = "Process should be stopped due to bad access exception"
|
|
|
|
|
2013-05-17 23:35:15 +08:00
|
|
|
STOPPED_DUE_TO_ASSERT = "Process should be stopped due to an assertion"
|
|
|
|
|
2010-11-11 07:46:38 +08:00
|
|
|
STOPPED_DUE_TO_BREAKPOINT = "Process should be stopped due to breakpoint"
|
2010-11-11 04:20:06 +08:00
|
|
|
|
2010-11-11 07:46:38 +08:00
|
|
|
STOPPED_DUE_TO_BREAKPOINT_WITH_STOP_REASON_AS = "%s, %s" % (
|
|
|
|
STOPPED_DUE_TO_BREAKPOINT, "instead, the actual stop reason is: '%s'")
|
2010-08-10 06:01:17 +08:00
|
|
|
|
2010-10-21 02:38:48 +08:00
|
|
|
STOPPED_DUE_TO_BREAKPOINT_CONDITION = "Stopped due to breakpoint condition"
|
|
|
|
|
2010-12-14 05:49:58 +08:00
|
|
|
STOPPED_DUE_TO_BREAKPOINT_IGNORE_COUNT = "Stopped due to breakpoint and ignore count"
|
|
|
|
|
2010-10-14 09:22:03 +08:00
|
|
|
STOPPED_DUE_TO_SIGNAL = "Process state is stopped due to signal"
|
|
|
|
|
2010-08-10 06:01:17 +08:00
|
|
|
STOPPED_DUE_TO_STEP_IN = "Process state is stopped due to step in"
|
|
|
|
|
2011-09-16 05:09:59 +08:00
|
|
|
STOPPED_DUE_TO_WATCHPOINT = "Process should be stopped due to watchpoint"
|
|
|
|
|
2010-08-25 06:07:56 +08:00
|
|
|
DATA_TYPES_DISPLAYED_CORRECTLY = "Data type(s) displayed correctly"
|
|
|
|
|
2010-08-27 04:04:17 +08:00
|
|
|
VALID_BREAKPOINT = "Got a valid breakpoint"
|
|
|
|
|
2010-10-23 02:10:25 +08:00
|
|
|
VALID_BREAKPOINT_LOCATION = "Got a valid breakpoint location"
|
|
|
|
|
2011-05-07 07:26:12 +08:00
|
|
|
VALID_COMMAND_INTERPRETER = "Got a valid command interpreter"
|
|
|
|
|
2010-08-28 07:47:36 +08:00
|
|
|
VALID_FILESPEC = "Got a valid filespec"
|
|
|
|
|
2010-12-08 09:25:21 +08:00
|
|
|
VALID_MODULE = "Got a valid module"
|
|
|
|
|
2010-08-27 04:04:17 +08:00
|
|
|
VALID_PROCESS = "Got a valid process"
|
|
|
|
|
2010-12-08 09:25:21 +08:00
|
|
|
VALID_SYMBOL = "Got a valid symbol"
|
|
|
|
|
2010-08-27 04:04:17 +08:00
|
|
|
VALID_TARGET = "Got a valid target"
|
|
|
|
|
2014-10-22 15:22:56 +08:00
|
|
|
VALID_PLATFORM = "Got a valid platform"
|
|
|
|
|
2012-02-04 04:43:00 +08:00
|
|
|
VALID_TYPE = "Got a valid type"
|
|
|
|
|
2011-07-16 06:28:10 +08:00
|
|
|
VALID_VARIABLE = "Got a valid variable"
|
|
|
|
|
2010-08-26 03:00:04 +08:00
|
|
|
VARIABLES_DISPLAYED_CORRECTLY = "Variable(s) displayed correctly"
|
2010-08-10 06:01:17 +08:00
|
|
|
|
2011-09-16 05:09:59 +08:00
|
|
|
WATCHPOINT_CREATED = "Watchpoint created successfully"
|
2010-08-27 04:04:17 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2015-07-02 07:56:30 +08:00
|
|
|
def CMD_MSG(str):
|
|
|
|
'''A generic "Command '%s' returns successfully" message generator.'''
|
|
|
|
return "Command '%s' returns successfully" % str
|
2010-11-10 02:42:22 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2018-07-28 07:42:34 +08:00
|
|
|
def COMPLETION_MSG(str_before, str_after, completions):
|
2012-01-21 07:02:51 +08:00
|
|
|
'''A generic message generator for the completion mechanism.'''
|
2018-07-28 07:42:34 +08:00
|
|
|
return ("'%s' successfully completes to '%s', but completions were:\n%s"
|
|
|
|
% (str_before, str_after, "\n".join(completions)))
|
2012-01-21 07:02:51 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2016-03-09 02:58:48 +08:00
|
|
|
def EXP_MSG(str, actual, exe):
|
2011-06-01 06:16:51 +08:00
|
|
|
'''A generic "'%s' returns expected result" message generator if exe.
|
|
|
|
Otherwise, it generates "'%s' matches expected result" message.'''
|
2016-09-07 04:57:50 +08:00
|
|
|
|
|
|
|
return "'%s' %s expected result, got '%s'" % (
|
|
|
|
str, 'returns' if exe else 'matches', actual.strip())
|
|
|
|
|
2010-08-10 07:44:24 +08:00
|
|
|
|
2010-10-20 03:11:38 +08:00
|
|
|
def SETTING_MSG(setting):
|
2011-06-01 06:16:51 +08:00
|
|
|
'''A generic "Value of setting '%s' is correct" message generator.'''
|
2010-10-20 03:11:38 +08:00
|
|
|
return "Value of setting '%s' is correct" % setting
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2010-08-27 05:49:29 +08:00
|
|
|
def EnvArray():
|
2011-06-01 06:16:51 +08:00
|
|
|
"""Returns an env variable array from the os.environ map object."""
|
2016-09-07 04:57:50 +08:00
|
|
|
return list(map(lambda k,
|
|
|
|
v: k + "=" + v,
|
|
|
|
list(os.environ.keys()),
|
|
|
|
list(os.environ.values())))
|
|
|
|
|
2010-08-27 05:49:29 +08:00
|
|
|
|
2010-10-12 07:52:19 +08:00
|
|
|
def line_number(filename, string_to_match):
|
|
|
|
"""Helper function to return the line number of the first matched string."""
|
2016-01-23 07:54:49 +08:00
|
|
|
with io.open(filename, mode='r', encoding="utf-8") as f:
|
2010-10-12 07:52:19 +08:00
|
|
|
for i, line in enumerate(f):
|
|
|
|
if line.find(string_to_match) != -1:
|
|
|
|
# Found our match.
|
2016-09-07 04:57:50 +08:00
|
|
|
return i + 1
|
|
|
|
raise Exception(
|
|
|
|
"Unable to find '%s' within file %s" %
|
|
|
|
(string_to_match, filename))
|
|
|
|
|
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-22 04:13:14 +08: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-12 07:52:19 +08:00
|
|
|
|
2010-10-06 03:27:32 +08: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-07 04:57:50 +08:00
|
|
|
|
2012-02-09 10:01:59 +08:00
|
|
|
def is_exe(fpath):
|
|
|
|
"""Returns true if fpath is an executable."""
|
|
|
|
return os.path.isfile(fpath) and os.access(fpath, os.X_OK)
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2012-02-09 10:01:59 +08: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
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2015-10-22 01:48:52 +08:00
|
|
|
class recording(SixStringIO):
|
2010-10-15 09:18:29 +08: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-07 04:57:50 +08:00
|
|
|
|
2010-10-15 09:18:29 +08:00
|
|
|
def __init__(self, test, trace):
|
2015-10-22 01:48:52 +08:00
|
|
|
"""Create a SixStringIO instance; record the session obj and trace flag."""
|
|
|
|
SixStringIO.__init__(self)
|
2011-08-17 06:06:17 +08:00
|
|
|
# The test might not have undergone the 'setUp(self)' phase yet, so that
|
|
|
|
# the attribute 'session' might not even exist yet.
|
2011-08-17 01:06:45 +08:00
|
|
|
self.session = getattr(test, "session", None) if test else None
|
2010-10-15 09:18:29 +08:00
|
|
|
self.trace = trace
|
|
|
|
|
|
|
|
def __enter__(self):
|
|
|
|
"""
|
|
|
|
Context management protocol on entry to the body of the with statement.
|
2015-10-22 01:48:52 +08:00
|
|
|
Just return the SixStringIO object.
|
2010-10-15 09:18:29 +08: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-22 01:48:52 +08:00
|
|
|
recordings to our session object. And close the SixStringIO object, too.
|
2010-10-15 09:18:29 +08:00
|
|
|
"""
|
|
|
|
if self.trace:
|
2015-10-20 07:45:41 +08: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-16 07:55:05 +08:00
|
|
|
if self.session:
|
2016-01-28 03:47:28 +08:00
|
|
|
print(self.getvalue(), file=self.session)
|
2010-10-15 09:18:29 +08:00
|
|
|
self.close()
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2015-10-21 05:06:05 +08:00
|
|
|
@add_metaclass(abc.ABCMeta)
|
2015-02-05 07:19:15 +08:00
|
|
|
class _BaseProcess(object):
|
|
|
|
|
|
|
|
@abc.abstractproperty
|
|
|
|
def pid(self):
|
|
|
|
"""Returns process PID if has been launched already."""
|
|
|
|
|
|
|
|
@abc.abstractmethod
|
|
|
|
def launch(self, executable, args):
|
|
|
|
"""Launches new process with given executable and args."""
|
|
|
|
|
|
|
|
@abc.abstractmethod
|
|
|
|
def terminate(self):
|
|
|
|
"""Terminates previously launched process.."""
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2015-02-05 07:19:15 +08:00
|
|
|
class _LocalProcess(_BaseProcess):
|
|
|
|
|
|
|
|
def __init__(self, trace_on):
|
|
|
|
self._proc = None
|
|
|
|
self._trace_on = trace_on
|
2015-04-15 21:35:49 +08:00
|
|
|
self._delayafterterminate = 0.1
|
2015-02-05 07:19:15 +08:00
|
|
|
|
|
|
|
@property
|
|
|
|
def pid(self):
|
|
|
|
return self._proc.pid
|
|
|
|
|
|
|
|
def launch(self, executable, args):
|
2016-09-07 04:57:50 +08:00
|
|
|
self._proc = Popen(
|
|
|
|
[executable] + args,
|
|
|
|
stdout=open(
|
|
|
|
os.devnull) if not self._trace_on else None,
|
|
|
|
stdin=PIPE)
|
2015-02-05 07:19:15 +08:00
|
|
|
|
|
|
|
def terminate(self):
|
2016-09-07 04:57:50 +08:00
|
|
|
if self._proc.poll() is None:
|
2015-04-15 21:35:49 +08:00
|
|
|
# Terminate _proc like it does the pexpect
|
2016-09-07 04:57:50 +08:00
|
|
|
signals_to_try = [
|
|
|
|
sig for sig in [
|
|
|
|
'SIGHUP',
|
|
|
|
'SIGCONT',
|
|
|
|
'SIGINT'] if sig in dir(signal)]
|
2015-07-07 22:47:34 +08:00
|
|
|
for sig in signals_to_try:
|
|
|
|
try:
|
|
|
|
self._proc.send_signal(getattr(signal, sig))
|
|
|
|
time.sleep(self._delayafterterminate)
|
2016-09-07 04:57:50 +08:00
|
|
|
if self._proc.poll() is not None:
|
2015-07-07 22:47:34 +08:00
|
|
|
return
|
|
|
|
except ValueError:
|
|
|
|
pass # Windows says SIGINT is not a valid signal to send
|
2015-02-05 07:19:15 +08:00
|
|
|
self._proc.terminate()
|
2015-04-15 21:35:49 +08:00
|
|
|
time.sleep(self._delayafterterminate)
|
2016-09-07 04:57:50 +08:00
|
|
|
if self._proc.poll() is not None:
|
2015-04-15 21:35:49 +08:00
|
|
|
return
|
|
|
|
self._proc.kill()
|
|
|
|
time.sleep(self._delayafterterminate)
|
2015-02-05 07:19:15 +08:00
|
|
|
|
2015-03-11 21:51:07 +08:00
|
|
|
def poll(self):
|
|
|
|
return self._proc.poll()
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2015-02-05 07:19:15 +08:00
|
|
|
class _RemoteProcess(_BaseProcess):
|
|
|
|
|
2015-03-11 21:51:07 +08:00
|
|
|
def __init__(self, install_remote):
|
2015-02-05 07:19:15 +08:00
|
|
|
self._pid = None
|
2015-03-11 21:51:07 +08:00
|
|
|
self._install_remote = install_remote
|
2015-02-05 07:19:15 +08:00
|
|
|
|
|
|
|
@property
|
|
|
|
def pid(self):
|
|
|
|
return self._pid
|
|
|
|
|
|
|
|
def launch(self, executable, args):
|
2015-03-11 21:51:07 +08:00
|
|
|
if self._install_remote:
|
|
|
|
src_path = executable
|
2018-02-21 23:33:53 +08:00
|
|
|
dst_path = lldbutil.join_remote_paths(
|
|
|
|
lldb.remote_platform.GetWorkingDirectory(), os.path.basename(executable))
|
2015-03-11 21:51:07 +08:00
|
|
|
|
|
|
|
dst_file_spec = lldb.SBFileSpec(dst_path, False)
|
2016-09-07 04:57:50 +08:00
|
|
|
err = lldb.remote_platform.Install(
|
|
|
|
lldb.SBFileSpec(src_path, True), dst_file_spec)
|
2015-03-11 21:51:07 +08:00
|
|
|
if err.Fail():
|
2016-09-07 04:57:50 +08:00
|
|
|
raise Exception(
|
|
|
|
"remote_platform.Install('%s', '%s') failed: %s" %
|
|
|
|
(src_path, dst_path, err))
|
2015-03-11 21:51:07 +08:00
|
|
|
else:
|
|
|
|
dst_path = executable
|
|
|
|
dst_file_spec = lldb.SBFileSpec(executable, False)
|
2015-02-05 07:19:15 +08:00
|
|
|
|
|
|
|
launch_info = lldb.SBLaunchInfo(args)
|
|
|
|
launch_info.SetExecutableFile(dst_file_spec, True)
|
2016-09-07 04:57:50 +08:00
|
|
|
launch_info.SetWorkingDirectory(
|
|
|
|
lldb.remote_platform.GetWorkingDirectory())
|
2015-02-05 07:19:15 +08:00
|
|
|
|
|
|
|
# Redirect stdout and stderr to /dev/null
|
|
|
|
launch_info.AddSuppressFileAction(1, False, True)
|
|
|
|
launch_info.AddSuppressFileAction(2, False, True)
|
|
|
|
|
|
|
|
err = lldb.remote_platform.Launch(launch_info)
|
|
|
|
if err.Fail():
|
2016-09-07 04:57:50 +08:00
|
|
|
raise Exception(
|
|
|
|
"remote_platform.Launch('%s', '%s') failed: %s" %
|
|
|
|
(dst_path, args, err))
|
2015-02-05 07:19:15 +08:00
|
|
|
self._pid = launch_info.GetProcessID()
|
|
|
|
|
|
|
|
def terminate(self):
|
2015-03-11 21:51:07 +08:00
|
|
|
lldb.remote_platform.Kill(self._pid)
|
2015-02-05 07:19:15 +08:00
|
|
|
|
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-16 07:55:05 +08:00
|
|
|
# From 2.7's subprocess.check_output() convenience function.
|
Turns out that the test failure wrt:
rdar://problem/9173060 lldb hangs while running unique-types
disappears if running with clang version >= 3. Modify the TestUniqueTypes.py
to detect if we are running with clang version < 3 and, if true, skip the test.
Update the lldbtest.system() function to return a tuple of (stdoutdata, stderrdata)
since we need the stderr data from "clang -v" command. Modify existing clients of
lldbtest.system() to now use, for example:
# First, capture the golden output emitted by the oracle, i.e., the
# series of printf statements.
- go = system("./a.out", sender=self)
+ go = system("./a.out", sender=self)[0]
# This golden list contains a list of (variable, value) pairs extracted
# from the golden output.
gl = []
And add two utility functions to lldbutil.py.
llvm-svn: 128162
2011-03-24 04:28:59 +08:00
|
|
|
# Return a tuple (stdoutdata, stderrdata).
|
2016-09-07 04:57:50 +08:00
|
|
|
|
|
|
|
|
2014-07-23 00:19:29 +08:00
|
|
|
def system(commands, **kwargs):
|
2011-11-17 06:44:28 +08:00
|
|
|
r"""Run an os command with arguments and return its output as a byte string.
|
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-16 07:55:05 +08:00
|
|
|
|
|
|
|
If the exit code was non-zero it raises a CalledProcessError. The
|
|
|
|
CalledProcessError object will have the return code in the returncode
|
|
|
|
attribute and output in the output attribute.
|
|
|
|
|
|
|
|
The arguments are the same as for the Popen constructor. Example:
|
|
|
|
|
|
|
|
>>> check_output(["ls", "-l", "/dev/null"])
|
|
|
|
'crw-rw-rw- 1 root root 1, 3 Oct 18 2007 /dev/null\n'
|
|
|
|
|
|
|
|
The stdout argument is not allowed as it is used internally.
|
|
|
|
To capture standard error in the result, use stderr=STDOUT.
|
|
|
|
|
|
|
|
>>> check_output(["/bin/sh", "-c",
|
|
|
|
... "ls -l non_existent_file ; exit 0"],
|
|
|
|
... stderr=STDOUT)
|
|
|
|
'ls: non_existent_file: No such file or directory\n'
|
|
|
|
"""
|
|
|
|
|
|
|
|
# Assign the sender object to variable 'test' and remove it from kwargs.
|
|
|
|
test = kwargs.pop('sender', None)
|
|
|
|
|
2014-07-23 00:19:29 +08:00
|
|
|
# [['make', 'clean', 'foo'], ['make', 'foo']] -> ['make clean foo', 'make foo']
|
|
|
|
commandList = [' '.join(x) for x in commands]
|
2015-03-27 00:43:25 +08:00
|
|
|
output = ""
|
|
|
|
error = ""
|
|
|
|
for shellCommand in commandList:
|
|
|
|
if 'stdout' in kwargs:
|
2016-09-07 04:57:50 +08:00
|
|
|
raise ValueError(
|
|
|
|
'stdout argument not allowed, it will be overridden.')
|
|
|
|
if 'shell' in kwargs and kwargs['shell'] == False:
|
2015-03-27 00:43:25 +08:00
|
|
|
raise ValueError('shell=False not allowed')
|
2016-09-07 04:57:50 +08:00
|
|
|
process = Popen(
|
|
|
|
shellCommand,
|
|
|
|
stdout=PIPE,
|
|
|
|
stderr=PIPE,
|
|
|
|
shell=True,
|
|
|
|
**kwargs)
|
2015-03-27 00:43:25 +08:00
|
|
|
pid = process.pid
|
|
|
|
this_output, this_error = process.communicate()
|
|
|
|
retcode = process.poll()
|
|
|
|
|
|
|
|
if retcode:
|
|
|
|
cmd = kwargs.get("args")
|
|
|
|
if cmd is None:
|
|
|
|
cmd = shellCommand
|
2016-05-14 08:42:30 +08:00
|
|
|
cpe = CalledProcessError(retcode, cmd)
|
|
|
|
# Ensure caller can access the stdout/stderr.
|
|
|
|
cpe.lldb_extensions = {
|
|
|
|
"stdout_content": this_output,
|
|
|
|
"stderr_content": this_error,
|
|
|
|
"command": shellCommand
|
|
|
|
}
|
|
|
|
raise cpe
|
2019-02-19 07:18:14 +08:00
|
|
|
output = output + this_output.decode("utf-8")
|
|
|
|
error = error + this_error.decode("utf-8")
|
Turns out that the test failure wrt:
rdar://problem/9173060 lldb hangs while running unique-types
disappears if running with clang version >= 3. Modify the TestUniqueTypes.py
to detect if we are running with clang version < 3 and, if true, skip the test.
Update the lldbtest.system() function to return a tuple of (stdoutdata, stderrdata)
since we need the stderr data from "clang -v" command. Modify existing clients of
lldbtest.system() to now use, for example:
# First, capture the golden output emitted by the oracle, i.e., the
# series of printf statements.
- go = system("./a.out", sender=self)
+ go = system("./a.out", sender=self)[0]
# This golden list contains a list of (variable, value) pairs extracted
# from the golden output.
gl = []
And add two utility functions to lldbutil.py.
llvm-svn: 128162
2011-03-24 04:28:59 +08:00
|
|
|
return (output, error)
|
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-16 07:55:05 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2010-11-02 04:35:01 +08: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-07 04:57:50 +08:00
|
|
|
|
2011-06-21 03:06:20 +08:00
|
|
|
def builder_module():
|
2013-07-25 21:24:34 +08:00
|
|
|
if sys.platform.startswith("freebsd"):
|
|
|
|
return __import__("builder_freebsd")
|
2018-06-04 19:57:12 +08:00
|
|
|
if sys.platform.startswith("openbsd"):
|
|
|
|
return __import__("builder_openbsd")
|
2015-12-06 02:46:56 +08:00
|
|
|
if sys.platform.startswith("netbsd"):
|
|
|
|
return __import__("builder_netbsd")
|
2016-02-13 04:30:47 +08:00
|
|
|
if sys.platform.startswith("linux"):
|
|
|
|
# sys.platform with Python-3.x returns 'linux', but with
|
|
|
|
# Python-2.x it returns 'linux2'.
|
|
|
|
return __import__("builder_linux")
|
2011-06-21 03:06:20 +08:00
|
|
|
return __import__("builder_" + sys.platform)
|
|
|
|
|
2014-12-02 07:21:18 +08:00
|
|
|
|
2011-08-02 02:46:13 +08: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-07 04:57:50 +08:00
|
|
|
|
2010-10-23 07:15:46 +08:00
|
|
|
"""
|
2012-10-25 05:42:49 +08:00
|
|
|
|
2012-10-25 05:44:48 +08:00
|
|
|
# The concrete subclass should override this attribute.
|
|
|
|
mydir = None
|
2010-07-03 11:41:59 +08:00
|
|
|
|
2010-09-16 09:53:04 +08:00
|
|
|
# Keep track of the old current working directory.
|
|
|
|
oldcwd = None
|
2014-12-02 07:21:18 +08:00
|
|
|
|
2013-12-11 07:19:29 +08:00
|
|
|
@staticmethod
|
|
|
|
def compute_mydir(test_file):
|
2018-02-07 02:22:51 +08:00
|
|
|
'''Subclasses should call this function to correctly calculate the
|
|
|
|
required "mydir" attribute as follows:
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2018-02-07 02:22:51 +08:00
|
|
|
mydir = TestBase.compute_mydir(__file__)
|
|
|
|
'''
|
|
|
|
# /abs/path/to/packages/group/subdir/mytest.py -> group/subdir
|
|
|
|
rel_prefix = test_file[len(os.environ["LLDB_TEST"]) + 1:]
|
|
|
|
return os.path.dirname(rel_prefix)
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2011-08-02 03:50:58 +08:00
|
|
|
def TraceOn(self):
|
|
|
|
"""Returns True if we are in trace mode (tracing detailed test execution)."""
|
|
|
|
return traceAlways
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2010-09-16 09:53:04 +08:00
|
|
|
@classmethod
|
|
|
|
def setUpClass(cls):
|
2010-10-02 06:59:49 +08:00
|
|
|
"""
|
|
|
|
Python unittest framework class setup fixture.
|
|
|
|
Do current directory manipulation.
|
|
|
|
"""
|
2010-07-04 04:41:42 +08:00
|
|
|
# Fail fast if 'mydir' attribute is not overridden.
|
2010-09-16 09:53:04 +08:00
|
|
|
if not cls.mydir or len(cls.mydir) == 0:
|
2010-07-04 04:41:42 +08:00
|
|
|
raise Exception("Subclasses must override the 'mydir' attribute.")
|
2012-10-25 02:14:21 +08:00
|
|
|
|
2010-07-03 11:41:59 +08:00
|
|
|
# Save old working directory.
|
2010-09-16 09:53:04 +08:00
|
|
|
cls.oldcwd = os.getcwd()
|
2010-07-03 11:41:59 +08:00
|
|
|
|
|
|
|
# Change current working directory if ${LLDB_TEST} is defined.
|
|
|
|
# See also dotest.py which sets up ${LLDB_TEST}.
|
|
|
|
if ("LLDB_TEST" in os.environ):
|
2018-02-07 02:22:51 +08:00
|
|
|
full_dir = os.path.join(os.environ["LLDB_TEST"],
|
|
|
|
cls.mydir)
|
2010-09-16 09:53:04 +08:00
|
|
|
if traceAlways:
|
2015-10-20 07:45:41 +08:00
|
|
|
print("Change dir to:", full_dir, file=sys.stderr)
|
2018-02-07 02:22:51 +08:00
|
|
|
os.chdir(full_dir)
|
2015-05-22 03:09:29 +08:00
|
|
|
|
2014-12-02 07:21:18 +08:00
|
|
|
# Set platform context.
|
2016-02-05 07:04:17 +08:00
|
|
|
cls.platformContext = lldbplatformutil.createPlatformContext()
|
2014-12-02 07:21:18 +08:00
|
|
|
|
2010-09-16 09:53:04 +08:00
|
|
|
@classmethod
|
|
|
|
def tearDownClass(cls):
|
2010-10-02 06:59:49 +08:00
|
|
|
"""
|
|
|
|
Python unittest framework class teardown fixture.
|
|
|
|
Do class-wide cleanup.
|
|
|
|
"""
|
2010-09-16 09:53:04 +08:00
|
|
|
|
2015-12-12 03:21:49 +08:00
|
|
|
if doCleanup:
|
2010-10-12 06:25:46 +08:00
|
|
|
# First, let's do the platform-specific cleanup.
|
2011-06-21 03:06:20 +08:00
|
|
|
module = builder_module()
|
2015-08-27 03:44:56 +08:00
|
|
|
module.cleanup()
|
2010-09-16 09:53:04 +08:00
|
|
|
|
2010-10-12 06:25:46 +08:00
|
|
|
# Subclass might have specific cleanup function defined.
|
|
|
|
if getattr(cls, "classCleanup", None):
|
|
|
|
if traceAlways:
|
2016-09-07 04:57:50 +08:00
|
|
|
print(
|
|
|
|
"Call class-specific cleanup function for class:",
|
|
|
|
cls,
|
|
|
|
file=sys.stderr)
|
2010-10-12 06:25:46 +08: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 09:53:04 +08:00
|
|
|
|
|
|
|
# Restore old working directory.
|
|
|
|
if traceAlways:
|
2015-10-20 07:45:41 +08:00
|
|
|
print("Restore dir to:", cls.oldcwd, file=sys.stderr)
|
2010-09-16 09:53:04 +08:00
|
|
|
os.chdir(cls.oldcwd)
|
|
|
|
|
2011-08-02 02:46:13 +08:00
|
|
|
@classmethod
|
|
|
|
def skipLongRunningTest(cls):
|
|
|
|
"""
|
|
|
|
By default, we skip long running test case.
|
|
|
|
This can be overridden by passing '-l' to the test driver (dotest.py).
|
|
|
|
"""
|
2016-09-07 04:57:50 +08:00
|
|
|
if "LLDB_SKIP_LONG_RUNNING_TEST" in os.environ and "NO" == os.environ[
|
|
|
|
"LLDB_SKIP_LONG_RUNNING_TEST"]:
|
2011-08-02 02:46:13 +08:00
|
|
|
return False
|
|
|
|
else:
|
|
|
|
return True
|
|
|
|
|
2015-05-11 06:01:59 +08: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()
|
|
|
|
|
|
|
|
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 17:59:45 +08:00
|
|
|
if channel == "gdb-remote" and lldb.remote_platform is None:
|
2015-05-11 06:01:59 +08:00
|
|
|
# communicate gdb-remote categories to debugserver
|
|
|
|
os.environ["LLDB_DEBUGSERVER_LOG_FLAGS"] = categories
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
self.ci.HandleCommand(
|
|
|
|
log_enable + channel_with_categories, self.res)
|
2015-05-11 06:01:59 +08:00
|
|
|
if not self.res.Succeeded():
|
2016-09-07 04:57:50 +08:00
|
|
|
raise Exception(
|
|
|
|
'log enable failed (check LLDB_LOG_OPTION env variable)')
|
2015-05-11 06:01:59 +08:00
|
|
|
|
|
|
|
# Communicate log path name to debugserver & lldb-server
|
2016-07-04 17:59:45 +08: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()
|
|
|
|
os.environ["LLDB_DEBUGSERVER_LOG_FILE"] = server_log_path
|
2015-05-11 06:01:59 +08:00
|
|
|
|
2016-07-04 17:59:45 +08:00
|
|
|
# Communicate channels to lldb-server
|
2016-09-07 04:57:50 +08:00
|
|
|
os.environ["LLDB_SERVER_LOG_CHANNELS"] = ":".join(
|
|
|
|
lldbtest_config.channels)
|
2015-05-11 06:01:59 +08:00
|
|
|
|
2016-07-04 17:59:45 +08:00
|
|
|
self.addTearDownHook(self.disableLogChannelsForCurrentTest)
|
2015-05-11 06:01:59 +08: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():
|
2016-09-07 04:57:50 +08:00
|
|
|
raise Exception(
|
|
|
|
'log disable failed (check LLDB_LOG_OPTION env variable)')
|
2015-05-11 06:01:59 +08:00
|
|
|
|
2016-07-04 17:59:45 +08: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
|
|
|
|
# platform. If the remote logging is not enabled, then just let the Get() command silently
|
|
|
|
# fail.
|
|
|
|
if lldb.remote_platform:
|
2016-09-07 04:57:50 +08:00
|
|
|
lldb.remote_platform.Get(
|
|
|
|
lldb.SBFileSpec("server.log"), lldb.SBFileSpec(
|
|
|
|
self.getLogBasenameForCurrentTest() + "-server.log"))
|
2016-07-04 17:59:45 +08:00
|
|
|
|
|
|
|
def setPlatformWorkingDir(self):
|
|
|
|
if not lldb.remote_platform or not configuration.lldb_platform_working_dir:
|
|
|
|
return
|
|
|
|
|
2018-02-16 19:39:38 +08:00
|
|
|
components = self.mydir.split(os.path.sep) + [str(self.test_number), self.getBuildDirBasename()]
|
2017-03-21 00:07:17 +08: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
|
|
|
|
# the directories in place. The cleaup is required to reduce the disk space required
|
2017-09-26 02:19:39 +08:00
|
|
|
# by the test suite while leaving the directories untouched is neccessary because
|
2017-03-21 00:07:17 +08: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 17:59:45 +08:00
|
|
|
|
2018-01-31 02:29:16 +08:00
|
|
|
def getSourceDir(self):
|
|
|
|
"""Return the full path to the current test."""
|
|
|
|
return os.path.join(os.environ["LLDB_TEST"], self.mydir)
|
|
|
|
|
2018-02-16 17:21:11 +08:00
|
|
|
def getBuildDirBasename(self):
|
|
|
|
return self.__class__.__module__ + "." + self.testMethodName
|
|
|
|
|
2018-01-31 02:29:16 +08:00
|
|
|
def getBuildDir(self):
|
|
|
|
"""Return the full path to the current test."""
|
2018-02-07 02:22:51 +08:00
|
|
|
return os.path.join(os.environ["LLDB_BUILD"], self.mydir,
|
2018-02-16 17:21:11 +08:00
|
|
|
self.getBuildDirBasename())
|
2018-07-28 06:20:59 +08:00
|
|
|
|
|
|
|
|
2018-01-31 02:29:16 +08: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 20:04:46 +08:00
|
|
|
"""Create the test-specific working directory, deleting any previous
|
|
|
|
contents."""
|
2018-01-31 02:29:16 +08:00
|
|
|
# See also dotest.py which sets up ${LLDB_BUILD}.
|
[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 20:04:46 +08:00
|
|
|
bdir = self.getBuildDir()
|
|
|
|
if os.path.isdir(bdir):
|
|
|
|
shutil.rmtree(bdir)
|
|
|
|
lldbutil.mkdir_p(bdir)
|
2018-07-28 06:20:59 +08:00
|
|
|
|
2018-01-24 00:43:01 +08:00
|
|
|
def getBuildArtifact(self, name="a.out"):
|
|
|
|
"""Return absolute path to an artifact in the test's build directory."""
|
2018-01-31 02:29:16 +08:00
|
|
|
return os.path.join(self.getBuildDir(), name)
|
2018-07-28 06:20:59 +08:00
|
|
|
|
2018-01-31 02:29:16 +08:00
|
|
|
def getSourcePath(self, name):
|
|
|
|
"""Return absolute path to a file in the test's source directory."""
|
|
|
|
return os.path.join(self.getSourceDir(), name)
|
2018-01-24 00:43:01 +08:00
|
|
|
|
2011-08-02 02:46:13 +08:00
|
|
|
def setUp(self):
|
2011-08-02 03:50:58 +08:00
|
|
|
"""Fixture for unittest test case setup.
|
|
|
|
|
|
|
|
It works with the test driver to conditionally skip tests and does other
|
|
|
|
initializations."""
|
2011-08-02 02:46:13 +08:00
|
|
|
#import traceback
|
2016-09-07 04:57:50 +08:00
|
|
|
# traceback.print_stack()
|
2011-08-02 02:46:13 +08:00
|
|
|
|
2013-08-06 23:02:32 +08:00
|
|
|
if "LIBCXX_PATH" in os.environ:
|
|
|
|
self.libcxxPath = os.environ["LIBCXX_PATH"]
|
|
|
|
else:
|
|
|
|
self.libcxxPath = None
|
|
|
|
|
2014-11-25 18:41:57 +08:00
|
|
|
if "LLDBMI_EXEC" in os.environ:
|
|
|
|
self.lldbMiExec = os.environ["LLDBMI_EXEC"]
|
|
|
|
else:
|
|
|
|
self.lldbMiExec = None
|
2015-05-19 03:39:03 +08:00
|
|
|
|
2018-08-17 01:59:38 +08:00
|
|
|
if "LLDBVSCODE_EXEC" in os.environ:
|
|
|
|
self.lldbVSCodeExec = os.environ["LLDBVSCODE_EXEC"]
|
|
|
|
else:
|
|
|
|
self.lldbVSCodeExec = None
|
|
|
|
|
2011-10-08 03:21:09 +08:00
|
|
|
# If we spawn an lldb process for test (via pexpect), do not load the
|
|
|
|
# init file unless told otherwise.
|
|
|
|
if "NO_LLDBINIT" in os.environ and "NO" == os.environ["NO_LLDBINIT"]:
|
|
|
|
self.lldbOption = ""
|
|
|
|
else:
|
|
|
|
self.lldbOption = "--no-lldbinit"
|
2011-08-03 06:54:37 +08:00
|
|
|
|
2011-08-02 05:13:26 +08: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-02 03:50:58 +08: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-16 05:21:52 +08:00
|
|
|
# List of spawned subproces.Popen objects
|
|
|
|
self.subprocesses = []
|
|
|
|
|
2013-06-06 05:07:02 +08:00
|
|
|
# List of forked process PIDs
|
|
|
|
self.forkedProcessPids = []
|
|
|
|
|
2011-08-02 03:50:58 +08:00
|
|
|
# Create a string buffer to record the session info, to be dumped into a
|
|
|
|
# test case specific file if test failure is encountered.
|
2015-05-22 02:51:20 +08:00
|
|
|
self.log_basename = self.getLogBasenameForCurrentTest()
|
2015-05-22 02:20:21 +08:00
|
|
|
|
2015-05-22 02:51:20 +08:00
|
|
|
session_file = "{}.log".format(self.log_basename)
|
2015-11-07 09:08:15 +08:00
|
|
|
# Python 3 doesn't support unbuffered I/O in text mode. Open buffered.
|
2016-02-02 02:12:59 +08:00
|
|
|
self.session = encoded_file.open(session_file, "utf-8", mode="w")
|
2011-08-02 03:50:58 +08: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-27 03:44:56 +08:00
|
|
|
self.__cleanup_errored__ = False
|
2016-09-07 04:57:50 +08:00
|
|
|
self.__errored__ = False
|
|
|
|
self.__failed__ = False
|
|
|
|
self.__expected__ = False
|
2011-08-02 03:50:58 +08:00
|
|
|
# We are also interested in unexpected success.
|
|
|
|
self.__unexpected__ = False
|
2011-08-16 08:48:58 +08:00
|
|
|
# And skipped tests.
|
|
|
|
self.__skipped__ = False
|
2011-08-02 03:50:58 +08: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-03 05:32:44 +08:00
|
|
|
if self.platformContext:
|
|
|
|
# set environment variable names for finding shared libraries
|
|
|
|
self.dylibPath = self.platformContext.shlib_environment_var
|
2012-11-27 05:21:11 +08:00
|
|
|
|
2015-05-11 06:01:59 +08:00
|
|
|
# Create the debugger instance if necessary.
|
|
|
|
try:
|
|
|
|
self.dbg = lldb.DBG
|
|
|
|
except AttributeError:
|
|
|
|
self.dbg = lldb.SBDebugger.Create()
|
|
|
|
|
|
|
|
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 17:59:45 +08:00
|
|
|
self.setPlatformWorkingDir()
|
2015-05-11 06:01:59 +08:00
|
|
|
self.enableLogChannelsForCurrentTest()
|
|
|
|
|
2016-10-31 12:48:10 +08:00
|
|
|
lib_dir = os.environ["LLDB_LIB_DIR"]
|
|
|
|
self.dsym = None
|
|
|
|
self.framework_dir = None
|
|
|
|
self.darwinWithFramework = self.platformIsDarwin()
|
|
|
|
if sys.platform.startswith("darwin"):
|
|
|
|
# Handle the framework environment variable if it is set
|
|
|
|
if hasattr(lldbtest_config, 'lldbFrameworkPath'):
|
|
|
|
framework_path = lldbtest_config.lldbFrameworkPath
|
|
|
|
# Framework dir should be the directory containing the framework
|
|
|
|
self.framework_dir = framework_path[:framework_path.rfind('LLDB.framework')]
|
|
|
|
# If a framework dir was not specified assume the Xcode build
|
|
|
|
# directory layout where the framework is in LLDB_LIB_DIR.
|
|
|
|
else:
|
|
|
|
self.framework_dir = lib_dir
|
|
|
|
self.dsym = os.path.join(self.framework_dir, 'LLDB.framework', 'LLDB')
|
|
|
|
# If the framework binary doesn't exist, assume we didn't actually
|
|
|
|
# build a framework, and fallback to standard *nix behavior by
|
|
|
|
# setting framework_dir and dsym to None.
|
|
|
|
if not os.path.exists(self.dsym):
|
|
|
|
self.framework_dir = None
|
|
|
|
self.dsym = None
|
|
|
|
self.darwinWithFramework = False
|
2018-01-31 02:29:16 +08:00
|
|
|
self.makeBuildDir()
|
2016-10-31 12:48:10 +08:00
|
|
|
|
2013-02-20 00:08:57 +08: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-16 05:21:52 +08:00
|
|
|
def cleanupSubprocesses(self):
|
|
|
|
# Ensure any subprocesses are cleaned up
|
|
|
|
for p in self.subprocesses:
|
2015-02-05 07:19:15 +08:00
|
|
|
p.terminate()
|
2013-02-16 05:21:52 +08:00
|
|
|
del p
|
|
|
|
del self.subprocesses[:]
|
2013-06-06 05:07:02 +08:00
|
|
|
# Ensure any forked processes are cleaned up
|
|
|
|
for pid in self.forkedProcessPids:
|
|
|
|
if os.path.exists("/proc/" + str(pid)):
|
|
|
|
os.kill(pid, signal.SIGTERM)
|
2013-02-16 05:21:52 +08:00
|
|
|
|
2015-03-11 21:51:07 +08:00
|
|
|
def spawnSubprocess(self, executable, args=[], install_remote=True):
|
2013-02-16 05:21:52 +08:00
|
|
|
""" Creates a subprocess.Popen object with the specified executable and arguments,
|
|
|
|
saves it in self.subprocesses, and returns the object.
|
|
|
|
NOTE: if using this function, ensure you also call:
|
|
|
|
|
|
|
|
self.addTearDownHook(self.cleanupSubprocesses)
|
|
|
|
|
|
|
|
otherwise the test suite will leak processes.
|
|
|
|
"""
|
2016-09-07 04:57:50 +08:00
|
|
|
proc = _RemoteProcess(
|
|
|
|
install_remote) if lldb.remote_platform else _LocalProcess(self.TraceOn())
|
2015-02-05 07:19:15 +08:00
|
|
|
proc.launch(executable, args)
|
2013-02-16 05:21:52 +08:00
|
|
|
self.subprocesses.append(proc)
|
|
|
|
return proc
|
|
|
|
|
2013-06-06 05:07:02 +08:00
|
|
|
def forkSubprocess(self, executable, args=[]):
|
|
|
|
""" Fork a subprocess with its own group ID.
|
|
|
|
NOTE: if using this function, ensure you also call:
|
|
|
|
|
|
|
|
self.addTearDownHook(self.cleanupSubprocesses)
|
|
|
|
|
|
|
|
otherwise the test suite will leak processes.
|
|
|
|
"""
|
|
|
|
child_pid = os.fork()
|
|
|
|
if child_pid == 0:
|
|
|
|
# If more I/O support is required, this can be beefed up.
|
|
|
|
fd = os.open(os.devnull, os.O_RDWR)
|
|
|
|
os.dup2(fd, 1)
|
|
|
|
os.dup2(fd, 2)
|
|
|
|
# This call causes the child to have its of group ID
|
2016-09-07 04:57:50 +08:00
|
|
|
os.setpgid(0, 0)
|
2013-06-06 05:07:02 +08:00
|
|
|
os.execvp(executable, [executable] + args)
|
|
|
|
# Give the child time to get through the execvp() call
|
|
|
|
time.sleep(0.1)
|
|
|
|
self.forkedProcessPids.append(child_pid)
|
|
|
|
return child_pid
|
|
|
|
|
2011-08-02 03:50:58 +08: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-24 01:04:29 +08:00
|
|
|
self.runCmd(r'''sc print("\n\n\tHello!\n")''')
|
2011-08-02 03:50:58 +08: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-07 04:57:50 +08:00
|
|
|
|
2011-08-02 03:50:58 +08: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):
|
|
|
|
"""Register a cleanup action at tearDown() time with a dictinary"""
|
|
|
|
self.dict = dictionary
|
|
|
|
self.doTearDownCleanup = True
|
|
|
|
|
|
|
|
def addTearDownCleanup(self, dictionary):
|
|
|
|
"""Add a cleanup action at tearDown() time with a dictinary"""
|
|
|
|
self.dicts.append(dictionary)
|
|
|
|
self.doTearDownCleanups = True
|
|
|
|
|
|
|
|
def addTearDownHook(self, hook):
|
|
|
|
"""
|
|
|
|
Add a function to be run during tearDown() time.
|
|
|
|
|
|
|
|
Hooks are executed in a first come first serve manner.
|
|
|
|
"""
|
2015-10-27 02:48:24 +08:00
|
|
|
if six.callable(hook):
|
2011-08-02 03:50:58 +08:00
|
|
|
with recording(self, traceAlways) as sbuf:
|
2016-09-07 04:57:50 +08:00
|
|
|
print(
|
|
|
|
"Adding tearDown hook:",
|
|
|
|
getsource_if_available(hook),
|
|
|
|
file=sbuf)
|
2011-08-02 03:50:58 +08:00
|
|
|
self.hooks.append(hook)
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2014-11-06 05:31:57 +08:00
|
|
|
return self
|
2011-08-02 03:50:58 +08:00
|
|
|
|
2014-10-17 07:02:14 +08:00
|
|
|
def deletePexpectChild(self):
|
2011-08-02 05:13:26 +08: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-23 00:19:29 +08:00
|
|
|
import pexpect
|
2011-08-02 05:13:26 +08:00
|
|
|
with recording(self, traceAlways) as sbuf:
|
2015-10-20 07:45:41 +08:00
|
|
|
print("tearing down the child process....", file=sbuf)
|
2011-08-02 05:13:26 +08:00
|
|
|
try:
|
2013-02-22 08:41:26 +08:00
|
|
|
if self.child_in_script_interpreter:
|
|
|
|
self.child.sendline('quit()')
|
|
|
|
self.child.expect_exact(self.child_prompt)
|
2016-09-07 04:57:50 +08:00
|
|
|
self.child.sendline(
|
|
|
|
'settings set interpreter.prompt-on-quit false')
|
2013-02-22 08:41:26 +08:00
|
|
|
self.child.sendline('quit')
|
2011-08-02 05:13:26 +08:00
|
|
|
self.child.expect(pexpect.EOF)
|
2015-02-12 05:41:58 +08: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 08:41:26 +08:00
|
|
|
# child is already terminated
|
2011-08-02 05:13:26 +08:00
|
|
|
pass
|
2014-11-07 01:52:15 +08:00
|
|
|
finally:
|
|
|
|
# Give it one final blow to make sure the child is terminated.
|
|
|
|
self.child.close()
|
2014-10-17 07:02:14 +08:00
|
|
|
|
|
|
|
def tearDown(self):
|
|
|
|
"""Fixture for unittest test case teardown."""
|
|
|
|
#import traceback
|
2016-09-07 04:57:50 +08:00
|
|
|
# traceback.print_stack()
|
2014-10-17 07:02:14 +08:00
|
|
|
|
|
|
|
self.deletePexpectChild()
|
|
|
|
|
2011-08-02 03:50:58 +08:00
|
|
|
# Check and run any hook functions.
|
|
|
|
for hook in reversed(self.hooks):
|
|
|
|
with recording(self, traceAlways) as sbuf:
|
2016-09-07 04:57:50 +08:00
|
|
|
print(
|
|
|
|
"Executing tearDown hook:",
|
|
|
|
getsource_if_available(hook),
|
|
|
|
file=sbuf)
|
2016-02-05 02:03:01 +08:00
|
|
|
if funcutils.requires_self(hook):
|
2014-11-06 05:31:57 +08:00
|
|
|
hook(self)
|
|
|
|
else:
|
2016-09-07 04:57:50 +08:00
|
|
|
hook() # try the plain call and hope it works
|
2011-08-02 03:50:58 +08:00
|
|
|
|
|
|
|
del self.hooks
|
|
|
|
|
|
|
|
# Perform registered teardown cleanup.
|
|
|
|
if doCleanup and self.doTearDownCleanup:
|
2011-11-18 03:57:27 +08:00
|
|
|
self.cleanup(dictionary=self.dict)
|
2011-08-02 03:50:58 +08: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-18 03:57:27 +08:00
|
|
|
self.cleanup(dictionary=dict)
|
2011-08-02 03:50:58 +08: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-20 07:45:41 +08:00
|
|
|
print("ERROR", file=sbuf)
|
2011-08-02 03:50:58 +08:00
|
|
|
|
2015-08-27 03:44:56 +08: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-20 07:45:41 +08:00
|
|
|
print("CLEANUP_ERROR", file=sbuf)
|
2015-08-27 03:44:56 +08:00
|
|
|
|
2011-08-02 03:50:58 +08: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-20 07:45:41 +08:00
|
|
|
print("FAIL", file=sbuf)
|
2011-08-02 03:50:58 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
def markExpectedFailure(self, err, bugnumber):
|
2011-08-02 03:50:58 +08: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.
|
2016-09-07 04:57:50 +08:00
|
|
|
if bugnumber is None:
|
2015-10-20 07:45:41 +08:00
|
|
|
print("expected failure", file=sbuf)
|
2013-02-23 09:05:23 +08:00
|
|
|
else:
|
2016-09-07 04:57:50 +08:00
|
|
|
print(
|
|
|
|
"expected failure (problem id:" + str(bugnumber) + ")",
|
|
|
|
file=sbuf)
|
2011-08-02 03:50:58 +08:00
|
|
|
|
2011-08-16 07:09:08 +08: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-20 07:45:41 +08:00
|
|
|
print("skipped test", file=sbuf)
|
2011-08-16 07:09:08 +08:00
|
|
|
|
2013-02-23 09:05:23 +08:00
|
|
|
def markUnexpectedSuccess(self, bugnumber):
|
2011-08-02 03:50:58 +08: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.
|
2016-09-07 04:57:50 +08:00
|
|
|
if bugnumber is None:
|
2015-10-20 07:45:41 +08:00
|
|
|
print("unexpected success", file=sbuf)
|
2013-02-23 09:05:23 +08:00
|
|
|
else:
|
2016-09-07 04:57:50 +08:00
|
|
|
print(
|
|
|
|
"unexpected success (problem id:" + str(bugnumber) + ")",
|
|
|
|
file=sbuf)
|
2011-08-02 03:50:58 +08:00
|
|
|
|
2015-01-08 06:25:50 +08:00
|
|
|
def getRerunArgs(self):
|
|
|
|
return " -f %s.%s" % (self.__class__.__name__, self._testMethodName)
|
2015-05-10 23:22:09 +08:00
|
|
|
|
|
|
|
def getLogBasenameForCurrentTest(self, prefix=None):
|
|
|
|
"""
|
|
|
|
returns a partial path that can be used as the beginning of the name of multiple
|
|
|
|
log files pertaining to this test
|
|
|
|
|
|
|
|
<session-dir>/<arch>-<compiler>-<test-file>.<test-class>.<test-method>
|
|
|
|
"""
|
|
|
|
dname = os.path.join(os.environ["LLDB_TEST"],
|
2016-09-07 04:57:50 +08:00
|
|
|
os.environ["LLDB_SESSION_DIRNAME"])
|
2015-05-10 23:22:09 +08:00
|
|
|
if not os.path.isdir(dname):
|
|
|
|
os.mkdir(dname)
|
|
|
|
|
2016-05-18 02:02:34 +08:00
|
|
|
components = []
|
2015-05-10 23:22:09 +08:00
|
|
|
if prefix is not None:
|
2016-05-18 02:02:34 +08:00
|
|
|
components.append(prefix)
|
|
|
|
for c in configuration.session_file_format:
|
|
|
|
if c == 'f':
|
|
|
|
components.append(self.__class__.__module__)
|
|
|
|
elif c == 'n':
|
|
|
|
components.append(self.__class__.__name__)
|
|
|
|
elif c == 'c':
|
|
|
|
compiler = self.getCompiler()
|
|
|
|
|
|
|
|
if compiler[1] == ':':
|
|
|
|
compiler = compiler[2:]
|
|
|
|
if os.path.altsep is not None:
|
|
|
|
compiler = compiler.replace(os.path.altsep, os.path.sep)
|
2017-03-03 21:49:38 +08:00
|
|
|
path_components = [x for x in compiler.split(os.path.sep) if x != ""]
|
|
|
|
|
|
|
|
# Add at most 4 path components to avoid generating very long
|
|
|
|
# filenames
|
|
|
|
components.extend(path_components[-4:])
|
2016-05-18 02:02:34 +08:00
|
|
|
elif c == 'a':
|
|
|
|
components.append(self.getArchitecture())
|
|
|
|
elif c == 'm':
|
|
|
|
components.append(self.testMethodName)
|
|
|
|
fname = "-".join(components)
|
2015-05-10 23:22:09 +08:00
|
|
|
|
|
|
|
return os.path.join(dname, fname)
|
|
|
|
|
2011-08-02 03:50:58 +08: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
|
|
|
|
# two lists (erros and failures) which get populated by the unittest
|
|
|
|
# framework. Look over there for stack trace information.
|
|
|
|
#
|
|
|
|
# The lists contain 2-tuples of TestCase instances and strings holding
|
|
|
|
# formatted tracebacks.
|
|
|
|
#
|
|
|
|
# See http://docs.python.org/library/unittest.html#unittest.TestResult.
|
2015-05-10 23:22:09 +08:00
|
|
|
|
2015-05-22 02:20:21 +08:00
|
|
|
# output tracebacks into session
|
2015-05-10 23:22:09 +08:00
|
|
|
pairs = []
|
2011-08-02 03:50:58 +08:00
|
|
|
if self.__errored__:
|
2015-12-08 09:15:30 +08:00
|
|
|
pairs = configuration.test_result.errors
|
2011-08-02 03:50:58 +08:00
|
|
|
prefix = 'Error'
|
2015-09-12 05:27:37 +08:00
|
|
|
elif self.__cleanup_errored__:
|
2015-12-08 09:15:30 +08:00
|
|
|
pairs = configuration.test_result.cleanup_errors
|
2015-08-27 03:44:56 +08:00
|
|
|
prefix = 'CleanupError'
|
2011-08-02 03:50:58 +08:00
|
|
|
elif self.__failed__:
|
2015-12-08 09:15:30 +08:00
|
|
|
pairs = configuration.test_result.failures
|
2011-08-02 03:50:58 +08:00
|
|
|
prefix = 'Failure'
|
|
|
|
elif self.__expected__:
|
2015-12-08 09:15:30 +08:00
|
|
|
pairs = configuration.test_result.expectedFailures
|
2011-08-02 03:50:58 +08:00
|
|
|
prefix = 'ExpectedFailure'
|
2011-08-16 07:09:08 +08:00
|
|
|
elif self.__skipped__:
|
|
|
|
prefix = 'SkippedTest'
|
2011-08-02 03:50:58 +08:00
|
|
|
elif self.__unexpected__:
|
2015-05-22 02:20:21 +08:00
|
|
|
prefix = 'UnexpectedSuccess'
|
2011-08-02 03:50:58 +08:00
|
|
|
else:
|
2015-05-22 02:20:21 +08:00
|
|
|
prefix = 'Success'
|
2011-08-02 03:50:58 +08:00
|
|
|
|
2011-08-16 07:09:08 +08:00
|
|
|
if not self.__unexpected__ and not self.__skipped__:
|
2011-08-02 03:50:58 +08:00
|
|
|
for test, traceback in pairs:
|
|
|
|
if test is self:
|
2016-01-28 03:47:28 +08:00
|
|
|
print(traceback, file=self.session)
|
2011-08-02 03:50:58 +08:00
|
|
|
|
2015-05-22 02:20:21 +08:00
|
|
|
# put footer (timestamp/rerun instructions) into session
|
2011-08-11 08:16:28 +08:00
|
|
|
testMethod = getattr(self, self._testMethodName)
|
|
|
|
if getattr(testMethod, "__benchmarks_test__", False):
|
|
|
|
benchmarks = True
|
|
|
|
else:
|
|
|
|
benchmarks = False
|
|
|
|
|
2015-05-22 02:20:21 +08:00
|
|
|
import datetime
|
2016-09-07 04:57:50 +08:00
|
|
|
print(
|
|
|
|
"Session info generated @",
|
|
|
|
datetime.datetime.now().ctime(),
|
|
|
|
file=self.session)
|
|
|
|
print(
|
|
|
|
"To rerun this test, issue the following command from the 'test' directory:\n",
|
|
|
|
file=self.session)
|
|
|
|
print(
|
|
|
|
"./dotest.py %s -v %s %s" %
|
|
|
|
(self.getRunOptions(),
|
|
|
|
('+b' if benchmarks else '-t'),
|
|
|
|
self.getRerunArgs()),
|
|
|
|
file=self.session)
|
2015-05-22 02:20:21 +08:00
|
|
|
self.session.close()
|
|
|
|
del self.session
|
|
|
|
|
|
|
|
# process the log files
|
2015-05-22 02:51:20 +08:00
|
|
|
log_files_for_this_test = glob.glob(self.log_basename + "*")
|
2015-05-22 02:20:21 +08:00
|
|
|
|
|
|
|
if prefix != 'Success' or lldbtest_config.log_success:
|
|
|
|
# keep all log files, rename them to include prefix
|
|
|
|
dst_log_basename = self.getLogBasenameForCurrentTest(prefix)
|
|
|
|
for src in log_files_for_this_test:
|
2015-05-27 04:26:29 +08:00
|
|
|
if os.path.isfile(src):
|
|
|
|
dst = src.replace(self.log_basename, dst_log_basename)
|
|
|
|
if os.name == "nt" and os.path.isfile(dst):
|
2019-01-11 03:06:46 +08: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 23:21:01 +08:00
|
|
|
remove_file(dst)
|
2015-05-27 04:26:29 +08:00
|
|
|
|
2019-01-11 03:06:46 +08:00
|
|
|
lldbutil.mkdir_p(os.path.dirname(dst))
|
2019-01-23 08:13:47 +08:00
|
|
|
os.rename(src, dst)
|
2015-05-22 02:20:21 +08:00
|
|
|
else:
|
|
|
|
# success! (and we don't want log files) delete log files
|
|
|
|
for log_file in log_files_for_this_test:
|
2016-04-11 23:21:01 +08:00
|
|
|
remove_file(log_file)
|
2011-08-02 03:50:58 +08:00
|
|
|
|
|
|
|
# ====================================================
|
|
|
|
# Config. methods supported through a plugin interface
|
|
|
|
# (enables reading of the current test configuration)
|
|
|
|
# ====================================================
|
|
|
|
|
2017-02-08 15:42:56 +08: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 20:46:33 +08:00
|
|
|
def isPPC64le(self):
|
|
|
|
"""Returns true if the architecture is PPC64LE."""
|
|
|
|
arch = self.getArchitecture()
|
|
|
|
if re.match("powerpc64le", arch):
|
|
|
|
return True
|
|
|
|
return False
|
|
|
|
|
2011-08-02 03:50:58 +08:00
|
|
|
def getArchitecture(self):
|
|
|
|
"""Returns the architecture in effect the test suite is running with."""
|
|
|
|
module = builder_module()
|
2015-04-06 23:50:48 +08:00
|
|
|
arch = module.getArchitecture()
|
|
|
|
if arch == 'amd64':
|
|
|
|
arch = 'x86_64'
|
|
|
|
return arch
|
2011-08-02 03:50:58 +08:00
|
|
|
|
2015-05-04 08:17:53 +08:00
|
|
|
def getLldbArchitecture(self):
|
|
|
|
"""Returns the architecture of the lldb binary."""
|
|
|
|
if not hasattr(self, 'lldbArchitecture'):
|
|
|
|
|
|
|
|
# spawn local process
|
|
|
|
command = [
|
2015-05-19 03:39:03 +08:00
|
|
|
lldbtest_config.lldbExec,
|
2015-05-04 08:17:53 +08:00
|
|
|
"-o",
|
2015-05-19 03:39:03 +08:00
|
|
|
"file " + lldbtest_config.lldbExec,
|
2015-05-04 08:17:53 +08:00
|
|
|
"-o",
|
|
|
|
"quit"
|
|
|
|
]
|
|
|
|
|
|
|
|
output = check_output(command)
|
2016-09-07 04:57:50 +08:00
|
|
|
str = output.decode("utf-8")
|
2015-05-04 08:17:53 +08:00
|
|
|
|
|
|
|
for line in str.splitlines():
|
2016-09-07 04:57:50 +08:00
|
|
|
m = re.search(
|
|
|
|
"Current executable set to '.*' \\((.*)\\)\\.", line)
|
2015-05-04 08:17:53 +08:00
|
|
|
if m:
|
|
|
|
self.lldbArchitecture = m.group(1)
|
|
|
|
break
|
|
|
|
|
|
|
|
return self.lldbArchitecture
|
|
|
|
|
2011-08-02 03:50:58 +08:00
|
|
|
def getCompiler(self):
|
|
|
|
"""Returns the compiler in effect the test suite is running with."""
|
|
|
|
module = builder_module()
|
|
|
|
return module.getCompiler()
|
|
|
|
|
2014-11-27 02:30:04 +08:00
|
|
|
def getCompilerBinary(self):
|
|
|
|
"""Returns the compiler binary the test suite is running with."""
|
|
|
|
return self.getCompiler().split()[0]
|
|
|
|
|
2013-02-28 01:29:46 +08:00
|
|
|
def getCompilerVersion(self):
|
|
|
|
""" Returns a string that represents the compiler version.
|
|
|
|
Supports: llvm, clang.
|
|
|
|
"""
|
|
|
|
version = 'unknown'
|
|
|
|
|
2014-11-27 02:30:04 +08:00
|
|
|
compiler = self.getCompilerBinary()
|
2016-02-02 17:49:37 +08:00
|
|
|
version_output = system([[compiler, "-v"]])[1]
|
2013-02-28 01:29:46 +08:00
|
|
|
for line in version_output.split(os.linesep):
|
2013-03-06 10:34:51 +08:00
|
|
|
m = re.search('version ([0-9\.]+)', line)
|
2013-02-28 01:29:46 +08:00
|
|
|
if m:
|
|
|
|
version = m.group(1)
|
|
|
|
return version
|
|
|
|
|
2019-01-25 02:24:14 +08:00
|
|
|
def getDwarfVersion(self):
|
2019-01-25 04:09:17 +08:00
|
|
|
""" Returns the dwarf version generated by clang or '0'. """
|
2019-01-25 03:16:45 +08:00
|
|
|
if 'clang' in self.getCompiler():
|
|
|
|
try:
|
|
|
|
driver_output = check_output(
|
|
|
|
[self.getCompiler()] + '-g -c -x c - -o - -###'.split(),
|
|
|
|
stderr=STDOUT)
|
|
|
|
for line in driver_output.split(os.linesep):
|
|
|
|
m = re.search('dwarf-version=([0-9])', line)
|
|
|
|
if m:
|
|
|
|
return m.group(1)
|
|
|
|
except: pass
|
2019-01-25 04:09:17 +08:00
|
|
|
return '0'
|
2019-01-25 02:24:14 +08:00
|
|
|
|
2015-04-03 02:24:03 +08:00
|
|
|
def platformIsDarwin(self):
|
|
|
|
"""Returns true if the OS triple for the selected platform is any valid apple OS"""
|
2016-02-05 07:04:17 +08:00
|
|
|
return lldbplatformutil.platformIsDarwin()
|
2015-04-03 09:00:06 +08:00
|
|
|
|
2016-10-31 12:48:10 +08:00
|
|
|
def hasDarwinFramework(self):
|
|
|
|
return self.darwinWithFramework
|
|
|
|
|
2015-03-30 22:12:17 +08:00
|
|
|
def getPlatform(self):
|
2015-04-17 16:02:18 +08:00
|
|
|
"""Returns the target platform the test suite is running on."""
|
2016-02-05 07:04:17 +08:00
|
|
|
return lldbplatformutil.getPlatform()
|
2015-03-30 22:12:17 +08:00
|
|
|
|
2013-08-07 04:51:41 +08: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 22:23:31 +08: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'
|
|
|
|
"""
|
2016-09-07 04:57:50 +08:00
|
|
|
if (compiler_version is None):
|
2013-05-18 04:15:07 +08:00
|
|
|
return True
|
|
|
|
operator = str(compiler_version[0])
|
|
|
|
version = compiler_version[1]
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
if (version is None):
|
2013-05-18 04:15:07 +08:00
|
|
|
return True
|
|
|
|
if (operator == '>'):
|
2019-02-15 02:48:05 +08:00
|
|
|
return LooseVersion(self.getCompilerVersion()) > LooseVersion(version)
|
2016-09-07 04:57:50 +08:00
|
|
|
if (operator == '>=' or operator == '=>'):
|
2019-02-15 02:48:05 +08:00
|
|
|
return LooseVersion(self.getCompilerVersion()) >= LooseVersion(version)
|
2013-05-18 04:15:07 +08:00
|
|
|
if (operator == '<'):
|
2019-02-15 02:48:05 +08:00
|
|
|
return LooseVersion(self.getCompilerVersion()) < LooseVersion(version)
|
2013-05-18 04:15:07 +08:00
|
|
|
if (operator == '<=' or operator == '=<'):
|
2019-02-15 02:48:05 +08:00
|
|
|
return LooseVersion(self.getCompilerVersion()) <= LooseVersion(version)
|
2013-05-18 04:15:07 +08:00
|
|
|
if (operator == '!=' or operator == '!' or operator == 'not'):
|
|
|
|
return str(version) not in str(self.getCompilerVersion())
|
|
|
|
return str(version) in str(self.getCompilerVersion())
|
|
|
|
|
|
|
|
def expectedCompiler(self, compilers):
|
2013-06-06 22:23:31 +08:00
|
|
|
"""Returns True iff any element of compilers is a sub-string of the current compiler."""
|
2016-09-07 04:57:50 +08:00
|
|
|
if (compilers is None):
|
2013-05-18 04:15:07 +08:00
|
|
|
return True
|
2013-06-06 22:23:31 +08:00
|
|
|
|
|
|
|
for compiler in compilers:
|
|
|
|
if compiler in self.getCompiler():
|
|
|
|
return True
|
|
|
|
|
|
|
|
return False
|
2013-05-18 04:15:07 +08:00
|
|
|
|
2015-04-21 09:15:47 +08:00
|
|
|
def expectedArch(self, archs):
|
|
|
|
"""Returns True iff any element of archs is a sub-string of the current architecture."""
|
2016-09-07 04:57:50 +08:00
|
|
|
if (archs is None):
|
2015-04-21 09:15:47 +08:00
|
|
|
return True
|
|
|
|
|
|
|
|
for arch in archs:
|
|
|
|
if arch in self.getArchitecture():
|
|
|
|
return True
|
|
|
|
|
|
|
|
return False
|
|
|
|
|
2011-08-02 03:50:58 +08: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-24 01:51:22 +08:00
|
|
|
option_str = ""
|
2011-08-25 03:48:51 +08:00
|
|
|
if arch:
|
|
|
|
option_str = "-A " + arch
|
|
|
|
if comp:
|
2012-03-17 04:44:00 +08:00
|
|
|
option_str += " -C " + comp
|
2011-08-25 03:48:51 +08:00
|
|
|
return option_str
|
2011-08-02 03:50:58 +08:00
|
|
|
|
2018-02-05 19:30:46 +08:00
|
|
|
def getDebugInfo(self):
|
|
|
|
method = getattr(self, self.testMethodName)
|
|
|
|
return getattr(method, "debug_info", None)
|
|
|
|
|
2011-08-02 03:50:58 +08:00
|
|
|
# ==================================================
|
|
|
|
# Build methods supported through a plugin interface
|
|
|
|
# ==================================================
|
|
|
|
|
2014-04-02 02:47:58 +08:00
|
|
|
def getstdlibFlag(self):
|
|
|
|
""" Returns the proper -stdlib flag, or empty if not required."""
|
2018-06-04 19:57:12 +08:00
|
|
|
if self.platformIsDarwin() or self.getPlatform() == "freebsd" or self.getPlatform() == "openbsd":
|
2014-04-02 02:47:58 +08:00
|
|
|
stdlibflag = "-stdlib=libc++"
|
2016-09-07 04:57:50 +08:00
|
|
|
else: # this includes NetBSD
|
2014-04-02 02:47:58 +08:00
|
|
|
stdlibflag = ""
|
|
|
|
return stdlibflag
|
|
|
|
|
2013-09-26 01:44:00 +08:00
|
|
|
def getstdFlag(self):
|
|
|
|
""" Returns the proper stdflag. """
|
2013-05-03 05:44:31 +08:00
|
|
|
if "gcc" in self.getCompiler() and "4.6" in self.getCompilerVersion():
|
2016-09-07 04:57:50 +08:00
|
|
|
stdflag = "-std=c++0x"
|
2013-05-03 05:44:31 +08:00
|
|
|
else:
|
2016-09-07 04:57:50 +08:00
|
|
|
stdflag = "-std=c++11"
|
2013-09-26 01:44:00 +08: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-02 02:47:58 +08:00
|
|
|
stdlibflag = self.getstdlibFlag()
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2015-10-27 01:52:16 +08:00
|
|
|
lib_dir = os.environ["LLDB_LIB_DIR"]
|
2016-10-31 12:48:10 +08:00
|
|
|
if self.hasDarwinFramework():
|
2016-09-07 04:57:50 +08:00
|
|
|
d = {'CXX_SOURCES': sources,
|
|
|
|
'EXE': exe_name,
|
|
|
|
'CFLAGS_EXTRAS': "%s %s" % (stdflag, stdlibflag),
|
2016-10-31 12:48:10 +08:00
|
|
|
'FRAMEWORK_INCLUDES': "-F%s" % self.framework_dir,
|
|
|
|
'LD_EXTRAS': "%s -Wl,-rpath,%s" % (self.dsym, self.framework_dir),
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
2018-06-04 19:57:12 +08:00
|
|
|
elif sys.platform.startswith('win'):
|
2016-09-07 04:57:50 +08:00
|
|
|
d = {
|
|
|
|
'CXX_SOURCES': sources,
|
|
|
|
'EXE': exe_name,
|
|
|
|
'CFLAGS_EXTRAS': "%s %s -I%s" % (stdflag,
|
|
|
|
stdlibflag,
|
|
|
|
os.path.join(
|
|
|
|
os.environ["LLDB_SRC"],
|
|
|
|
"include")),
|
2018-06-04 19:57:12 +08:00
|
|
|
'LD_EXTRAS': "-L%s -lliblldb" % os.environ["LLDB_IMPLIB_DIR"]}
|
|
|
|
else:
|
2016-09-07 04:57:50 +08:00
|
|
|
d = {
|
|
|
|
'CXX_SOURCES': sources,
|
|
|
|
'EXE': exe_name,
|
|
|
|
'CFLAGS_EXTRAS': "%s %s -I%s" % (stdflag,
|
|
|
|
stdlibflag,
|
|
|
|
os.path.join(
|
|
|
|
os.environ["LLDB_SRC"],
|
|
|
|
"include")),
|
2018-06-04 19:57:12 +08:00
|
|
|
'LD_EXTRAS': "-L%s/../lib -llldb -Wl,-rpath,%s/../lib" % (lib_dir, lib_dir)}
|
2013-05-03 05:44:31 +08:00
|
|
|
if self.TraceOn():
|
2016-09-07 04:57:50 +08:00
|
|
|
print(
|
|
|
|
"Building LLDB Driver (%s) from sources %s" %
|
|
|
|
(exe_name, sources))
|
2013-05-03 05:44:31 +08:00
|
|
|
|
|
|
|
self.buildDefault(dictionary=d)
|
|
|
|
|
2013-09-26 01:44:00 +08:00
|
|
|
def buildLibrary(self, sources, lib_name):
|
|
|
|
"""Platform specific way to build a default library. """
|
|
|
|
|
|
|
|
stdflag = self.getstdFlag()
|
|
|
|
|
2015-10-27 01:52:16 +08:00
|
|
|
lib_dir = os.environ["LLDB_LIB_DIR"]
|
2016-10-31 12:48:10 +08:00
|
|
|
if self.hasDarwinFramework():
|
2016-09-07 04:57:50 +08:00
|
|
|
d = {'DYLIB_CXX_SOURCES': sources,
|
|
|
|
'DYLIB_NAME': lib_name,
|
|
|
|
'CFLAGS_EXTRAS': "%s -stdlib=libc++" % stdflag,
|
2016-10-31 12:48:10 +08:00
|
|
|
'FRAMEWORK_INCLUDES': "-F%s" % self.framework_dir,
|
|
|
|
'LD_EXTRAS': "%s -Wl,-rpath,%s -dynamiclib" % (self.dsym, self.framework_dir),
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
2015-05-16 02:54:32 +08:00
|
|
|
elif self.getPlatform() == 'windows':
|
2016-09-07 04:57:50 +08:00
|
|
|
d = {
|
|
|
|
'DYLIB_CXX_SOURCES': sources,
|
|
|
|
'DYLIB_NAME': lib_name,
|
2018-02-09 07:10:29 +08:00
|
|
|
'CFLAGS_EXTRAS': "%s -I%s " % (stdflag,
|
|
|
|
os.path.join(
|
|
|
|
os.environ["LLDB_SRC"],
|
|
|
|
"include")),
|
2016-09-07 04:57:50 +08:00
|
|
|
'LD_EXTRAS': "-shared -l%s\liblldb.lib" % self.os.environ["LLDB_IMPLIB_DIR"]}
|
2018-06-04 19:57:12 +08: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")),
|
|
|
|
'LD_EXTRAS': "-shared -L%s/../lib -llldb -Wl,-rpath,%s/../lib" % (lib_dir, lib_dir)}
|
2013-09-26 01:44:00 +08:00
|
|
|
if self.TraceOn():
|
2016-09-07 04:57:50 +08:00
|
|
|
print(
|
|
|
|
"Building LLDB Library (%s) from sources %s" %
|
|
|
|
(lib_name, sources))
|
2013-09-26 01:44:00 +08:00
|
|
|
|
|
|
|
self.buildDefault(dictionary=d)
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2013-05-03 05:44:31 +08:00
|
|
|
def buildProgram(self, sources, exe_name):
|
|
|
|
""" Platform specific way to build an executable from C/C++ sources. """
|
2016-09-07 04:57:50 +08:00
|
|
|
d = {'CXX_SOURCES': sources,
|
|
|
|
'EXE': exe_name}
|
2013-05-03 05:44:31 +08:00
|
|
|
self.buildDefault(dictionary=d)
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
def buildDefault(
|
|
|
|
self,
|
|
|
|
architecture=None,
|
|
|
|
compiler=None,
|
[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 20:04:46 +08:00
|
|
|
dictionary=None):
|
2011-08-02 03:50:58 +08:00
|
|
|
"""Platform specific way to build the default binaries."""
|
2018-02-07 02:22:51 +08:00
|
|
|
testdir = self.mydir
|
2018-02-16 17:21:11 +08:00
|
|
|
testname = self.getBuildDirBasename()
|
2018-02-05 19:30:46 +08:00
|
|
|
if self.getDebugInfo():
|
2018-01-31 01:02:42 +08:00
|
|
|
raise Exception("buildDefault tests must set NO_DEBUG_INFO_TESTCASE")
|
2011-08-02 03:50:58 +08:00
|
|
|
module = builder_module()
|
2016-02-04 03:12:30 +08:00
|
|
|
dictionary = lldbplatformutil.finalize_build_dictionary(dictionary)
|
2018-01-31 02:29:16 +08:00
|
|
|
if not module.buildDefault(self, architecture, compiler,
|
[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 20:04:46 +08:00
|
|
|
dictionary, testdir, testname):
|
2011-08-02 03:50:58 +08:00
|
|
|
raise Exception("Don't know how to build default binary")
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
def buildDsym(
|
|
|
|
self,
|
|
|
|
architecture=None,
|
|
|
|
compiler=None,
|
[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 20:04:46 +08:00
|
|
|
dictionary=None):
|
2011-08-02 03:50:58 +08:00
|
|
|
"""Platform specific way to build binaries with dsym info."""
|
2018-02-07 02:22:51 +08:00
|
|
|
testdir = self.mydir
|
2018-02-16 17:21:11 +08:00
|
|
|
testname = self.getBuildDirBasename()
|
2018-02-05 19:30:46 +08:00
|
|
|
if self.getDebugInfo() != "dsym":
|
2018-01-31 07:15:49 +08:00
|
|
|
raise Exception("NO_DEBUG_INFO_TESTCASE must build with buildDefault")
|
|
|
|
|
2011-08-02 03:50:58 +08:00
|
|
|
module = builder_module()
|
2017-11-02 06:01:03 +08:00
|
|
|
dictionary = lldbplatformutil.finalize_build_dictionary(dictionary)
|
2018-01-31 02:29:16 +08:00
|
|
|
if not module.buildDsym(self, architecture, compiler,
|
[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 20:04:46 +08:00
|
|
|
dictionary, testdir, testname):
|
2011-08-02 03:50:58 +08:00
|
|
|
raise Exception("Don't know how to build binary with dsym")
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
def buildDwarf(
|
|
|
|
self,
|
|
|
|
architecture=None,
|
|
|
|
compiler=None,
|
[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 20:04:46 +08:00
|
|
|
dictionary=None):
|
2011-08-02 03:50:58 +08:00
|
|
|
"""Platform specific way to build binaries with dwarf maps."""
|
2018-02-07 02:22:51 +08:00
|
|
|
testdir = self.mydir
|
2018-02-16 17:21:11 +08:00
|
|
|
testname = self.getBuildDirBasename()
|
2018-02-05 19:30:46 +08:00
|
|
|
if self.getDebugInfo() != "dwarf":
|
2018-01-31 07:15:49 +08:00
|
|
|
raise Exception("NO_DEBUG_INFO_TESTCASE must build with buildDefault")
|
|
|
|
|
2011-08-02 03:50:58 +08:00
|
|
|
module = builder_module()
|
2016-02-04 03:12:30 +08:00
|
|
|
dictionary = lldbplatformutil.finalize_build_dictionary(dictionary)
|
2018-01-31 02:29:16 +08:00
|
|
|
if not module.buildDwarf(self, architecture, compiler,
|
[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 20:04:46 +08:00
|
|
|
dictionary, testdir, testname):
|
2011-08-02 03:50:58 +08:00
|
|
|
raise Exception("Don't know how to build binary with dwarf")
|
2011-08-02 02:46:13 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
def buildDwo(
|
|
|
|
self,
|
|
|
|
architecture=None,
|
|
|
|
compiler=None,
|
[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 20:04:46 +08:00
|
|
|
dictionary=None):
|
2015-10-07 18:02:17 +08:00
|
|
|
"""Platform specific way to build binaries with dwarf maps."""
|
2018-02-07 02:22:51 +08:00
|
|
|
testdir = self.mydir
|
2018-02-16 17:21:11 +08:00
|
|
|
testname = self.getBuildDirBasename()
|
2018-02-05 19:30:46 +08:00
|
|
|
if self.getDebugInfo() != "dwo":
|
2018-01-31 07:15:49 +08:00
|
|
|
raise Exception("NO_DEBUG_INFO_TESTCASE must build with buildDefault")
|
|
|
|
|
2015-10-07 18:02:17 +08:00
|
|
|
module = builder_module()
|
2016-02-04 03:12:30 +08:00
|
|
|
dictionary = lldbplatformutil.finalize_build_dictionary(dictionary)
|
2018-01-31 02:29:16 +08:00
|
|
|
if not module.buildDwo(self, architecture, compiler,
|
[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 20:04:46 +08:00
|
|
|
dictionary, testdir, testname):
|
2015-10-07 18:02:17 +08:00
|
|
|
raise Exception("Don't know how to build binary with dwo")
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
def buildGModules(
|
|
|
|
self,
|
|
|
|
architecture=None,
|
|
|
|
compiler=None,
|
[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 20:04:46 +08:00
|
|
|
dictionary=None):
|
2016-05-26 21:57:03 +08:00
|
|
|
"""Platform specific way to build binaries with gmodules info."""
|
2018-02-07 02:22:51 +08:00
|
|
|
testdir = self.mydir
|
2018-02-16 17:21:11 +08:00
|
|
|
testname = self.getBuildDirBasename()
|
2018-02-05 19:30:46 +08:00
|
|
|
if self.getDebugInfo() != "gmodules":
|
2018-01-31 07:15:49 +08:00
|
|
|
raise Exception("NO_DEBUG_INFO_TESTCASE must build with buildDefault")
|
|
|
|
|
2016-05-26 21:57:03 +08:00
|
|
|
module = builder_module()
|
2017-11-02 06:01:03 +08:00
|
|
|
dictionary = lldbplatformutil.finalize_build_dictionary(dictionary)
|
2018-01-31 02:29:16 +08:00
|
|
|
if not module.buildGModules(self, architecture, compiler,
|
[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 20:04:46 +08:00
|
|
|
dictionary, testdir, testname):
|
2016-05-26 21:57:03 +08:00
|
|
|
raise Exception("Don't know how to build binary with gmodules")
|
|
|
|
|
2015-01-23 04:03:21 +08:00
|
|
|
def signBinary(self, binary_path):
|
|
|
|
if sys.platform.startswith("darwin"):
|
2016-10-22 06:13:55 +08:00
|
|
|
codesign_cmd = "codesign --force --sign \"%s\" %s" % (
|
|
|
|
lldbtest_config.codesign_identity, binary_path)
|
2015-01-23 04:03:21 +08:00
|
|
|
call(codesign_cmd, shell=True)
|
|
|
|
|
2014-09-04 09:03:18 +08: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 18:02:40 +08: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 09:03:18 +08:00
|
|
|
]
|
2016-09-07 04:57:50 +08:00
|
|
|
lldb_root_path = os.path.join(
|
|
|
|
os.path.dirname(__file__), "..", "..", "..", "..")
|
2014-09-04 09:03:18 +08: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 15:19:41 +08:00
|
|
|
|
|
|
|
# Tries to find clang at the same folder as the lldb
|
2018-01-30 22:33:54 +08: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 15:19:41 +08:00
|
|
|
return path
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2014-09-04 09:03:18 +08: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 18:02:40 +08:00
|
|
|
def findYaml2obj(self):
|
|
|
|
"""
|
|
|
|
Get the path to the yaml2obj executable, which can be used to create
|
|
|
|
test object files from easy to write yaml instructions.
|
|
|
|
|
|
|
|
Throws an Exception if the executable cannot be found.
|
|
|
|
"""
|
|
|
|
# Tries to find yaml2obj at the same folder as clang
|
|
|
|
clang_dir = os.path.dirname(self.findBuiltClang())
|
2018-01-30 18:41:46 +08:00
|
|
|
path = distutils.spawn.find_executable("yaml2obj", clang_dir)
|
|
|
|
if path is not 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 18:02:40 +08:00
|
|
|
return path
|
|
|
|
raise Exception("yaml2obj executable not found")
|
|
|
|
|
|
|
|
|
|
|
|
def yaml2obj(self, yaml_path, obj_path):
|
|
|
|
"""
|
|
|
|
Create an object file at the given path from a yaml file.
|
|
|
|
|
|
|
|
Throws subprocess.CalledProcessError if the object could not be created.
|
|
|
|
"""
|
|
|
|
yaml2obj = self.findYaml2obj()
|
|
|
|
command = [yaml2obj, "-o=%s" % obj_path, yaml_path]
|
|
|
|
system([command])
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
def getBuildFlags(
|
|
|
|
self,
|
|
|
|
use_cpp11=True,
|
|
|
|
use_libcxx=False,
|
|
|
|
use_libstdcxx=False):
|
2013-05-29 07:04:25 +08:00
|
|
|
""" Returns a dictionary (which can be provided to build* functions above) which
|
|
|
|
contains OS-specific build flags.
|
|
|
|
"""
|
|
|
|
cflags = ""
|
2015-02-25 21:26:28 +08:00
|
|
|
ldflags = ""
|
2013-08-06 23:02:32 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
# On Mac OS X, unless specifically requested to use libstdc++, use
|
|
|
|
# libc++
|
2015-05-16 02:54:32 +08:00
|
|
|
if not use_libstdcxx and self.platformIsDarwin():
|
2013-08-06 23:02:32 +08:00
|
|
|
use_libcxx = True
|
|
|
|
|
|
|
|
if use_libcxx and self.libcxxPath:
|
|
|
|
cflags += "-stdlib=libc++ "
|
|
|
|
if self.libcxxPath:
|
|
|
|
libcxxInclude = os.path.join(self.libcxxPath, "include")
|
|
|
|
libcxxLib = os.path.join(self.libcxxPath, "lib")
|
|
|
|
if os.path.isdir(libcxxInclude) and os.path.isdir(libcxxLib):
|
2016-09-07 04:57:50 +08:00
|
|
|
cflags += "-nostdinc++ -I%s -L%s -Wl,-rpath,%s " % (
|
|
|
|
libcxxInclude, libcxxLib, libcxxLib)
|
2013-08-06 23:02:32 +08:00
|
|
|
|
2013-05-29 07:04:25 +08:00
|
|
|
if use_cpp11:
|
|
|
|
cflags += "-std="
|
|
|
|
if "gcc" in self.getCompiler() and "4.6" in self.getCompilerVersion():
|
|
|
|
cflags += "c++0x"
|
|
|
|
else:
|
|
|
|
cflags += "c++11"
|
2015-05-16 02:54:32 +08:00
|
|
|
if self.platformIsDarwin() or self.getPlatform() == "freebsd":
|
2013-05-29 07:04:25 +08:00
|
|
|
cflags += " -stdlib=libc++"
|
2018-06-04 19:57:12 +08:00
|
|
|
elif self.getPlatform() == "openbsd":
|
|
|
|
cflags += " -stdlib=libc++"
|
2015-12-08 05:25:57 +08:00
|
|
|
elif self.getPlatform() == "netbsd":
|
2019-03-03 00:46:29 +08:00
|
|
|
# NetBSD defaults to libc++
|
|
|
|
pass
|
2013-05-29 07:04:25 +08:00
|
|
|
elif "clang" in self.getCompiler():
|
|
|
|
cflags += " -stdlib=libstdc++"
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
return {'CFLAGS_EXTRAS': cflags,
|
|
|
|
'LD_EXTRAS': ldflags,
|
|
|
|
}
|
2013-05-29 07:04:25 +08:00
|
|
|
|
2011-08-13 04:19:22 +08:00
|
|
|
def cleanup(self, dictionary=None):
|
|
|
|
"""Platform specific way to do cleanup after build."""
|
|
|
|
module = builder_module()
|
|
|
|
if not module.cleanup(self, dictionary):
|
2016-09-07 04:57:50 +08:00
|
|
|
raise Exception(
|
|
|
|
"Don't know how to do cleanup with dictionary: " +
|
|
|
|
dictionary)
|
2011-08-13 04:19:22 +08:00
|
|
|
|
2013-05-03 05:44:31 +08: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.
|
|
|
|
"""
|
2016-09-07 04:57:50 +08:00
|
|
|
existing_library_path = os.environ[
|
|
|
|
self.dylibPath] if self.dylibPath in os.environ else None
|
2015-10-27 01:52:16 +08:00
|
|
|
lib_dir = os.environ["LLDB_LIB_DIR"]
|
2013-05-03 05:44:31 +08:00
|
|
|
if existing_library_path:
|
2015-10-27 01:52:16 +08:00
|
|
|
return "%s:%s" % (existing_library_path, lib_dir)
|
2013-05-03 05:44:31 +08:00
|
|
|
elif sys.platform.startswith("darwin"):
|
2015-10-27 01:52:16 +08:00
|
|
|
return os.path.join(lib_dir, 'LLDB.framework')
|
2013-05-03 05:44:31 +08:00
|
|
|
else:
|
2015-10-27 01:52:16 +08:00
|
|
|
return lib_dir
|
2011-08-02 02:46:13 +08:00
|
|
|
|
2013-09-09 22:04:04 +08:00
|
|
|
def getLibcPlusPlusLibs(self):
|
2018-06-04 19:57:12 +08:00
|
|
|
if self.getPlatform() in ('freebsd', 'linux', 'netbsd', 'openbsd'):
|
2013-09-09 22:04:04 +08:00
|
|
|
return ['libc++.so.1']
|
|
|
|
else:
|
2019-03-07 08:34:13 +08:00
|
|
|
return ['libc++.1.dylib', 'libc++abi.']
|
2013-09-09 22:04:04 +08:00
|
|
|
|
2015-09-30 18:12:40 +08: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 22:22:52 +08: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-07 04:57:50 +08:00
|
|
|
|
|
|
|
|
2015-09-30 18:12:40 +08:00
|
|
|
class LLDBTestCaseFactory(type):
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2015-09-30 18:12:40 +08:00
|
|
|
def __new__(cls, name, bases, attrs):
|
2016-09-07 04:57:50 +08:00
|
|
|
original_testcase = super(
|
|
|
|
LLDBTestCaseFactory, cls).__new__(
|
|
|
|
cls, name, bases, attrs)
|
2016-03-31 22:22:52 +08:00
|
|
|
if original_testcase.NO_DEBUG_INFO_TESTCASE:
|
|
|
|
return original_testcase
|
|
|
|
|
2015-09-30 18:12:40 +08:00
|
|
|
newattrs = {}
|
2015-10-24 01:53:51 +08:00
|
|
|
for attrname, attrvalue in attrs.items():
|
2016-09-07 04:57:50 +08:00
|
|
|
if attrname.startswith("test") and not getattr(
|
|
|
|
attrvalue, "__no_debug_info_test__", False):
|
2015-12-15 02:49:16 +08:00
|
|
|
|
|
|
|
# If any debug info categories were explicitly tagged, assume that list to be
|
2016-09-07 04:57:50 +08:00
|
|
|
# authoritative. If none were specified, try with all debug
|
|
|
|
# info formats.
|
2018-04-24 18:51:44 +08:00
|
|
|
all_dbginfo_categories = set(test_categories.debug_info_categories)
|
2016-09-07 04:57:50 +08:00
|
|
|
categories = set(
|
|
|
|
getattr(
|
|
|
|
attrvalue,
|
|
|
|
"categories",
|
|
|
|
[])) & all_dbginfo_categories
|
2015-12-15 02:49:16 +08:00
|
|
|
if not categories:
|
|
|
|
categories = all_dbginfo_categories
|
|
|
|
|
2018-04-24 18:51:44 +08:00
|
|
|
for cat in categories:
|
|
|
|
@decorators.add_test_categories([cat])
|
2015-12-15 02:49:16 +08:00
|
|
|
@wraps(attrvalue)
|
2018-04-24 18:51:44 +08:00
|
|
|
def test_method(self, attrvalue=attrvalue):
|
2015-12-15 02:49:16 +08:00
|
|
|
return attrvalue(self)
|
2015-12-15 06:58:16 +08:00
|
|
|
|
2018-04-24 18:51:44 +08:00
|
|
|
method_name = attrname + "_" + cat
|
|
|
|
test_method.__name__ = method_name
|
|
|
|
test_method.debug_info = cat
|
|
|
|
newattrs[method_name] = test_method
|
2016-05-26 21:57:03 +08:00
|
|
|
|
2015-09-30 18:12:40 +08:00
|
|
|
else:
|
|
|
|
newattrs[attrname] = attrvalue
|
2016-09-07 04:57:50 +08:00
|
|
|
return super(
|
|
|
|
LLDBTestCaseFactory,
|
|
|
|
cls).__new__(
|
|
|
|
cls,
|
|
|
|
name,
|
|
|
|
bases,
|
|
|
|
newattrs)
|
|
|
|
|
|
|
|
# Setup the metaclass for this class to change the list of the test
|
|
|
|
# methods when a new class is loaded
|
|
|
|
|
2015-09-30 18:12:40 +08:00
|
|
|
|
2015-10-21 05:06:05 +08:00
|
|
|
@add_metaclass(LLDBTestCaseFactory)
|
2011-08-02 02:46:13 +08: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.
|
|
|
|
|
|
|
|
- The build methods buildDefault, buildDsym, and buildDwarf are used to
|
|
|
|
build the binaries used during a particular test scenario. A plugin
|
|
|
|
should be provided for the sys.platform running the test suite. The
|
|
|
|
Mac OS X implementation is located in plugins/darwin.py.
|
|
|
|
"""
|
|
|
|
|
2016-03-31 22:22:52 +08: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-02 02:46:13 +08:00
|
|
|
# Maximum allowed attempts when launching the inferior process.
|
|
|
|
# Can be overridden by the LLDB_MAX_LAUNCH_COUNT environment variable.
|
2018-06-14 03:02:44 +08:00
|
|
|
maxLaunchCount = 1
|
2011-08-02 02:46:13 +08:00
|
|
|
|
|
|
|
# Time to wait before the next launching attempt in second(s).
|
|
|
|
# Can be overridden by the LLDB_TIME_WAIT_NEXT_LAUNCH environment variable.
|
2016-09-07 04:57:50 +08:00
|
|
|
timeWaitNextLaunch = 1.0
|
2011-08-02 02:46:13 +08:00
|
|
|
|
2016-10-31 12:48:19 +08:00
|
|
|
def generateSource(self, source):
|
|
|
|
template = source + '.template'
|
2018-01-31 02:29:16 +08:00
|
|
|
temp = os.path.join(self.getSourceDir(), template)
|
2016-10-31 12:48:19 +08:00
|
|
|
with open(temp, 'r') as f:
|
|
|
|
content = f.read()
|
2018-07-28 06:20:59 +08:00
|
|
|
|
2016-10-31 12:48:19 +08: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-09 02:14:42 +08:00
|
|
|
include_stmt = "'#include <%s>' % os.path.join('" + public_api_dir + "', header)"
|
2016-10-31 12:48:19 +08: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)
|
2018-01-31 02:29:16 +08:00
|
|
|
src = os.path.join(self.getBuildDir(), source)
|
2016-10-31 12:48:19 +08:00
|
|
|
with open(src, 'w') as f:
|
|
|
|
f.write(new_content)
|
|
|
|
|
|
|
|
self.addTearDownHook(lambda: os.remove(src))
|
|
|
|
|
2010-09-16 09:53:04 +08:00
|
|
|
def setUp(self):
|
|
|
|
#import traceback
|
2016-09-07 04:57:50 +08:00
|
|
|
# traceback.print_stack()
|
2010-07-03 11:41:59 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
# Works with the test driver to conditionally skip tests via
|
|
|
|
# decorators.
|
2011-08-02 02:46:13 +08:00
|
|
|
Base.setUp(self)
|
|
|
|
|
2018-11-17 00:19:07 +08:00
|
|
|
# Set the clang modules cache path used by LLDB.
|
2019-03-07 04:51:28 +08:00
|
|
|
mod_cache = os.path.join(os.environ["LLDB_BUILD"], "module-cache-lldb")
|
2018-08-22 00:13:37 +08:00
|
|
|
self.runCmd('settings set symbols.clang-modules-cache-path "%s"'
|
|
|
|
% mod_cache)
|
|
|
|
|
|
|
|
# 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.
|
|
|
|
self.runCmd('settings set symbols.enable-external-lookup false')
|
2018-02-10 06:08:26 +08:00
|
|
|
|
2019-03-14 08:46:15 +08:00
|
|
|
# Make sure that a sanitizer LLDB's environment doesn't get passed on.
|
2019-03-16 01:22:00 +08:00
|
|
|
if 'DYLD_LIBRARY_PATH' in os.environ:
|
|
|
|
self.runCmd('settings set target.env-vars DYLD_LIBRARY_PATH=')
|
2019-03-14 08:46:15 +08:00
|
|
|
|
2010-08-26 02:49:48 +08:00
|
|
|
if "LLDB_MAX_LAUNCH_COUNT" in os.environ:
|
|
|
|
self.maxLaunchCount = int(os.environ["LLDB_MAX_LAUNCH_COUNT"])
|
|
|
|
|
2010-10-20 00:00:42 +08:00
|
|
|
if "LLDB_TIME_WAIT_NEXT_LAUNCH" in os.environ:
|
2016-09-07 04:57:50 +08:00
|
|
|
self.timeWaitNextLaunch = float(
|
|
|
|
os.environ["LLDB_TIME_WAIT_NEXT_LAUNCH"])
|
2010-08-26 02:49:48 +08:00
|
|
|
|
2010-07-03 11:41:59 +08: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-18 02:40:27 +08: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-07 04:57:50 +08:00
|
|
|
|
2014-11-18 02:40:27 +08: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-03 05:32:44 +08:00
|
|
|
if not shlibs or not self.platformContext:
|
2014-12-02 07:21:18 +08:00
|
|
|
return None
|
|
|
|
|
|
|
|
shlib_environment_var = self.platformContext.shlib_environment_var
|
|
|
|
shlib_prefix = self.platformContext.shlib_prefix
|
|
|
|
shlib_extension = '.' + self.platformContext.shlib_extension
|
|
|
|
|
|
|
|
working_dir = self.get_process_working_directory()
|
|
|
|
environment = ['%s=%s' % (shlib_environment_var, working_dir)]
|
|
|
|
# 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 19:47:44 +08:00
|
|
|
if os.path.isfile(name):
|
2016-09-07 04:57:50 +08:00
|
|
|
local_shlib_path = name # name is the full path to the local shared library
|
2014-12-02 07:21:18 +08:00
|
|
|
else:
|
|
|
|
# Check relative names
|
2016-09-07 04:57:50 +08:00
|
|
|
local_shlib_path = os.path.join(
|
2018-01-31 02:29:16 +08:00
|
|
|
self.getBuildDir(), shlib_prefix + name + shlib_extension)
|
2014-12-02 07:21:18 +08:00
|
|
|
if not os.path.exists(local_shlib_path):
|
2016-09-07 04:57:50 +08:00
|
|
|
local_shlib_path = os.path.join(
|
2018-01-31 02:29:16 +08:00
|
|
|
self.getBuildDir(), name + shlib_extension)
|
2014-11-18 02:40:27 +08:00
|
|
|
if not os.path.exists(local_shlib_path):
|
2018-01-31 02:29:16 +08:00
|
|
|
local_shlib_path = os.path.join(self.getBuildDir(), name)
|
2014-12-02 07:21:18 +08:00
|
|
|
|
|
|
|
# Make sure we found the local shared library in the above code
|
|
|
|
self.assertTrue(os.path.exists(local_shlib_path))
|
|
|
|
|
|
|
|
# Add the shared library to our target
|
|
|
|
shlib_module = target.AddModule(local_shlib_path, None, None, None)
|
|
|
|
if lldb.remote_platform:
|
2014-11-18 02:40:27 +08:00
|
|
|
# We must set the remote install location if we want the shared library
|
|
|
|
# to get uploaded to the remote target
|
2018-02-21 23:33:53 +08:00
|
|
|
remote_shlib_path = lldbutil.append_to_process_working_directory(self,
|
2016-09-07 04:57:50 +08:00
|
|
|
os.path.basename(local_shlib_path))
|
|
|
|
shlib_module.SetRemoteInstallFileSpec(
|
|
|
|
lldb.SBFileSpec(remote_shlib_path, False))
|
2014-12-02 07:21:18 +08:00
|
|
|
|
|
|
|
return environment
|
|
|
|
|
2012-10-24 09:23:57 +08: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')
|
2016-09-07 04:57:50 +08:00
|
|
|
return self.dbg.GetSelectedTarget().GetProcess(
|
|
|
|
).GetSelectedThread().GetSelectedFrame()
|
2012-10-24 09:23:57 +08:00
|
|
|
|
2013-12-14 03:18:59 +08: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:
|
2016-09-07 04:57:50 +08:00
|
|
|
# Remote tests set the platform working directory up in
|
|
|
|
# TestBase.setUp()
|
2013-12-14 03:18:59 +08:00
|
|
|
return lldb.remote_platform.GetWorkingDirectory()
|
|
|
|
else:
|
|
|
|
# local tests change directory into each test subdirectory
|
2018-01-31 02:29:16 +08:00
|
|
|
return self.getBuildDir()
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2010-07-03 11:41:59 +08:00
|
|
|
def tearDown(self):
|
2010-09-03 05:23:12 +08:00
|
|
|
#import traceback
|
2016-09-07 04:57:50 +08:00
|
|
|
# traceback.print_stack()
|
2010-09-03 05:23:12 +08:00
|
|
|
|
2015-10-16 06:39:55 +08: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-16 05:24:24 +08: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")
|
|
|
|
self.assertTrue(rc.Success(), PROCESS_KILLED)
|
|
|
|
for target in targets:
|
|
|
|
self.dbg.DeleteTarget(target)
|
2010-08-17 05:28:10 +08:00
|
|
|
|
2015-03-27 00:43:25 +08:00
|
|
|
# Do this last, to make sure it's in reverse order from how we setup.
|
|
|
|
Base.tearDown(self)
|
|
|
|
|
2015-03-27 02:54:21 +08:00
|
|
|
# This must be the last statement, otherwise teardown hooks or other
|
|
|
|
# lines might depend on this still being active.
|
|
|
|
del self.dbg
|
|
|
|
|
2011-10-01 05:48:35 +08: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-06 03:22:28 +08:00
|
|
|
from .lldbutil import stop_reason_to_str
|
2011-10-01 05:48:35 +08:00
|
|
|
self.runCmd('thread list')
|
|
|
|
output = self.res.GetOutput()
|
2016-09-07 04:57:50 +08:00
|
|
|
thread_line_pattern = re.compile(
|
|
|
|
"^[ *] thread #([0-9]+):.*stop reason = %s" %
|
|
|
|
stop_reason_to_str(stop_reason))
|
2011-10-01 05:48:35 +08:00
|
|
|
for line in output.splitlines():
|
|
|
|
matched = thread_line_pattern.match(line)
|
|
|
|
if matched:
|
|
|
|
self.runCmd('thread select %s' % matched.group(1))
|
|
|
|
|
2013-06-18 06:51:50 +08:00
|
|
|
def runCmd(self, cmd, msg=None, check=True, trace=False, inHistory=False):
|
2010-08-20 07:26:59 +08:00
|
|
|
"""
|
|
|
|
Ask the command interpreter to handle the command and then check its
|
|
|
|
return status.
|
|
|
|
"""
|
|
|
|
# Fail fast if 'cmd' is not meaningful.
|
|
|
|
if not cmd or len(cmd) == 0:
|
|
|
|
raise Exception("Bad 'cmd' parameter encountered")
|
2010-08-21 01:57:32 +08:00
|
|
|
|
2010-09-01 01:42:54 +08:00
|
|
|
trace = (True if traceAlways else trace)
|
2010-08-24 01:10:44 +08:00
|
|
|
|
2013-08-27 07:57:52 +08:00
|
|
|
if cmd.startswith("target create "):
|
|
|
|
cmd = cmd.replace("target create ", "file ")
|
|
|
|
|
2010-09-01 08:15:19 +08:00
|
|
|
running = (cmd.startswith("run") or cmd.startswith("process launch"))
|
2010-08-21 01:57:32 +08:00
|
|
|
|
2010-09-01 08:15:19 +08:00
|
|
|
for i in range(self.maxLaunchCount if running else 1):
|
2013-06-18 06:51:50 +08:00
|
|
|
self.ci.HandleCommand(cmd, self.res, inHistory)
|
2010-08-21 01:57:32 +08:00
|
|
|
|
2010-10-15 09:18:29 +08:00
|
|
|
with recording(self, trace) as sbuf:
|
2015-10-20 07:45:41 +08:00
|
|
|
print("runCmd:", cmd, file=sbuf)
|
2010-10-16 00:13:00 +08:00
|
|
|
if not check:
|
2015-10-20 07:45:41 +08:00
|
|
|
print("check of return status not required", file=sbuf)
|
2010-08-26 02:49:48 +08:00
|
|
|
if self.res.Succeeded():
|
2015-10-20 07:45:41 +08:00
|
|
|
print("output:", self.res.GetOutput(), file=sbuf)
|
2010-08-26 02:49:48 +08:00
|
|
|
else:
|
2015-10-20 07:45:41 +08:00
|
|
|
print("runCmd failed!", file=sbuf)
|
|
|
|
print(self.res.GetError(), file=sbuf)
|
2010-08-21 01:57:32 +08:00
|
|
|
|
2010-08-21 05:03:09 +08:00
|
|
|
if self.res.Succeeded():
|
2010-08-26 02:49:48 +08:00
|
|
|
break
|
2010-10-15 09:18:29 +08:00
|
|
|
elif running:
|
2011-01-19 10:02:08 +08:00
|
|
|
# For process launch, wait some time before possible next try.
|
|
|
|
time.sleep(self.timeWaitNextLaunch)
|
2012-08-02 03:56:04 +08:00
|
|
|
with recording(self, trace) as sbuf:
|
2015-10-20 07:45:41 +08:00
|
|
|
print("Command '" + cmd + "' failed!", file=sbuf)
|
2010-08-21 01:57:32 +08:00
|
|
|
|
2010-08-20 07:26:59 +08:00
|
|
|
if check:
|
2018-08-09 23:29:32 +08:00
|
|
|
output = ""
|
|
|
|
if self.res.GetOutput():
|
|
|
|
output += "\nCommand output:\n" + self.res.GetOutput()
|
|
|
|
if self.res.GetError():
|
|
|
|
output += "\nError output:\n" + self.res.GetError()
|
2018-08-09 23:57:43 +08:00
|
|
|
if msg:
|
|
|
|
msg += output
|
|
|
|
if cmd:
|
|
|
|
cmd += output
|
2015-07-02 07:56:30 +08:00
|
|
|
self.assertTrue(self.res.Succeeded(),
|
2018-08-09 23:57:43 +08:00
|
|
|
msg if (msg) else CMD_MSG(cmd))
|
2010-08-20 07:26:59 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
def match(
|
|
|
|
self,
|
|
|
|
str,
|
|
|
|
patterns,
|
|
|
|
msg=None,
|
|
|
|
trace=False,
|
|
|
|
error=False,
|
|
|
|
matching=True,
|
|
|
|
exe=True):
|
2012-09-22 08:05:11 +08:00
|
|
|
"""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.
|
2016-09-07 04:57:50 +08:00
|
|
|
# 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)
|
2012-09-22 08:05:11 +08:00
|
|
|
|
|
|
|
# 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-20 07:45:41 +08:00
|
|
|
print("looking at:", output, file=sbuf)
|
2012-09-22 08:05:11 +08: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-20 07:45:41 +08:00
|
|
|
print("%s pattern: %s" % (heading, pattern), file=sbuf)
|
|
|
|
print("Matched" if matched else "Not matched", file=sbuf)
|
2012-09-22 08:05:11 +08:00
|
|
|
if matched:
|
|
|
|
break
|
|
|
|
|
|
|
|
self.assertTrue(matched if matching else not matched,
|
2016-03-09 02:58:48 +08:00
|
|
|
msg if msg else EXP_MSG(str, output, exe))
|
2012-09-22 08:05:11 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
return match_object
|
|
|
|
|
2018-09-14 05:26:00 +08:00
|
|
|
def check_completion_with_desc(self, str_input, match_desc_pairs):
|
|
|
|
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))
|
|
|
|
|
|
|
|
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
|
|
|
|
break
|
|
|
|
if not found_pair:
|
|
|
|
missing_pairs.append(pair)
|
|
|
|
|
|
|
|
if len(missing_pairs):
|
|
|
|
error_msg = "Missing pairs:\n"
|
|
|
|
for pair in missing_pairs:
|
|
|
|
error_msg += " [" + pair[0] + ":" + pair[1] + "]\n"
|
|
|
|
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)
|
|
|
|
error_msg += "[" + match_candidate + ":" + description_candidate + "]\n"
|
|
|
|
self.assertEqual(0, len(missing_pairs), error_msg)
|
2018-08-31 01:29:37 +08: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])
|
|
|
|
|
2018-09-19 03:31:47 +08:00
|
|
|
def filecheck(
|
|
|
|
self,
|
|
|
|
command,
|
|
|
|
check_file,
|
|
|
|
filecheck_options = ''):
|
|
|
|
# Run the command.
|
|
|
|
self.runCmd(
|
|
|
|
command,
|
|
|
|
msg="FileCheck'ing result of `{0}`".format(command))
|
|
|
|
|
|
|
|
# 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-21 07:56:39 +08:00
|
|
|
check_file_abs = os.path.abspath(check_file)
|
2018-09-19 03:31:47 +08:00
|
|
|
|
|
|
|
# Run FileCheck.
|
|
|
|
filecheck_bin = configuration.get_filecheck_path()
|
2018-10-13 03:29:59 +08:00
|
|
|
if not filecheck_bin:
|
|
|
|
self.assertTrue(False, "No valid FileCheck executable specified")
|
2018-09-19 03:31:47 +08:00
|
|
|
filecheck_args = [filecheck_bin, check_file_abs]
|
|
|
|
if filecheck_options:
|
|
|
|
filecheck_args.append(filecheck_options)
|
2018-10-13 01:56:01 +08:00
|
|
|
subproc = Popen(filecheck_args, stdin=PIPE, stdout=PIPE, stderr=PIPE, universal_newlines = True)
|
2018-09-19 03:31:47 +08:00
|
|
|
cmd_stdout, cmd_stderr = subproc.communicate(input=output)
|
|
|
|
cmd_status = subproc.returncode
|
|
|
|
|
2018-09-21 07:56:39 +08:00
|
|
|
filecheck_cmd = " ".join(filecheck_args)
|
|
|
|
filecheck_trace = """
|
|
|
|
--- FileCheck trace (code={0}) ---
|
2018-09-19 03:31:47 +08:00
|
|
|
{1}
|
|
|
|
|
|
|
|
FileCheck input:
|
|
|
|
{2}
|
|
|
|
|
|
|
|
FileCheck output:
|
|
|
|
{3}
|
|
|
|
{4}
|
2018-09-21 07:56:39 +08: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-19 03:31:47 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
def expect(
|
|
|
|
self,
|
|
|
|
str,
|
|
|
|
msg=None,
|
|
|
|
patterns=None,
|
|
|
|
startstr=None,
|
|
|
|
endstr=None,
|
|
|
|
substrs=None,
|
|
|
|
trace=False,
|
|
|
|
error=False,
|
|
|
|
matching=True,
|
|
|
|
exe=True,
|
|
|
|
inHistory=False):
|
2010-08-20 07:26:59 +08: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-22 05:08:53 +08:00
|
|
|
'startstr', matches the substrings contained in 'substrs', and regexp
|
|
|
|
matches the patterns contained in 'patterns'.
|
2010-09-18 06:28:51 +08: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-18 06:45:27 +08:00
|
|
|
from running the command is retrieved and compared against the golden
|
2010-09-18 06:28:51 +08:00
|
|
|
input, instead.
|
2010-09-22 05:08:53 +08: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-22 07:33:30 +08: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-20 07:26:59 +08:00
|
|
|
"""
|
2010-09-01 01:42:54 +08:00
|
|
|
trace = (True if traceAlways else trace)
|
2010-08-24 01:10:44 +08:00
|
|
|
|
2010-09-22 07:33:30 +08:00
|
|
|
if exe:
|
|
|
|
# First run the command. If we are expecting error, set check=False.
|
2016-09-07 04:57:50 +08:00
|
|
|
# Pass the assert message along since it provides more semantic
|
|
|
|
# info.
|
|
|
|
self.runCmd(
|
|
|
|
str,
|
|
|
|
msg=msg,
|
|
|
|
trace=(
|
|
|
|
True if trace else False),
|
|
|
|
check=not error,
|
|
|
|
inHistory=inHistory)
|
2010-08-20 07:26:59 +08:00
|
|
|
|
2010-09-22 07:33:30 +08:00
|
|
|
# Then compare the output against expected strings.
|
|
|
|
output = self.res.GetError() if error else self.res.GetOutput()
|
2010-09-18 06:28:51 +08:00
|
|
|
|
2010-09-22 07:33:30 +08: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.
|
2016-09-07 04:57:50 +08:00
|
|
|
if isinstance(str, lldb.SBCommandReturnObject):
|
2012-10-23 08:09:02 +08:00
|
|
|
output = str.GetOutput()
|
|
|
|
else:
|
|
|
|
output = str
|
2010-10-15 09:18:29 +08:00
|
|
|
with recording(self, trace) as sbuf:
|
2015-10-20 07:45:41 +08:00
|
|
|
print("looking at:", output, file=sbuf)
|
2010-09-18 06:28:51 +08:00
|
|
|
|
2016-11-17 05:15:24 +08:00
|
|
|
if output is None:
|
|
|
|
output = ""
|
2010-09-22 05:08:53 +08:00
|
|
|
# The heading says either "Expecting" or "Not expecting".
|
2010-10-15 09:18:29 +08:00
|
|
|
heading = "Expecting" if matching else "Not expecting"
|
2010-09-22 05:08:53 +08:00
|
|
|
|
|
|
|
# Start from the startstr, if specified.
|
|
|
|
# If there's no startstr, set the initial state appropriately.
|
2016-09-07 04:57:50 +08:00
|
|
|
matched = output.startswith(startstr) if startstr else (
|
|
|
|
True if matching else False)
|
2010-08-21 02:25:15 +08:00
|
|
|
|
2010-10-15 09:18:29 +08:00
|
|
|
if startstr:
|
|
|
|
with recording(self, trace) as sbuf:
|
2015-10-20 07:45:41 +08:00
|
|
|
print("%s start string: %s" % (heading, startstr), file=sbuf)
|
|
|
|
print("Matched" if matched else "Not matched", file=sbuf)
|
2010-08-21 02:25:15 +08:00
|
|
|
|
2011-10-01 05:48:35 +08:00
|
|
|
# Look for endstr, if specified.
|
|
|
|
keepgoing = matched if matching else not matched
|
|
|
|
if endstr:
|
|
|
|
matched = output.endswith(endstr)
|
|
|
|
with recording(self, trace) as sbuf:
|
2015-10-20 07:45:41 +08:00
|
|
|
print("%s end string: %s" % (heading, endstr), file=sbuf)
|
|
|
|
print("Matched" if matched else "Not matched", file=sbuf)
|
2011-10-01 05:48:35 +08:00
|
|
|
|
2010-09-22 05:08:53 +08:00
|
|
|
# Look for sub strings, if specified.
|
|
|
|
keepgoing = matched if matching else not matched
|
|
|
|
if substrs and keepgoing:
|
2016-03-09 02:58:48 +08:00
|
|
|
for substr in substrs:
|
|
|
|
matched = output.find(substr) != -1
|
2010-10-15 09:18:29 +08:00
|
|
|
with recording(self, trace) as sbuf:
|
2016-03-09 02:58:48 +08:00
|
|
|
print("%s sub string: %s" % (heading, substr), file=sbuf)
|
2015-10-20 07:45:41 +08:00
|
|
|
print("Matched" if matched else "Not matched", file=sbuf)
|
2010-09-22 05:08:53 +08:00
|
|
|
keepgoing = matched if matching else not matched
|
|
|
|
if not keepgoing:
|
|
|
|
break
|
|
|
|
|
|
|
|
# Search for regular expression patterns, if specified.
|
|
|
|
keepgoing = matched if matching else not matched
|
|
|
|
if patterns and keepgoing:
|
|
|
|
for pattern in patterns:
|
|
|
|
# Match Objects always have a boolean value of True.
|
|
|
|
matched = bool(re.search(pattern, output))
|
2010-10-15 09:18:29 +08:00
|
|
|
with recording(self, trace) as sbuf:
|
2015-10-20 07:45:41 +08:00
|
|
|
print("%s pattern: %s" % (heading, pattern), file=sbuf)
|
|
|
|
print("Matched" if matched else "Not matched", file=sbuf)
|
2010-09-22 05:08:53 +08:00
|
|
|
keepgoing = matched if matching else not matched
|
|
|
|
if not keepgoing:
|
2010-08-20 07:26:59 +08:00
|
|
|
break
|
|
|
|
|
2010-09-22 05:08:53 +08:00
|
|
|
self.assertTrue(matched if matching else not matched,
|
2016-03-09 02:58:48 +08:00
|
|
|
msg if msg else EXP_MSG(str, output, exe))
|
2010-08-20 07:26:59 +08:00
|
|
|
|
2010-08-26 06:52:45 +08:00
|
|
|
def invoke(self, obj, name, trace=False):
|
2010-08-26 06:56:10 +08:00
|
|
|
"""Use reflection to call a method dynamically with no argument."""
|
2010-09-01 01:42:54 +08:00
|
|
|
trace = (True if traceAlways else trace)
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2010-08-26 06:52:45 +08:00
|
|
|
method = getattr(obj, name)
|
|
|
|
import inspect
|
|
|
|
self.assertTrue(inspect.ismethod(method),
|
|
|
|
name + "is a method name of object: " + str(obj))
|
|
|
|
result = method()
|
2010-10-15 09:18:29 +08:00
|
|
|
with recording(self, trace) as sbuf:
|
2016-09-07 04:57:50 +08:00
|
|
|
print(str(method) + ":", result, file=sbuf)
|
2010-08-26 06:52:45 +08:00
|
|
|
return result
|
2010-08-27 08:15:48 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
def build(
|
|
|
|
self,
|
|
|
|
architecture=None,
|
|
|
|
compiler=None,
|
[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 20:04:46 +08:00
|
|
|
dictionary=None):
|
2015-09-30 18:12:40 +08:00
|
|
|
"""Platform specific way to build the default binaries."""
|
|
|
|
module = builder_module()
|
2018-01-31 02:29:16 +08:00
|
|
|
|
2016-02-04 03:12:30 +08:00
|
|
|
dictionary = lldbplatformutil.finalize_build_dictionary(dictionary)
|
2018-02-05 19:30:46 +08:00
|
|
|
if self.getDebugInfo() is None:
|
[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 20:04:46 +08:00
|
|
|
return self.buildDefault(architecture, compiler, dictionary)
|
2018-02-05 19:30:46 +08:00
|
|
|
elif self.getDebugInfo() == "dsym":
|
[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 20:04:46 +08:00
|
|
|
return self.buildDsym(architecture, compiler, dictionary)
|
2018-02-05 19:30:46 +08:00
|
|
|
elif self.getDebugInfo() == "dwarf":
|
[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 20:04:46 +08:00
|
|
|
return self.buildDwarf(architecture, compiler, dictionary)
|
2018-02-05 19:30:46 +08:00
|
|
|
elif self.getDebugInfo() == "dwo":
|
[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 20:04:46 +08:00
|
|
|
return self.buildDwo(architecture, compiler, dictionary)
|
2018-02-05 19:30:46 +08:00
|
|
|
elif self.getDebugInfo() == "gmodules":
|
[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 20:04:46 +08:00
|
|
|
return self.buildGModules(architecture, compiler, dictionary)
|
2015-10-07 18:02:17 +08:00
|
|
|
else:
|
2018-02-05 19:30:46 +08:00
|
|
|
self.fail("Can't build for debug info: %s" % self.getDebugInfo())
|
2015-09-30 18:12:40 +08:00
|
|
|
|
2016-04-05 22:08:18 +08: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())
|
|
|
|
|
2011-05-28 07:36:52 +08:00
|
|
|
# =================================================
|
|
|
|
# Misc. helper methods for debugging test execution
|
|
|
|
# =================================================
|
|
|
|
|
2011-07-12 03:15:11 +08:00
|
|
|
def DebugSBValue(self, val):
|
2010-09-01 01:42:54 +08: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-06 03:22:28 +08:00
|
|
|
from .lldbutil import value_type_to_str
|
2010-11-04 05:37:58 +08:00
|
|
|
|
2010-09-01 01:42:54 +08:00
|
|
|
if not traceAlways:
|
2010-08-27 08:15:48 +08:00
|
|
|
return
|
|
|
|
|
|
|
|
err = sys.stderr
|
|
|
|
err.write(val.GetName() + ":\n")
|
2016-09-07 04:57:50 +08: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 08:15:48 +08:00
|
|
|
|
2011-08-06 04:17:27 +08: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")
|
2016-09-07 04:57:50 +08:00
|
|
|
err.write('\t' + "ByteSize -> " +
|
|
|
|
str(type.GetByteSize()) + '\n')
|
|
|
|
err.write('\t' + "IsPointerType -> " +
|
|
|
|
str(type.IsPointerType()) + '\n')
|
|
|
|
err.write('\t' + "IsReferenceType -> " +
|
|
|
|
str(type.IsReferenceType()) + '\n')
|
2011-08-06 04:17:27 +08:00
|
|
|
|
2011-03-12 09:18:19 +08:00
|
|
|
def DebugPExpect(self, child):
|
|
|
|
"""Debug the spwaned pexpect object."""
|
|
|
|
if not traceAlways:
|
|
|
|
return
|
|
|
|
|
2015-10-20 07:45:41 +08:00
|
|
|
print(child)
|
2012-06-20 18:13:40 +08:00
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def RemoveTempFile(cls, file):
|
|
|
|
if os.path.exists(file):
|
2016-04-11 23:21:01 +08: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-07 04:57:50 +08:00
|
|
|
|
|
|
|
|
|
|
|
def remove_file(file, num_retries=1, sleep_duration=0.5):
|
|
|
|
for i in range(num_retries + 1):
|
2016-04-11 23:21:01 +08:00
|
|
|
try:
|
2012-06-20 18:13:40 +08:00
|
|
|
os.remove(file)
|
2016-04-11 23:21:01 +08:00
|
|
|
return True
|
|
|
|
except:
|
|
|
|
time.sleep(sleep_duration)
|
|
|
|
continue
|
|
|
|
return False
|