From: Tim Northover Date: Mon, 7 Jul 2014 15:26:53 +0000 (+0000) Subject: [testing]: lld generally lives in tools/, so fix llvm-lit. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=041e0da7a2ac4781beff6cf19f54bc2e18e43bb9;p=oota-llvm.git [testing]: lld generally lives in tools/, so fix llvm-lit. Otherwise we can't run individual tests directly ("llvm-lit /path/to/test") git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@212461 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/utils/llvm-lit/llvm-lit.in b/utils/llvm-lit/llvm-lit.in index a82cbf089a3..fc962021d73 100755 --- a/utils/llvm-lit/llvm-lit.in +++ b/utils/llvm-lit/llvm-lit.in @@ -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')