| Index: tools/testing/dart/test_options.dart
|
| diff --git a/tools/testing/dart/test_options.dart b/tools/testing/dart/test_options.dart
|
| index b1528ec5525348940792c03500bbbf3bdcda3c25..bc183c503169201572db77e79545295fd92e6ead 100644
|
| --- a/tools/testing/dart/test_options.dart
|
| +++ b/tools/testing/dart/test_options.dart
|
| @@ -243,6 +243,24 @@ class TestOptionsParser {
|
| [],
|
| ''),
|
| new _TestOptionSpecification(
|
| + 'firefox',
|
| + 'Path to firefox browser executable',
|
| + ['--firefox'],
|
| + [],
|
| + ''),
|
| + new _TestOptionSpecification(
|
| + 'chrome',
|
| + 'Path to chrome browser executable',
|
| + ['--chrome'],
|
| + [],
|
| + ''),
|
| + new _TestOptionSpecification(
|
| + 'safari',
|
| + 'Path to safari browser executable',
|
| + ['--safari'],
|
| + [],
|
| + ''),
|
| + new _TestOptionSpecification(
|
| 'use_sdk',
|
| '''Use compiler or runtime from the SDK.
|
|
|
| @@ -484,8 +502,8 @@ Note: currently only implemented for dart2js.''',
|
| // options.
|
| Set<String> _blacklistedOptions = new Set<String>.from([
|
| 'progress', 'failure-summary', 'step_name', 'report', 'tasks', 'verbose',
|
| - 'time', 'dart', 'drt', 'dartium', 'build_directory', 'append_logs',
|
| - 'local_ip', 'shard', 'shards',
|
| + 'time', 'dart', 'drt', 'dartium', 'firefox', 'chrome', 'safari',
|
| + 'build_directory', 'append_logs', 'local_ip', 'shard', 'shards',
|
| ]);
|
|
|
| List<String> _constructReproducingCommandArguments(Map config) {
|
|
|