| Index: PRESUBMIT.py
|
| diff --git a/PRESUBMIT.py b/PRESUBMIT.py
|
| index 127cc906c8f4461cc5c78d060339a4671907978e..ebe5061de5025c9118820658c16e8b1ee1429070 100644
|
| --- a/PRESUBMIT.py
|
| +++ b/PRESUBMIT.py
|
| @@ -85,7 +85,8 @@ def RunGitClTests(input_api, output_api):
|
| [input_api.os_path.join(test_path, test)], cwd=test_path)
|
| else:
|
| input_api.subprocess.check_output(
|
| - [input_api.os_path.join(test_path, test)], cwd=test_path)
|
| + [input_api.os_path.join(test_path, test)], cwd=test_path,
|
| + stderr=input_api.subprocess.STDOUT)
|
| except (OSError, input_api.subprocess.CalledProcessError), e:
|
| results.append(output_api.PresubmitError('%s failed\n%s' % (test, e)))
|
| except local_rietveld.Failure, e:
|
|
|