[llvm-commits] [llvm] r82527 - /llvm/trunk/utils/lit/TestRunner.py
Daniel Dunbar
daniel at zuster.org
Mon Sep 21 23:09:14 PDT 2009
Author: ddunbar
Date: Tue Sep 22 01:09:13 2009
New Revision: 82527
URL: http://llvm.org/viewvc/llvm-project?rev=82527&view=rev
Log:
Actually use the arguments with the resolved executable path.
Modified:
llvm/trunk/utils/lit/TestRunner.py
Modified: llvm/trunk/utils/lit/TestRunner.py
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/lit/TestRunner.py?rev=82527&r1=82526&r2=82527&view=diff
==============================================================================
--- llvm/trunk/utils/lit/TestRunner.py (original)
+++ llvm/trunk/utils/lit/TestRunner.py Tue Sep 22 01:09:13 2009
@@ -110,7 +110,7 @@
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,
More information about the llvm-commits
mailing list