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

Unified Diff: tools/test-runtime.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/test-runtime.dart
diff --git a/tools/test-runtime.dart b/tools/test-runtime.dart
index 9faa45a65728ad7db385ddb70b92d5ca92bafa59..2b356237fa7d2bf4ba36d82f29e014f56eec269c 100755
--- a/tools/test-runtime.dart
+++ b/tools/test-runtime.dart
@@ -31,6 +31,7 @@ main() {
var maxProcesses = firstConf['tasks'];
var progressIndicator = firstConf['progress'];
var verbose = firstConf['verbose'];
+ var printTiming = firstConf['time'];
var configurationIterator = configurations.iterator();
bool enqueueConfiguration(ProcessQueue queue) {
@@ -69,5 +70,6 @@ main() {
progressIndicator,
verbose,
startTime,
+ printTiming,
enqueueConfiguration);
}

Powered by Google App Engine
This is Rietveld 408576698