| Index: tools/test.dart
|
| diff --git a/tools/test.dart b/tools/test.dart
|
| index ccc276f315602dd54557203ad921a532dcbcff5a..f62ff8d7b5b18fde1d7280b89ab330ec6d25dc78 100755
|
| --- a/tools/test.dart
|
| +++ b/tools/test.dart
|
| @@ -54,6 +54,14 @@ main() {
|
| List<Map> configurations = optionsParser.parse(new Options().arguments);
|
| if (configurations == null) return;
|
|
|
| + // Print the configurations being run by this excution of test.dart.
|
| + StringBuffer sb = new StringBuffer('Test configuration(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'];
|
|
|