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

Unified Diff: tools/testing/dart/browser_controller.dart

Issue 863663002: Add debug logging for android testing. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 11 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 | « tests/co19/co19-dartium.status ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/testing/dart/browser_controller.dart
diff --git a/tools/testing/dart/browser_controller.dart b/tools/testing/dart/browser_controller.dart
index 006e56d9aa995a261f894b8d1c023576ceb567ea..9673071838242a4d6767c3250fb63c7baf22baeb 100644
--- a/tools/testing/dart/browser_controller.dart
+++ b/tools/testing/dart/browser_controller.dart
@@ -1087,6 +1087,9 @@ class BrowserTestRunner {
}
void restartBrowser(String id) {
+ if (browserName.contains('OnAndroid')) {
+ DebugLogger.info("Restarting browser $id");
+ }
var browser;
var new_id = id;
if (browserName == 'chromeOnAndroid') {
@@ -1189,6 +1192,9 @@ class BrowserTestRunner {
// browser, since a new test is being started.
status.browser.resetTestBrowserOutput();
status.browser.logBrowserInfoToTestBrowserOutput();
+ if (browserName.contains('OnAndroid')) {
+ DebugLogger.info("Browser $browserId getting test ${test.url}");
+ }
return test;
}
« no previous file with comments | « tests/co19/co19-dartium.status ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698