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

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

Issue 25514002: Implement testing support for "--compiler=none --runtime=dartium" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 3 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
Index: tools/testing/dart/test_options.dart
diff --git a/tools/testing/dart/test_options.dart b/tools/testing/dart/test_options.dart
index dc0f5ffb989185658368ebfd46f69de68b264cc0..38d45a73b15578d732729b521168a19be0fb3a64 100644
--- a/tools/testing/dart/test_options.dart
+++ b/tools/testing/dart/test_options.dart
@@ -452,7 +452,7 @@ Note: currently only implemented for dart2js.''',
Set<String> _blacklistedOptions = new Set<String>.from([
'progress', 'failure-summary', 'step_name', 'report', 'tasks', 'verbose',
'time', 'dart', 'drt', 'dartium', 'build_directory', 'append_logs',
- 'write_debug_log', 'local_ip', 'shard', 'shards',
+ 'local_ip', 'shard', 'shards',
]);
List<String> _constructReproducingCommandArguments(Map config) {
@@ -676,7 +676,7 @@ Note: currently only implemented for dart2js.''',
if (configuration['mode'] == 'debug') {
timeout *= 2;
}
- if (const ['drt', 'dartium'].contains(configuration['runtime'])) {
+ if (const ['drt'].contains(configuration['runtime'])) {
timeout *= 4; // Allow additional time for browser testing to run.
}
break;

Powered by Google App Engine
This is Rietveld 408576698