2015-01-22 07:06:22 +08:00
|
|
|
# -*- Python -*- vim: set ft=python ts=4 sw=4 expandtab tw=79:
|
2014-07-10 10:20:11 +08:00
|
|
|
|
|
|
|
# Configuration file for the 'lit' test runner.
|
|
|
|
|
2014-11-06 23:26:20 +08:00
|
|
|
|
2015-01-22 07:06:22 +08:00
|
|
|
import os
|
|
|
|
import site
|
2014-07-10 10:20:11 +08:00
|
|
|
|
2015-01-22 07:06:22 +08:00
|
|
|
site.addsitedir(os.path.dirname(__file__))
|
2014-07-10 10:20:11 +08:00
|
|
|
|
|
|
|
|
2015-01-22 07:06:22 +08:00
|
|
|
# Tell pylint that we know config and lit_config exist somewhere.
|
|
|
|
if 'PYLINT_IMPORT' in os.environ:
|
|
|
|
config = object()
|
|
|
|
lit_config = object()
|
2014-07-10 10:20:11 +08:00
|
|
|
|
|
|
|
# name: The name of this test suite.
|
|
|
|
config.name = 'libc++abi'
|
|
|
|
|
|
|
|
# suffixes: A list of file extensions to treat as test files.
|
2016-11-13 22:44:41 +08:00
|
|
|
config.suffixes = ['.cpp', '.s']
|
2014-07-10 10:20:11 +08:00
|
|
|
|
2020-04-04 00:49:09 +08:00
|
|
|
# Allow expanding substitutions that are based on other substitutions
|
|
|
|
config.recursiveExpansionLimit = 10
|
|
|
|
|
2014-07-10 10:20:11 +08:00
|
|
|
# test_source_root: The root path where tests are located.
|
|
|
|
config.test_source_root = os.path.dirname(__file__)
|
|
|
|
|
2020-04-04 00:49:09 +08:00
|
|
|
# Allow expanding substitutions that are based on other substitutions
|
|
|
|
config.recursiveExpansionLimit = 10
|
|
|
|
|
2015-01-22 07:06:22 +08:00
|
|
|
# Infer the libcxx_test_source_root for configuration import.
|
|
|
|
# If libcxx_source_root isn't specified in the config, assume that the libcxx
|
|
|
|
# and libcxxabi source directories are sibling directories.
|
2015-01-23 04:00:06 +08:00
|
|
|
libcxx_src_root = getattr(config, 'libcxx_src_root', None)
|
|
|
|
if not libcxx_src_root:
|
|
|
|
libcxx_src_root = os.path.join(config.test_source_root, '../../libcxx')
|
2017-02-10 07:58:54 +08:00
|
|
|
libcxx_test_src_root = os.path.join(libcxx_src_root, 'utils')
|
2015-01-23 04:00:06 +08:00
|
|
|
if os.path.isfile(os.path.join(libcxx_test_src_root, 'libcxx', '__init__.py')):
|
|
|
|
site.addsitedir(libcxx_test_src_root)
|
2014-07-10 10:20:11 +08:00
|
|
|
else:
|
2015-01-22 07:06:22 +08:00
|
|
|
lit_config.fatal('Could not find libcxx test directory for test imports'
|
2015-01-23 04:00:06 +08:00
|
|
|
' in: %s' % libcxx_test_src_root)
|
2015-01-22 07:06:22 +08:00
|
|
|
|
2015-01-23 04:00:06 +08:00
|
|
|
# Infer the test_exec_root from the libcxx_object root.
|
2015-02-11 09:07:48 +08:00
|
|
|
obj_root = getattr(config, 'libcxxabi_obj_root', None)
|
2015-01-22 07:06:22 +08:00
|
|
|
|
|
|
|
# Check that the test exec root is known.
|
2015-01-23 04:00:06 +08:00
|
|
|
if obj_root is None:
|
|
|
|
import libcxx.test.config
|
|
|
|
libcxx.test.config.loadSiteConfig(
|
|
|
|
lit_config, config, 'libcxxabi_site_config', 'LIBCXXABI_SITE_CONFIG')
|
|
|
|
obj_root = getattr(config, 'libcxxabi_obj_root', None)
|
|
|
|
if obj_root is None:
|
|
|
|
import tempfile
|
|
|
|
obj_root = tempfile.mkdtemp(prefix='libcxxabi-testsuite-')
|
|
|
|
lit_config.warning('Creating temporary directory for object root: %s' %
|
|
|
|
obj_root)
|
|
|
|
|
|
|
|
config.test_exec_root = os.path.join(obj_root, 'test')
|
2014-07-10 10:20:11 +08:00
|
|
|
|
2015-01-22 07:06:22 +08:00
|
|
|
cfg_variant = getattr(config, 'configuration_variant', 'libcxxabi')
|
|
|
|
if cfg_variant:
|
2016-09-02 21:56:05 +08:00
|
|
|
lit_config.note('Using configuration variant: %s' % cfg_variant)
|
2014-12-18 08:03:57 +08:00
|
|
|
|
2015-01-22 07:06:22 +08:00
|
|
|
# Load the Configuration class from the module name <cfg_variant>.test.config.
|
|
|
|
config_module_name = '.'.join([cfg_variant, 'test', 'config'])
|
|
|
|
config_module = __import__(config_module_name, fromlist=['Configuration'])
|
2014-07-10 10:20:11 +08:00
|
|
|
|
2015-01-22 07:06:22 +08:00
|
|
|
configuration = config_module.Configuration(lit_config, config)
|
|
|
|
configuration.configure()
|
2015-01-23 04:00:06 +08:00
|
|
|
configuration.print_config_info()
|
2020-04-07 21:16:06 +08:00
|
|
|
if lit_config.params.get('use_old_format', False):
|
|
|
|
lit_config.note("Using the old libc++ testing format")
|
|
|
|
config.test_format = configuration.get_test_format()
|
|
|
|
else:
|
|
|
|
lit_config.note("Using the new libc++ testing format")
|
[libc++] Add an alternative Lit test format
This new test format is simpler and more flexible. It creates Lit ShTests
on the fly that reuse existing substitutions (like %{cxx}) instead of
having complex logic in Python to run the tests. This has the benefit
that virtually no coding is required to customize how the test suite is
run -- one can achieve pretty much anything by defining the appropriate
substitutions in a simple lit.cfg file.
For example, in order to run the tests on an embedded device after
building with a specific SDK, one can set the %{cxx} and %{compile_flags}
substitutions to use that SDK, and the %{exec} substitution to the ssh.py
script currently used for .sh.cpp tests with a remote executor. Dealing with
the SSHExecutor becomes unnecessary, since all tests are treated like ShTests.
As a side effect of this design, configuration files for the test
suite can be as simple as:
config.substitutions.append(('%{cxx}', '<path-to-compiler>'))
config.substitutions.append(('%{compile_flags}', '<flags>'))
config.substitutions.append(('%{link_flags}', '<flags>'))
config.substitutions.append(('%{exec}', '<script-to-execute>'))
This should allow storing lit.cfg files for various configurations
directly in the repository instead of relying on complicated logic
in config.py to set up the right flags. I've found numerous problems
in that logic in the past years, and it seems like having simple and
explicit configuration files for the configurations we support is
going to solve most of these problems. Specifically, I am hoping to
store configuration files for testing other Standard Libraries in
the repository.
Improving the interaction with the test suite configuration is still a
work in progress, so for now this test format reuses the substitutions and
available features that are set up by the current config.py.
This new test format should support pretty much everything that the current
test format supports, however it will not be enabled by default at first to
make sure we're satisfied with it. For a short period of time, the new format
will require `--param=use_new_format=True` to be enabled, however it is a very
short term goal to replace the current testing format entirely and to simplify
the configuration accordingly.
Differential Revision: https://reviews.llvm.org/D77338
2020-03-31 04:25:24 +08:00
|
|
|
import libcxx.test.newformat
|
|
|
|
config.test_format = libcxx.test.newformat.CxxStandardLibraryTest()
|