Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / libunwind / test / configs / cmake-bridge.cfg.in
blobc5f34c87abb92a1e4eb84593564d25068925f775
1 @AUTO_GEN_COMMENT@
3 @SERIALIZED_LIT_PARAMS@
6 # This file performs the bridge between the CMake configuration and the Lit
7 # configuration files by setting up the LitConfig object and various Lit
8 # substitutions from CMake variables.
10 # Individual configuration files can take advantage of this bridge by
11 # loading the file and then setting up the remaining Lit substitutions.
14 import os, site
15 site.addsitedir(os.path.join('@LIBUNWIND_LIBCXX_PATH@', 'utils'))
16 import libcxx.test.format
18 # Basic configuration of the test suite
19 config.name = os.path.basename('@LIBUNWIND_TEST_CONFIG@')
20 config.test_source_root = os.path.join('@LIBUNWIND_SOURCE_DIR@', 'test')
21 config.test_format = libcxx.test.format.CxxStandardLibraryTest()
22 config.recursiveExpansionLimit = 10
23 config.test_exec_root = os.path.join('@CMAKE_BINARY_DIR@', 'test')
25 # Add a few features that are common to all the configurations
26 if @LIBUNWIND_USES_ARM_EHABI@:
27     config.available_features.add('libunwind-arm-ehabi')
28 if not @LIBUNWIND_ENABLE_THREADS@:
29     config.available_features.add('libunwind-no-threads')
31 # Add substitutions for bootstrapping the test suite configuration
32 import shlex
33 config.substitutions.append(('%{cxx}', shlex.quote('@CMAKE_CXX_COMPILER@')))
34 config.substitutions.append(('%{include}', '@LIBUNWIND_SOURCE_DIR@/include'))
35 config.substitutions.append(('%{lib}', '@LIBUNWIND_LIBRARY_DIR@'))