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

Unified Diff: tests/compiler/dart2js/dart2js_batch_test.dart

Issue 923103003: Avoid spurious "The compiler crashed" messages in batch mode. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix indentation. Created 5 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/compiler/dart2js/dart2js_batch2_test.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/compiler/dart2js/dart2js_batch_test.dart
diff --git a/tests/compiler/dart2js/dart2js_batch_test.dart b/tests/compiler/dart2js/dart2js_batch_test.dart
index 8afe9e981dd7831555d73445e8adf01d5991ec3a..04b3ad670e4f65945b143607daa50470309a0faa 100644
--- a/tests/compiler/dart2js/dart2js_batch_test.dart
+++ b/tests/compiler/dart2js/dart2js_batch_test.dart
@@ -74,9 +74,7 @@ Future runTests(Process process) {
return Future.wait([output, errorOut])
.then((result) {
String stdoutOutput = result[0];
- print('out:\n$stdoutOutput');
String stderrOutput = result[1];
- print('err:\n$stderrOutput');
Expect.equals(4, ">>> EOF STDERR".allMatches(stderrOutput).length);
Expect.equals(4, ">>>".allMatches(stderrOutput).length);
« no previous file with comments | « tests/compiler/dart2js/dart2js_batch2_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698