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

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

Issue 1187103004: Allow Suites to be added to an Engine over time. (Closed) Base URL: git@github.com:dart-lang/test@master
Patch Set: Created 5 years, 6 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: lib/src/runner/browser/compiler_pool.dart
diff --git a/lib/src/runner/browser/compiler_pool.dart b/lib/src/runner/browser/compiler_pool.dart
index fae1fc5f304d56477c21dfc7dbf12d29f61759a8..20f555bcf4013420e974941667cddcef3f046876 100644
--- a/lib/src/runner/browser/compiler_pool.dart
+++ b/lib/src/runner/browser/compiler_pool.dart
@@ -111,9 +111,9 @@ void main(_) {
// ensure that we're done printing everything about one process before
// we start the next.
await Future.wait([
- santizeForWindows(compiler.process.stdout).listen(stdout.add)
+ sanitizeForWindows(compiler.process.stdout).listen(stdout.add)
.asFuture(),
- santizeForWindows(compiler.process.stderr).listen(stderr.add)
+ sanitizeForWindows(compiler.process.stderr).listen(stderr.add)
.asFuture(),
compiler.process.exitCode.then((exitCode) {
if (exitCode == 0 || _closed) return;

Powered by Google App Engine
This is Rietveld 408576698