Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(567)

Unified Diff: testing/scripts/run_gtest_perf_test.py

Issue 2871823003: Show stdout of command run by run_gtest_perf_test.py script (Closed)
Patch Set: Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: testing/scripts/run_gtest_perf_test.py
diff --git a/testing/scripts/run_gtest_perf_test.py b/testing/scripts/run_gtest_perf_test.py
index df28f6278d233df7a4f3d88561a22b472f72004e..638929f3f5b87919c0ed4158ca562174e357fab3 100755
--- a/testing/scripts/run_gtest_perf_test.py
+++ b/testing/scripts/run_gtest_perf_test.py
@@ -95,6 +95,8 @@ def main():
with common.temporary_file() as tempfile_path:
rc = common.run_command_with_output([executable] + extra_flags,
env=env, stdoutfile=tempfile_path)
+ with open(tempfile_path) as f:
+ print f.read()
# Now get the correct json format from the stdout to write to the
# perf results file
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698