blob: 27cb5abfafd3ab41f487c8a14d84bcd389494f66 [file] [log] [blame]
Dan Albert0f81d762014-07-18 14:15:56 -07001import os
2
Dan Albert4ba8d412014-11-22 12:37:28 -08003config.configuration_variant = 'Android'
Dan Albert0f81d762014-07-18 14:15:56 -07004config.android_root = os.getenv('ANDROID_BUILD_TOP')
Dan Albert0f81d762014-07-18 14:15:56 -07005config.libcxx_src_root = os.path.join(config.android_root, 'external/libcxx')
6config.libcxx_obj_root = os.getenv('ANDROID_PRODUCT_OUT')
7config.python_executable = '/usr/bin/python'
8
Dan Albert48dfa092014-10-10 17:20:51 -07009config.timeout = '300'
10
Dan Albert0f81d762014-07-18 14:15:56 -070011# Let the main config do the real work.
12lit_config.load_config(
13 config, os.path.join(config.libcxx_src_root, 'test/lit.cfg'))