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

Unified Diff: Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py

Issue 27554003: Publish the location of results.html to user in keyboard interrupt scenario. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Making the result as file url. Created 7 years, 2 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
Index: Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py
diff --git a/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py b/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py
index 1f22807b5ab9aab447f8c421d9ed1c4072cf171c..f0948025165dfb1c22e6ffcb0f1e136ea1bbcb15 100644
--- a/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py
+++ b/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py
@@ -365,6 +365,9 @@ def run(port, options, args, logging_stream):
run_details = manager.run(args)
_log.debug("Testing completed, Exit status: %d" % run_details.exit_code)
+ # Print the location of results.html in case of interrupted run.
+ if run_details.initial_results and run_details.initial_results.keyboard_interrupted and run_details.results:
+ printer.writeln('run-webkit-tests iteration result stored at file://' + run_details.results)
Dirk Pranke 2013/10/21 18:38:48 I would probably change the output to something li
return run_details
finally:
printer.cleanup()

Powered by Google App Engine
This is Rietveld 408576698