Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / libcxx / test / configs / llvm-libc++-shared-no-vcruntime-clangcl.cfg.in
blob4c88af3dbb6ebe002f15f2bd75da4310f1a5f495
1 # This testing configuration handles running the test suite against LLVM's libc++
2 # using a DLL, with Clang-cl on Windows. This variant sets _HAS_EXCEPTIONS = 0
3 # which removes exception class definitions from the vcruntime.
5 lit_config.load_config(config, '@CMAKE_CURRENT_BINARY_DIR@/cmake-bridge.cfg')
7 config.substitutions.append(('%{flags}', '--driver-mode=g++'))
8 config.substitutions.append(('%{compile_flags}',
9     '-fms-runtime-lib=' + config.fms_runtime_lib + ' -nostdinc++ -I %{include} -I %{target-include} -I %{libcxx}/test/support -D_CRT_SECURE_NO_WARNINGS -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_STDIO_ISO_WIDE_SPECIFIERS -DNOMINMAX -D_HAS_EXCEPTIONS=0' + config.dbg_include
11 config.substitutions.append(('%{link_flags}',
12     '-nostdlib -L %{lib} -lc++ -l' + config.cxx_lib
14 config.substitutions.append(('%{exec}',
15     '%{executor} --execdir %T --prepend_env PATH=%{lib} -- '
18 import os, site
19 site.addsitedir(os.path.join('@LIBCXX_SOURCE_DIR@', 'utils'))
20 import libcxx.test.params, libcxx.test.config
21 libcxx.test.config.configure(
22     libcxx.test.params.DEFAULT_PARAMETERS,
23     libcxx.test.features.DEFAULT_FEATURES,
24     config,
25     lit_config