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

Unified Diff: tests/standalone/io/process_sync_script.dart

Issue 23609060: Make stdout and stderr async. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 3 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 | « sdk/lib/_internal/pub/bin/pub.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/standalone/io/process_sync_script.dart
diff --git a/tests/standalone/io/process_sync_script.dart b/tests/standalone/io/process_sync_script.dart
index d8aab9c7b2858f6bc92203e377d2c7a6128d3ad4..5369124251414bd7ae0f4fee844dae37806d35ec 100644
--- a/tests/standalone/io/process_sync_script.dart
+++ b/tests/standalone/io/process_sync_script.dart
@@ -4,6 +4,7 @@
//
// Utility script to generate some output on stdout and stderr.
+import "dart:async";
import "dart:math";
import "dart:io";
@@ -20,5 +21,7 @@ main() {
stdout.write(stdoutBlock);
stderr.write(stderrBlock);
}
- exit(int.parse(options.arguments[3]));
+ Future.wait([stdout.close(), stderr.close()]).then((_) {
+ exit(int.parse(options.arguments[3]));
+ });
}
« no previous file with comments | « sdk/lib/_internal/pub/bin/pub.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698