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 | b8895c078f93cc7f585b17379f4729e7c3cbb176 (patch) | |
tree | 615442304174f984f504be84c8c7f0d9bb535ec5 /llvm/utils/lit/TestRunner.py | |
parent | b45012dcdea35a38c7b7719fa3a2330298417885 (diff) | |
download | bcm5719-llvm-b8895c078f93cc7f585b17379f4729e7c3cbb176.tar.gz bcm5719-llvm-b8895c078f93cc7f585b17379f4729e7c3cbb176.zip |
Actually use the arguments with the resolved executable path.
llvm-svn: 82527
Diffstat (limited to 'llvm/utils/lit/TestRunner.py')
-rw-r--r-- | llvm/utils/lit/TestRunner.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/utils/lit/TestRunner.py b/llvm/utils/lit/TestRunner.py index 1501d287d9f..2995196fe41 100644 --- a/llvm/utils/lit/TestRunner.py +++ b/llvm/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, |