| Index: tools/test.dart
|
| diff --git a/tools/test.dart b/tools/test.dart
|
| index ccc276f315602dd54557203ad921a532dcbcff5a..542b03591277c065abc32224546775e837f9824b 100755
|
| --- a/tools/test.dart
|
| +++ b/tools/test.dart
|
| @@ -54,6 +54,20 @@ main() {
|
| List<Map> configurations = optionsParser.parse(new Options().arguments);
|
| if (configurations == null) return;
|
|
|
| + // Print the configurations being run by this execution of
|
| + // test.dart. However, don't do it if any of the components uses
|
| + // the silent progress indicator. This is only needed because of
|
| + // the junit tests.
|
| + if (configurations.every((conf) => conf['progress'] != 'silent')) {
|
| + StringBuffer sb = new StringBuffer('Test configuration');
|
| + sb.add(configurations.length > 1 ? 's:' : ':');
|
| + for (Map conf in configurations) {
|
| + sb.add(' ${conf["component"]}_${conf["mode"]}_${conf["arch"]}');
|
| + if (conf['checked']) sb.add('_checked');
|
| + }
|
| + print(sb);
|
| + }
|
| +
|
| // Extract global options from first configuration.
|
| var firstConf = configurations[0];
|
| Map<String, RegExp> selectors = firstConf['selectors'];
|
|
|