[testing]: lld generally lives in tools/, so fix llvm-lit.

Otherwise we can't run individual tests directly ("llvm-lit /path/to/test")

llvm-svn: 212461
This commit is contained in:
Tim Northover 2014-07-07 15:26:53 +00:00
parent 195f0552f0
commit b4e00dee49

View File

@ -29,7 +29,7 @@ if os.path.exists(clang_obj_root):
builtin_parameters['clang_tools_extra_site_config'] = \
os.path.join(clang_tools_extra_obj_root, 'test', 'lit.site.cfg')
lld_obj_root = os.path.join(llvm_obj_root, 'projects', 'lld')
lld_obj_root = os.path.join(llvm_obj_root, 'tools', 'lld')
if os.path.exists(lld_obj_root):
builtin_parameters['lld_site_config'] = \
os.path.join(lld_obj_root, 'test', 'lit.site.cfg')