forked from OSchip/llvm-project
80a2ddf65c
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 |
||
---|---|---|
.. | ||
cmake | ||
fuzz | ||
include | ||
lib | ||
src | ||
test | ||
www | ||
.clang-format | ||
.gitignore | ||
CMakeLists.txt | ||
CREDITS.TXT | ||
LICENSE.TXT |