Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1174)

Unified Diff: tools/testing/dart/test_options.dart

Issue 8845001: Add --time option to dart test scripts. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Runtime test script Created 9 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: tools/testing/dart/test_options.dart
diff --git a/tools/testing/dart/test_options.dart b/tools/testing/dart/test_options.dart
index 36b8c870fe672c5fd3f0b31e171be168fcbbd50d..ea5da8039c9c15ece8a2033a09520cea5b153518 100644
--- a/tools/testing/dart/test_options.dart
+++ b/tools/testing/dart/test_options.dart
@@ -135,7 +135,14 @@ is 'dart file.dart' and you specify special command
specialCommandHelp,
['--special-command'],
[],
- '')];
+ ''),
+ new _TestOptionSpecification(
+ 'time',
+ 'Print timing information after running tests',
+ ['--time'],
+ [],
+ false,
+ 'bool')];
}

Powered by Google App Engine
This is Rietveld 408576698