| Index: dart/tools/testing/dart/test_options.dart
|
| diff --git a/dart/tools/testing/dart/test_options.dart b/dart/tools/testing/dart/test_options.dart
|
| index c0af640dba6e7581259c31d91b54daaaecdccab5..466c67abad685a78edc5fcf5d8e15622db6fe8c5 100644
|
| --- a/dart/tools/testing/dart/test_options.dart
|
| +++ b/dart/tools/testing/dart/test_options.dart
|
| @@ -272,6 +272,14 @@ Note: currently only implemented for dart2js.''',
|
| false,
|
| 'bool'),
|
| new _TestOptionSpecification(
|
| + 'use_public_packages',
|
| + 'For tests using packages: Use pub.dartlang.org packages '
|
| + 'instead the ones in the repository.',
|
| + ['--use-public-packages'],
|
| + [],
|
| + false,
|
| + 'bool'),
|
| + new _TestOptionSpecification(
|
| 'build_directory',
|
| 'The name of the build directory, where products are placed.',
|
| ['--build-directory'],
|
| @@ -610,6 +618,8 @@ Note: currently only implemented for dart2js.''',
|
| // Create the artificial negative options that test status files
|
| // expect.
|
| configuration['unchecked'] = !configuration['checked'];
|
| + configuration['use_repository_packages'] =
|
| + !configuration['use_public_packages'];
|
| configuration['host_unchecked'] = !configuration['host_checked'];
|
| configuration['unminified'] = !configuration['minified'];
|
| configuration['nocsp'] = !configuration['csp'];
|
|
|