| Index: tools/testing/dart/test_suite.dart
|
| diff --git a/tools/testing/dart/test_suite.dart b/tools/testing/dart/test_suite.dart
|
| index 8099e21a33f9008605adb70675e2feb4bd8a2e20..b69f78a8d036c5d49f9e2dd8bf9e30dcf1415aee 100644
|
| --- a/tools/testing/dart/test_suite.dart
|
| +++ b/tools/testing/dart/test_suite.dart
|
| @@ -339,7 +339,7 @@ class StandardTestSuite implements TestSuite {
|
| (configuration['checked'] && info.isNegativeIfChecked);
|
|
|
| if (configuration['component'] == 'dartc') {
|
| - // dartc can detect static type errors by the
|
| + // dartc can detect static type warnings by the
|
| // format of the error line
|
| if (info.hasFatalTypeErrors) {
|
| isNegative = true;
|
| @@ -765,7 +765,7 @@ class StandardTestSuite implements TestSuite {
|
| RegExp otherScriptsRegExp = const RegExp(@"// OtherScripts=(.*)");
|
| RegExp multiTestRegExp = const RegExp(@"/// [0-9][0-9]:(.*)");
|
| RegExp staticTypeRegExp =
|
| - const RegExp(@"/// ([0-9][0-9]:){0,1}\s*static type error");
|
| + const RegExp(@"/// ([0-9][0-9]:){0,1}\s*static type warning");
|
| RegExp compileTimeRegExp =
|
| const RegExp(@"/// ([0-9][0-9]:){0,1}\s*compile-time error");
|
| RegExp staticCleanRegExp = const RegExp(@"// @static-clean");
|
|
|