From: Daniel Dunbar Date: Thu, 24 Sep 2009 06:31:08 +0000 (+0000) Subject: We no longer need anything from the llvm/test/Scripts dir. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ee45d6dc89b8113c8065938a0d2b67a4cac77dd2;p=clang We no longer need anything from the llvm/test/Scripts dir. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@82687 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/lit.cfg b/test/lit.cfg index 2f6e945792..ce13f1065c 100644 --- a/test/lit.cfg +++ b/test/lit.cfg @@ -36,10 +36,7 @@ if clang_obj_root is not None: llvm_tools_dir = getattr(config, 'llvm_tools_dir', None) if not llvm_tools_dir: lit.fatal('No LLVM tools dir set!') - path = os.path.pathsep.join((llvm_tools_dir, - os.path.join(config.llvm_src_root, - 'test', 'Scripts'), - config.environment['PATH'])) + path = os.path.pathsep.join((llvm_tools_dir, config.environment['PATH'])) config.environment['PATH'] = path ###