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; |