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

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

Issue 11833031: Status update: io/test_runner_test is passing + small fix in test_runner_test (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 11 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 | « no previous file | tests/standalone/standalone.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/standalone/io/test_runner_test.dart
diff --git a/tests/standalone/io/test_runner_test.dart b/tests/standalone/io/test_runner_test.dart
index e31998a302b9250aa629d05c46d10e3f6bef12e4..8ae5201b29fad95815444aba3a4dac411734ac86 100644
--- a/tests/standalone/io/test_runner_test.dart
+++ b/tests/standalone/io/test_runner_test.dart
@@ -22,9 +22,11 @@ class TestController {
throw "Unexpected output: ${output.result}";
}
print("stdout: ");
- for (var line in output.stdout) print(line);
+ print(new String.fromCharCodes(output.stdout));
+ print("\n");
ricow1 2013/01/10 09:29:43 remove this extra line
kustermann 2013/01/10 09:30:45 Done.
print("stderr: ");
- for (var line in output.stderr) print(line);
+ print(new String.fromCharCodes(output.stderr));
+ print("\n");
ricow1 2013/01/10 09:29:43 remove this extra line
kustermann 2013/01/10 09:30:45 Done.
print("Time: ${output.time}");
print("Exit code: ${output.exitCode}");
« no previous file with comments | « no previous file | tests/standalone/standalone.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698