diff options
Diffstat (limited to 'utils/lit/TestRunner.py')
-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, |