Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / libcxx / test / configs / llvm-libc++-shared-gcc.cfg.in
bloba75e90b198896de227f1667eba3dcd3b1f542966
1 # This testing configuration handles running the test suite against LLVM's libc++
2 # using a shared library, with GCC. This is done differently from Clang because
3 # we need to explicitly link against libm for some tests with GCC.
5 lit_config.load_config(config, '@CMAKE_CURRENT_BINARY_DIR@/cmake-bridge.cfg')
7 config.substitutions.append(('%{flags}', '-pthread'))
8 config.substitutions.append(('%{compile_flags}',
9     '-nostdinc++ -I %{include} -I %{target-include} -I %{libcxx}/test/support'
11 config.substitutions.append(('%{link_flags}',
12     '-nostdlib++ -L %{lib} -Wl,-rpath,%{lib} -lc++ -lm'
14 config.substitutions.append(('%{exec}',
15     '%{executor} --execdir %T -- '
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