From: Daniel Dunbar Date: Tue, 22 Sep 2009 06:09:13 +0000 (+0000) Subject: Actually use the arguments with the resolved executable path. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=4b78aa3f56e6dae484f1282cef4ff5237f10f9d8;p=oota-llvm.git Actually use the arguments with the resolved executable path. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@82527 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/utils/lit/TestRunner.py b/utils/lit/TestRunner.py index 1501d287d9f..2995196fe41 100644 --- a/utils/lit/TestRunner.py +++ b/utils/lit/TestRunner.py @@ -110,7 +110,7 @@ def executeShCmd(cmd, cfg, cwd, results): if not args[0]: raise InternalShellError(j, '%r: command not found' % j.args[0]) - procs.append(subprocess.Popen(j.args, cwd=cwd, + procs.append(subprocess.Popen(args, cwd=cwd, stdin = stdin, stdout = stdout, stderr = stderr,