| 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
|
| ''');
|
|
|