| Index: tools/test-runtime.dart
|
| diff --git a/tools/test-runtime.dart b/tools/test-runtime.dart
|
| index 47facbe5499e4c3029e1e3fffde4bddfa1f3bee8..7724323fab81f4431aa00aefcbd3db700863924d 100755
|
| --- a/tools/test-runtime.dart
|
| +++ b/tools/test-runtime.dart
|
| @@ -17,7 +17,6 @@
|
| #import("../tests/co19/test_config.dart");
|
| #import("../tests/lib/test_config.dart");
|
| #import("../tests/standalone/test_config.dart");
|
| -#import("../tests/utils/test_config.dart");
|
| #import("../runtime/tests/vm/test_config.dart");
|
|
|
| /**
|
| @@ -31,6 +30,7 @@ final TEST_SUITE_DIRECTORIES = const [
|
| 'tests/corelib',
|
| 'tests/isolate',
|
| 'tests/language',
|
| + 'tests/utils',
|
| ];
|
|
|
| main() {
|
| @@ -79,9 +79,6 @@ main() {
|
| if (selectors.containsKey('lib')) {
|
| queue.addTestSuite(new LibTestSuite(conf));
|
| }
|
| - if (selectors.containsKey('utils')) {
|
| - queue.addTestSuite(new UtilsTestSuite(conf));
|
| - }
|
| if (conf['runtime'] == 'vm' && selectors.containsKey('vm')) {
|
| queue.addTestSuite(new VMTestSuite(conf));
|
| queue.addTestSuite(new VMDartTestSuite(conf));
|
|
|