• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1import os
2
3config.configuration_variant = 'libcxx.android'
4config.android_root = os.getenv('ANDROID_BUILD_TOP')
5config.libcxx_src_root = os.path.join(config.android_root, 'external/libcxx')
6config.python_executable = '/usr/bin/python'
7
8config.timeout = '300'
9
10# Let the main config do the real work.
11lit_config.load_config(
12    config, os.path.join(config.libcxx_src_root, 'test/lit.cfg'))
13