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

Unified Diff: dart/tests/compiler/dart2js/incremental/compile_all.dart

Issue 848003002: Remove CompilerCancelledException. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Merged with r42861 Created 5 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
Index: dart/tests/compiler/dart2js/incremental/compile_all.dart
diff --git a/dart/tests/compiler/dart2js/incremental/compile_all.dart b/dart/tests/compiler/dart2js/incremental/compile_all.dart
index 0579f51e139cdc30b1749c4337af5af19f329534..0c3564107057e9056988a945e15d340e6f4b2b46 100644
--- a/dart/tests/compiler/dart2js/incremental/compile_all.dart
+++ b/dart/tests/compiler/dart2js/incremental/compile_all.dart
@@ -38,7 +38,6 @@ main(List<String> arguments) {
}
void compileTests(Map<String, String> sources) {
- int cancellations = 0;
int testCount = 0;
int skipCount = 0;
Set<String> crashes = new Set<String>();
@@ -69,7 +68,6 @@ void compileTests(Map<String, String> sources) {
UserTag.defaultTag.makeCurrent();
sw.stop();
print('Compiled $path in ${sw.elapsedMilliseconds}');
- if (compiler.compilerWasCancelled) cancellations++;
sw..reset()..start();
}).catchError((error, trace) {
sw.stop();
@@ -83,7 +81,6 @@ void compileTests(Map<String, String> sources) {
print('''
Total: $testCount tests
- * $cancellations tests (${percent(cancellations)}) cancelled the compiler
* ${crashes.length} tests (${percent(crashes.length)}) crashed the compiler
* $skipCount tests (${percent(skipCount)}) were skipped
''');
« no previous file with comments | « dart/tests/compiler/dart2js/exit_code_test.dart ('k') | dart/tests/compiler/dart2js/message_kind_helper.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698