| Index: dart/tools/test-runtime.dart
|
| diff --git a/dart/tools/test-runtime.dart b/dart/tools/test-runtime.dart
|
| index a1cb43b0c4dd99e9dd989171b6ccdab7794bb7e9..98b0c23d82813d766d43f3dc4c1b7483a82f574a 100755
|
| --- a/dart/tools/test-runtime.dart
|
| +++ b/dart/tools/test-runtime.dart
|
| @@ -1,5 +1,5 @@
|
| #!/usr/bin/env dart
|
| -// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
|
| +// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| // for details. All rights reserved. Use of this source code is governed by a
|
| // BSD-style license that can be found in the LICENSE file.
|
|
|
| @@ -19,6 +19,7 @@
|
| #import("../tests/language/test_config.dart");
|
| #import("../tests/standalone/test_config.dart");
|
| #import("../tests/stub-generator/test_config.dart");
|
| +#import("../tests/utils/test_config.dart");
|
| #import("../runtime/tests/vm/test_config.dart");
|
|
|
| main() {
|
| @@ -62,6 +63,9 @@ main() {
|
| if (selectors.containsKey('stub-generator')) {
|
| queue.addTestSuite(new StubGeneratorTestSuite(conf));
|
| }
|
| + if (selectors.containsKey('utils')) {
|
| + queue.addTestSuite(new UtilsTestSuite(conf));
|
| + }
|
| if (conf['component'] == 'vm' && selectors.containsKey('vm')) {
|
| queue.addTestSuite(new VMTestSuite(conf));
|
| }
|
|
|