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

Unified Diff: tools/testing/dart/test_suite.dart

Issue 9649015: Change string used to annotate static type issues to 'static type warning' in multitest (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Merged up to tip Created 8 years, 9 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 | « tools/testing/dart/test_runner.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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");
« no previous file with comments | « tools/testing/dart/test_runner.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698