| Index: dart/tools/test-compiler.dart
|
| diff --git a/dart/tools/test-compiler.dart b/dart/tools/test-compiler.dart
|
| index 190a15e7fcadc76f2cd607e14f109ec4e3cbfe0a..103f8cf0996f36c09889b2277757e3a4a2777b89 100644
|
| --- a/dart/tools/test-compiler.dart
|
| +++ b/dart/tools/test-compiler.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.
|
|
|
| @@ -15,6 +15,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");
|
| @@ -65,6 +66,9 @@ main() {
|
| if (selectors.containsKey('stub-generator')) {
|
| queue.addTestSuite(new StubGeneratorTestSuite(conf));
|
| }
|
| + if (selectors.containsKey('utils')) {
|
| + queue.addTestSuite(new UtilsTestSuite(conf));
|
| + }
|
| if (conf['component'] == 'dartc' && selectors.containsKey('dartc')) {
|
| queue.addTestSuite(new ClientDartcTestSuite(conf));
|
| }
|
|
|