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

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

Issue 13079005: better warning in tools/testing/dart/test_options (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/testing/dart/test_options.dart
diff --git a/tools/testing/dart/test_options.dart b/tools/testing/dart/test_options.dart
index a7f7983255cd37c1104c3d731b70626a43174d9b..d751ab476921757773d2c4c4cc4fc2bc9db318b9 100644
--- a/tools/testing/dart/test_options.dart
+++ b/tools/testing/dart/test_options.dart
@@ -452,8 +452,9 @@ Note: currently only implemented for dart2js.''',
}
if (!validRuntimes.contains(config['runtime'])) {
isValid = false;
- print("Warning: combination of ${config['compiler']} and "
- "${config['runtime']} is invalid. Skipping this combination.");
+ print("Warning: combination of compiler '${config['compiler']}' and "
+ "runtime '${config['runtime']}' is invalid. "
+ "Skipping this combination.");
kustermann 2013/03/26 08:27:26 Indentation.
kevmoo-old 2013/03/26 13:16:38 Explain...
kustermann 2013/03/26 13:43:07 AFAIK we indent the two following lines to the sam
}
if ((config['runtime'] == 'ie9' || config['runtime'] == 'ie10') &&
Platform.operatingSystem != 'windows') {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698