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

Unified Diff: tools/testing/dart/test_runner.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_runner.dart
diff --git a/tools/testing/dart/test_runner.dart b/tools/testing/dart/test_runner.dart
index 29692b0cc3066495c774b1a11d76f61908fcfdd4..23fefe49b3e514b9392416ae74d342672ce6e581 100644
--- a/tools/testing/dart/test_runner.dart
+++ b/tools/testing/dart/test_runner.dart
@@ -331,10 +331,13 @@ class ProcessQueue {
ProcessQueue(int this._maxProcesses,
String progress,
bool this._verbose,
- Date start_time,
+ Date startTime,
+ bool printTiming,
Function this._enqueueMoreWork)
: _tests = new Queue<TestCase>(),
- _progress = new ProgressIndicator.fromName(progress, start_time),
+ _progress = new ProgressIndicator.fromName(progress,
+ startTime,
+ printTiming),
_batchProcesses = new List<DartcBatchRunnerProcess>() {
if (!_enqueueMoreWork(this)) _progress.allDone();
}

Powered by Google App Engine
This is Rietveld 408576698