Chromium Code Reviews| 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..d9df5240bb394d0e669ffcc55b9e94568d9979ea 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', 'build_directory', |
|
Bill Hesse
2013/11/05 18:21:39
Add the two other ones here.
|
| + 'append_logs', 'local_ip', 'shard', 'shards', |
| ]); |
| List<String> _constructReproducingCommandArguments(Map config) { |