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

Unified Diff: lib/src/runner/browser/chrome.dart

Issue 1094993002: Fix tests and analysis warnings and release 0.12.0-beta.9. (Closed) Base URL: git@github.com:dart-lang/test@master
Patch Set: Created 5 years, 8 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 | lib/src/runner/loader.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/src/runner/browser/chrome.dart
diff --git a/lib/src/runner/browser/chrome.dart b/lib/src/runner/browser/chrome.dart
index bca71a48994976cf5dc3e268b9a8d2e95a08f318..f7d7baa5ab56ca0736a4a08057a505f5b720c624 100644
--- a/lib/src/runner/browser/chrome.dart
+++ b/lib/src/runner/browser/chrome.dart
@@ -61,6 +61,8 @@ class Chrome implements Browser {
"--disable-default-apps",
"--disable-translate"
]).then((process) {
+ process.stdout.listen(stdout.add);
+ process.stderr.listen(stderr.add);
kevmoo 2015/04/18 00:33:43 oops?
nweiz 2015/04/18 00:36:11 Done.
_process = process;
_onProcessStartedCompleter.complete();
« no previous file with comments | « no previous file | lib/src/runner/loader.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698