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

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

Issue 12316036: Merge IO v2 branch to bleeding edge (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Rebased to r18818 Created 7 years, 10 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/process_check_arguments_test.dart ('k') | tests/standalone/io/process_kill_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/standalone/io/process_exit_test.dart
diff --git a/tests/standalone/io/process_exit_test.dart b/tests/standalone/io/process_exit_test.dart
index f4f910007d2174853e0217bc63fa11ecab5d3662..060bb14055bb00efebd23490f9d58fa04659d725 100644
--- a/tests/standalone/io/process_exit_test.dart
+++ b/tests/standalone/io/process_exit_test.dart
@@ -12,11 +12,11 @@ testExit() {
var future = Process.start(getProcessTestFileName(),
const ["0", "0", "99", "0"]);
future.then((process) {
- process.onExit = (int exitCode) {
+ process.exitCode.then((int exitCode) {
Expect.equals(exitCode, 99);
- };
- process.stdout.onData = process.stdout.read;
- process.stderr.onData = process.stderr.read;
+ });
+ process.stdout.listen((_) {});
+ process.stderr.listen((_) {});
});
}
« no previous file with comments | « tests/standalone/io/process_check_arguments_test.dart ('k') | tests/standalone/io/process_kill_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698