| Index: tools/testing/dart/test_progress.dart
|
| diff --git a/tools/testing/dart/test_progress.dart b/tools/testing/dart/test_progress.dart
|
| index d2fbfce308f18a92541d019ce81527b52412cc77..e7ce73425db74c2b23a5219104d083df168a72e2 100644
|
| --- a/tools/testing/dart/test_progress.dart
|
| +++ b/tools/testing/dart/test_progress.dart
|
| @@ -69,7 +69,8 @@ class ProgressIndicator {
|
| for (int i = 0; i < 20 && i < _tests.length; i++) {
|
| var name = _tests[i].displayName;
|
| var duration = _tests[i].output.time;
|
| - print('${duration} - $name');
|
| + var configuration = _tests[i].configurationString;
|
| + print('${duration} - $configuration $name');
|
| }
|
| }
|
| }
|
| @@ -112,7 +113,7 @@ class ProgressIndicator {
|
| void _printFailureOutput(TestCase test) {
|
| List<String> output = new List<String>();
|
| output.add('');
|
| - output.add('FAILED: ${test.displayName}');
|
| + output.add('FAILED: ${test.configurationString} ${test.displayName}');
|
| StringBuffer expected = new StringBuffer();
|
| expected.add('Expected: ');
|
| for (var expectation in test.expectedOutcomes) {
|
| @@ -279,7 +280,7 @@ class LineProgressIndicator extends ProgressIndicator {
|
| if (test.output.unexpectedOutput) {
|
| status = 'fail';
|
| }
|
| - print('Done ${test.displayName}: $status');
|
| + print('Done ${test.configurationString} ${test.displayName}: $status');
|
| }
|
| }
|
|
|
| @@ -289,7 +290,7 @@ class VerboseProgressIndicator extends ProgressIndicator {
|
| : super(startTime, printTiming);
|
|
|
| void _printStartProgress(TestCase test) {
|
| - print('Starting ${test.displayName}...');
|
| + print('Starting ${test.configurationString} ${test.displayName}...');
|
| }
|
|
|
| void _printDoneProgress(TestCase test) {
|
| @@ -297,7 +298,7 @@ class VerboseProgressIndicator extends ProgressIndicator {
|
| if (test.output.unexpectedOutput) {
|
| status = 'fail';
|
| }
|
| - print('Done ${test.displayName}: $status');
|
| + print('Done ${test.configurationString} ${test.displayName}: $status');
|
| }
|
| }
|
|
|
| @@ -327,7 +328,7 @@ class BuildbotProgressIndicator extends ProgressIndicator {
|
| status = 'fail';
|
| }
|
| var percent = ((_completedTests() / _foundTests) * 100).toInt().toString();
|
| - print('Done ${test.displayName}: $status');
|
| + print('Done ${test.configurationString} ${test.displayName}: $status');
|
| print('@@@STEP_CLEAR@@@');
|
| print('@@@STEP_TEXT@ $percent% +$_passedTests -$_failedTests @@@');
|
| }
|
|
|