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

Unified Diff: tests/standalone/io/process_working_directory_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_stdout_test.dart ('k') | tests/standalone/io/read_into_const_list_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/standalone/io/process_working_directory_test.dart
diff --git a/tests/standalone/io/process_working_directory_test.dart b/tests/standalone/io/process_working_directory_test.dart
index 3240cb95ec294ff67647cc129fc500c6998a85da..1529a137ae008e4c8e9cef585e5230818b65eadb 100644
--- a/tests/standalone/io/process_working_directory_test.dart
+++ b/tests/standalone/io/process_working_directory_test.dart
@@ -25,12 +25,12 @@ class ProcessWorkingDirectoryTest {
var processFuture =
Process.start(fullTestFilePath, const ["0", "0", "99", "0"], options);
processFuture.then((process) {
- process.onExit = (int exitCode) {
+ process.exitCode.then((int exitCode) {
Expect.equals(exitCode, 99);
directory.deleteSync();
- };
- process.stdout.onData = process.stdout.read;
- process.stderr.onData = process.stderr.read;
+ });
+ process.stdout.listen((_) {});
+ process.stderr.listen((_) {});
}).catchError((error) {
directory.deleteSync();
Expect.fail("Couldn't start process");
« no previous file with comments | « tests/standalone/io/process_stdout_test.dart ('k') | tests/standalone/io/read_into_const_list_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698