| Index: tools/testing/dart/test_runner.dart
|
| diff --git a/tools/testing/dart/test_runner.dart b/tools/testing/dart/test_runner.dart
|
| index 1cae1d7773c8e79629eb85a3e4fb0b962accf879..ceb053c1a3c8921ad10fd3d38adeacbe969a42b1 100644
|
| --- a/tools/testing/dart/test_runner.dart
|
| +++ b/tools/testing/dart/test_runner.dart
|
| @@ -848,11 +848,7 @@ class AnalysisCommandOutputImpl extends CommandOutputImpl {
|
| if (fields[ERROR_LEVEL] == 'ERROR') {
|
| errors.add(fields[FORMATTED_ERROR]);
|
| } else if (fields[ERROR_LEVEL] == 'WARNING') {
|
| - // We only care about testing Static type warnings
|
| - // ignore all others
|
| - if (fields[ERROR_TYPE] == 'STATIC_TYPE' || fields[ERROR_TYPE] == 'STATIC_TYPE_WARNING') {
|
| - staticWarnings.add(fields[FORMATTED_ERROR]);
|
| - }
|
| + staticWarnings.add(fields[FORMATTED_ERROR]);
|
| }
|
| // OK to Skip error output that doesn't match the machine format
|
| }
|
|
|