| Index: tools/testing/dart/test_options.dart
|
| ===================================================================
|
| --- tools/testing/dart/test_options.dart (revision 14062)
|
| +++ tools/testing/dart/test_options.dart (working copy)
|
| @@ -131,6 +131,13 @@
|
| false,
|
| 'bool'),
|
| new _TestOptionSpecification(
|
| + 'minified',
|
| + 'Enable minification in the compiler',
|
| + ['--minified'],
|
| + [],
|
| + false,
|
| + 'bool'),
|
| + new _TestOptionSpecification(
|
| 'timeout',
|
| 'Timeout in seconds',
|
| ['-t', '--timeout'],
|
| @@ -471,6 +478,8 @@
|
| configuration['unchecked'] = !configuration['checked'];
|
| configuration['host_unchecked'] = !configuration['host_checked'];
|
|
|
| + configuration['unminified'] = !configuration['minified'];
|
| +
|
| String runtime = configuration['runtime'];
|
| if (runtime == 'firefox') {
|
| configuration['runtime'] == 'ff';
|
|
|