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