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

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

Issue 17302007: Add timing information for the individual steps of a failing test. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 6 months 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/testing/dart/test_progress.dart
===================================================================
--- tools/testing/dart/test_progress.dart (revision 24128)
+++ tools/testing/dart/test_progress.dart (working copy)
@@ -128,8 +128,14 @@
}
for (var i = 0; i < test.commands.length; i++) {
var command = test.commands[i];
+ var commandOutput = test.commandOutputs[command];
output.add('');
output.add('Command[$i]: $command');
+ if (commandOutput != null) {
kustermann 2013/06/20 08:05:28 I think we should not print it out together with t
ricow1 2013/06/20 08:23:11 It will be messed up with tons of output in certai
+ output.add('Took ${commandOutput.time}');
+ } else {
+ output.add('Did not run');
+ }
}
return output;
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698