| Index: tools/test-runtime.dart
|
| diff --git a/tools/test-runtime.dart b/tools/test-runtime.dart
|
| index 036c861d05daecc0b2cb80766248b837b905d4a5..867d39e7c6f7e652fd3ebab708403d56bc81b330 100755
|
| --- a/tools/test-runtime.dart
|
| +++ b/tools/test-runtime.dart
|
| @@ -67,9 +67,9 @@ main() {
|
| List settings = ['compiler', 'runtime', 'mode', 'arch']
|
| .mappedBy((name) => conf[name]).toList();
|
| if (conf['checked']) settings.add('checked');
|
| - output_words.add(Strings.join(settings, '_'));
|
| + output_words.add(settings.join('_'));
|
| }
|
| - print(Strings.join(output_words, ' '));
|
| + print(output_words.join(' '));
|
| }
|
|
|
| var testSuites = new List<TestSuite>();
|
|
|