| Index: tools/test.dart
|
| diff --git a/tools/test.dart b/tools/test.dart
|
| index 8085d6ca4f5e4b43413f229ca59678b8fcb1d18c..913175647eb739f98406b417d07145d362339b87 100755
|
| --- a/tools/test.dart
|
| +++ b/tools/test.dart
|
| @@ -29,6 +29,15 @@
|
| #import("testing/dart/test_options.dart");
|
| #import("testing/dart/test_suite.dart");
|
|
|
| +#import("../client/tests/dartc/test_config.dart");
|
| +#import("../compiler/tests/dartc/test_config.dart");
|
| +#import("../frog/tests/await/test_config.dart");
|
| +#import("../frog/tests/frog/test_config.dart");
|
| +#import("../frog/tests/leg/test_config.dart");
|
| +#import("../frog/tests/leg_only/test_config.dart");
|
| +#import("../frog/tests/native/test_config.dart");
|
| +#import("../runtime/tests/vm/test_config.dart");
|
| +#import("../samples/tests/samples/test_config.dart");
|
| #import("../tests/co19/test_config.dart");
|
| #import("../tests/corelib/test_config.dart");
|
| #import("../tests/isolate/test_config.dart");
|
| @@ -36,16 +45,6 @@
|
| #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");
|
| -#import("../samples/tests/samples/test_config.dart");
|
| -#import("../client/tests/dartc/test_config.dart");
|
| -#import("../compiler/tests/dartc/test_config.dart");
|
| -#import("../client/tests/client/test_config.dart");
|
| -#import("../frog/tests/frog/test_config.dart");
|
| -#import("../frog/tests/leg/test_config.dart");
|
| -#import("../frog/tests/leg_only/test_config.dart");
|
| -#import("../frog/tests/native/test_config.dart");
|
| -#import("../frog/tests/await/test_config.dart");
|
|
|
| /**
|
| * The directories that contain test suites which follow the conventions
|
| @@ -55,6 +54,10 @@
|
| * moved to here, if possible.
|
| */
|
| final TEST_SUITE_DIRECTORIES = const [
|
| + 'tests/benchmark_smoke',
|
| + 'tests/dom',
|
| + 'tests/html',
|
| + 'tests/json',
|
| 'utils/tests/css',
|
| 'utils/tests/peg',
|
| 'utils/tests/pub',
|
| @@ -146,9 +149,6 @@ main() {
|
| if (selectors.containsKey('await')) {
|
| queue.addTestSuite(new AwaitTestSuite(conf));
|
| }
|
| - if (selectors.containsKey('client')) {
|
| - queue.addTestSuite(new ClientTestSuite(conf));
|
| - }
|
|
|
| for (final testSuiteDir in TEST_SUITE_DIRECTORIES) {
|
| final name = testSuiteDir.substring(testSuiteDir.lastIndexOf('/') + 1);
|
|
|