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 1501d28..2995196 100644
--- a/utils/lit/TestRunner.py
+++ b/utils/lit/TestRunner.py
@@ -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,