| Index: dart/tools/test.dart
|
| diff --git a/dart/tools/test.dart b/dart/tools/test.dart
|
| index 3990323ad2819a2058c6560752d157022df2cbee..69844e60d1f5d8332f1f27b2931ce7e3a3293d7c 100755
|
| --- a/dart/tools/test.dart
|
| +++ b/dart/tools/test.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.
|
|
|
| @@ -14,6 +14,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");
|
| #import("../samples/tests/samples/test_config.dart");
|
| #import("../client/tests/dartc/test_config.dart");
|
| @@ -71,6 +72,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));
|
| }
|
|
|