Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / libunwind / test / configs / llvm-libunwind-static.cfg.in
blob50b64dc665a5af5765d397f7f1a6779b4d5a64dc
2 # Configuration file for running the libunwind tests against the static library.
5 lit_config.load_config(config, '@CMAKE_CURRENT_BINARY_DIR@/cmake-bridge.cfg')
7 compile_flags = []
8 link_flags = []
10 if @LIBUNWIND_ENABLE_THREADS@:
11     link_flags.append('-lpthread')
13 if @LIBUNWIND_ENABLE_CET@:
14     compile_flags.append('-fcf-protection=full')
16 # On ELF platforms, link tests with -Wl,--export-dynamic if supported by the linker.
17 if len('@CMAKE_EXE_EXPORTS_CXX_FLAG@'):
18     link_flags.append('@CMAKE_EXE_EXPORTS_CXX_FLAG@')
20 if '@CMAKE_DL_LIBS@':
21     link_flags.append('-l@CMAKE_DL_LIBS@')
23 # Stack unwinding tests need unwinding tables and these are not generated by default on all targets.
24 compile_flags.append('-funwind-tables')
26 local_sysroot = '@CMAKE_OSX_SYSROOT@' or '@CMAKE_SYSROOT@'
27 config.substitutions.append(('%{flags}',
28     '-isysroot {}'.format(local_sysroot) if local_sysroot else ''
30 config.substitutions.append(('%{compile_flags}',
31     '-nostdinc++ -I %{{include}} {}'.format(' '.join(compile_flags))
33 config.substitutions.append(('%{link_flags}',
34     '%{{lib}}/libunwind.a {}'.format(' '.join(link_flags))
36 config.substitutions.append(('%{exec}',
37     '%{executor} --execdir %T -- '
40 import os, site
41 site.addsitedir(os.path.join('@LIBUNWIND_LIBCXX_PATH@', 'utils'))
42 import libcxx.test.params, libcxx.test.config
43 libcxx.test.config.configure(
44     libcxx.test.params.DEFAULT_PARAMETERS,
45     libcxx.test.features.DEFAULT_FEATURES,
46     config,
47     lit_config