| Index: tools/testing/dart/test_options.dart
|
| diff --git a/tools/testing/dart/test_options.dart b/tools/testing/dart/test_options.dart
|
| index bda38e0af7a50be868b9c92f5af1a9b2fd299e36..8e68aa83085a328a054c3292775776dfb872271a 100644
|
| --- a/tools/testing/dart/test_options.dart
|
| +++ b/tools/testing/dart/test_options.dart
|
| @@ -318,7 +318,21 @@ Note: currently only implemented for dart2js.''',
|
| 'This address is also used for browsers to connect.',
|
| ['--local_ip'],
|
| [],
|
| - '127.0.0.1'),];
|
| + '127.0.0.1'),
|
| + new _TestOptionSpecification(
|
| + 'record_to_file',
|
| + 'Records all the commands that need to be executed and writes it '
|
| + 'out to a file.',
|
| + ['--record_to_file'],
|
| + [],
|
| + null),
|
| + new _TestOptionSpecification(
|
| + 'replay_from_file',
|
| + 'Records all the commands that need to be executed and writes it '
|
| + 'out to a file.',
|
| + ['--replay_from_file'],
|
| + [],
|
| + null),];
|
| }
|
|
|
|
|
|
|