[MemProf] Templatize CallStackRadixTreeBuilder (NFC) (#117014)
[llvm-project.git] / libcxx / test / configs / apple-libc++-system.cfg.in
blobb59506f375c4a6be5c9acc461e232ce2e5b0d22e
1 # Testing configuration for back-deployment against the system-provided libc++.
3 # Under this configuration, we compile and link all the test suite against the just-built
4 # libc++, but we run against the system libc++.
6 import os, site
7 site.addsitedir(os.path.join('@LIBCXX_SOURCE_DIR@', 'utils'))
8 import libcxx.test.params, libcxx.test.config, libcxx.test.dsl
10 lit_config.load_config(config, '@CMAKE_CURRENT_BINARY_DIR@/cmake-bridge.cfg')
12 config.substitutions.append(('%{flags}',
13     '-isysroot {}'.format('@CMAKE_OSX_SYSROOT@') if '@CMAKE_OSX_SYSROOT@' else ''
15 config.substitutions.append(('%{compile_flags}',
16     '-nostdinc++ -I %{include-dir} -I %{libcxx-dir}/test/support'
18 config.substitutions.append(('%{link_flags}',
19     '-nostdlib++ -L %{lib-dir} -lc++'
21 config.substitutions.append(('%{exec}',
22     '%{executor} --execdir %T -- '
25 config.stdlib = 'apple-libc++'
26 config.using_system_stdlib = True
28 libcxx.test.config.configure(
29     libcxx.test.params.DEFAULT_PARAMETERS,
30     libcxx.test.features.DEFAULT_FEATURES,
31     config,
32     lit_config