| Index: tools/test.dart
|
| diff --git a/tools/test.dart b/tools/test.dart
|
| index b763766524fdb47b5c5f35eefe028013acfe6eca..791d2ff779f742cab4540e4894ef11b5abe9052c 100755
|
| --- a/tools/test.dart
|
| +++ b/tools/test.dart
|
| @@ -37,7 +37,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");
|
|
|
| /**
|
| * The directories that contain test suites which follow the conventions
|
| @@ -58,6 +57,7 @@ final TEST_SUITE_DIRECTORIES = const [
|
| 'tests/isolate',
|
| 'tests/json',
|
| 'tests/language',
|
| + 'tests/utils',
|
| 'utils/tests/css',
|
| 'utils/tests/peg',
|
| 'utils/tests/pub',
|
| @@ -109,8 +109,6 @@ main() {
|
| queue.addTestSuite(new Co19TestSuite(conf));
|
| } else if (key == 'lib') {
|
| queue.addTestSuite(new LibTestSuite(conf));
|
| - } else if (key == 'utils') {
|
| - queue.addTestSuite(new UtilsTestSuite(conf));
|
| } else if (conf['runtime'] == 'vm' && key == 'vm') {
|
| queue.addTestSuite(new VMTestSuite(conf));
|
| queue.addTestSuite(new VMDartTestSuite(conf));
|
|
|