You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
390 B
13 lines
390 B
import os
|
|
|
|
config.configuration_variant = 'libcxx.android'
|
|
config.android_root = os.getenv('ANDROID_BUILD_TOP')
|
|
config.libcxx_src_root = os.path.join(config.android_root, 'external/libcxx')
|
|
config.python_executable = '/usr/bin/python'
|
|
|
|
config.timeout = '300'
|
|
|
|
# Let the main config do the real work.
|
|
lit_config.load_config(
|
|
config, os.path.join(config.libcxx_src_root, 'test/lit.cfg'))
|