| Index: tools/test-runtime.dart
|
| diff --git a/tools/test-runtime.dart b/tools/test-runtime.dart
|
| index c366a73d1456ea245c51453c276e828aec14ed28..a29a4005da6f213ce519673948ac241554594d8e 100755
|
| --- a/tools/test-runtime.dart
|
| +++ b/tools/test-runtime.dart
|
| @@ -27,6 +27,15 @@ 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');
|
| + 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'];
|
|
|