diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-09-22 06:09:13 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-09-22 06:09:13 +0000 |
commit | 4b78aa3f56e6dae484f1282cef4ff5237f10f9d8 (patch) | |
tree | ab386b0add66e3f675582835539adef54413eb53 /utils/lit | |
parent | 57d6903deae135ab39bf7d0e86ffae4029a938bd (diff) |
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
Diffstat (limited to 'utils/lit')
-rw-r--r-- | utils/lit/TestRunner.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/lit/TestRunner.py b/utils/lit/TestRunner.py index 1501d287d9..2995196fe4 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, |