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

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

Issue 13941003: Rewrite regress_7191 to avoid changing stream subscription. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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 | « tests/standalone/io/regress_7191_script.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/regress_7191_test.dart
diff --git a/tests/standalone/io/regress_7191_test.dart b/tests/standalone/io/regress_7191_test.dart
index 3d46cfa2baa49266966ab892ae254c67fee7cd71..6ce1e36b8a598a689f6c9f7c96a7ce337ce123a5 100644
--- a/tests/standalone/io/regress_7191_test.dart
+++ b/tests/standalone/io/regress_7191_test.dart
@@ -20,8 +20,8 @@ main() {
var script = scriptDir.append('regress_7191_script.dart').toNativePath();
Process.start(executable, [script]).then((process) {
process.stdin.writeBytes([0]);
- process.stdout.listen((_) { },
- onDone: () { process.stdin.writeBytes([0]); });
+ process.stdout.listen((_) { },
+ onDone: () { process.stdin.writeBytes([0]); });
process.stderr.listen((_) { });
process.exitCode.then((exitCode) => port.close());
Mads Ager (google) 2013/04/10 06:10:38 We should add verification of the exitCode here. T
Anders Johnsen 2013/04/10 11:41:32 Yep, done in https://codereview.chromium.org/13851
});
« no previous file with comments | « tests/standalone/io/regress_7191_script.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698