Chromium Code Reviews| 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; |
| } |