forked from OSchip/llvm-project
35 lines
1.4 KiB
INI
35 lines
1.4 KiB
INI
@AUTO_GEN_COMMENT@
|
|
|
|
@SERIALIZED_LIT_PARAMS@
|
|
|
|
import shlex
|
|
|
|
#
|
|
# This file performs the bridge between the CMake configuration and the Lit
|
|
# configuration files by setting up the LitConfig object and various Lit
|
|
# substitutions from CMake variables.
|
|
#
|
|
# Individual configuration files can take advantage of this bridge by
|
|
# loading the file and then setting up the remaining Lit substitutions.
|
|
#
|
|
|
|
import os, site
|
|
site.addsitedir(os.path.join('@LIBCXX_SOURCE_DIR@', 'utils'))
|
|
import libcxx.test.format
|
|
|
|
# Basic configuration of the test suite
|
|
config.name = os.path.basename('@LIBCXX_TEST_CONFIG@')
|
|
config.test_source_root = os.path.join('@LIBCXX_SOURCE_DIR@', 'test')
|
|
config.test_format = libcxx.test.format.CxxStandardLibraryTest()
|
|
config.recursiveExpansionLimit = 10
|
|
config.test_exec_root = '@CMAKE_BINARY_DIR@'
|
|
|
|
# Add substitutions for bootstrapping the test suite configuration
|
|
config.substitutions.append(('%{cxx}', shlex.quote('@CMAKE_CXX_COMPILER@')))
|
|
config.substitutions.append(('%{libcxx}', '@LIBCXX_SOURCE_DIR@'))
|
|
config.substitutions.append(('%{install}', '@CMAKE_BINARY_DIR@'))
|
|
config.substitutions.append(('%{include}', '%{install}/@LIBCXX_INSTALL_INCLUDE_DIR@'))
|
|
config.substitutions.append(('%{target-include}', '%{install}/@LIBCXX_INSTALL_INCLUDE_TARGET_DIR@'))
|
|
config.substitutions.append(('%{lib}', '%{install}/@LIBCXX_INSTALL_LIBRARY_DIR@'))
|
|
config.substitutions.append(('%{executor}', '@LIBCXX_EXECUTOR@'))
|