| Index: tools/test.dart
|
| diff --git a/tools/test.dart b/tools/test.dart
|
| index 48397d84eb73f46cd12d476bba464b1ab4f9785d..cda68b69d361c7eed44fbb4ee5be592a519e16e2 100755
|
| --- a/tools/test.dart
|
| +++ b/tools/test.dart
|
| @@ -35,7 +35,6 @@
|
| #import("../runtime/tests/vm/test_config.dart");
|
| #import("../samples/tests/samples/test_config.dart");
|
| #import("../tests/co19/test_config.dart");
|
| -#import("../tests/standalone/test_config.dart");
|
|
|
| /**
|
| * The directories that contain test suites which follow the conventions
|
| @@ -56,6 +55,7 @@ final TEST_SUITE_DIRECTORIES = const [
|
| 'tests/isolate',
|
| 'tests/json',
|
| 'tests/language',
|
| + 'tests/standalone',
|
| 'tests/utils',
|
| 'utils/tests/css',
|
| 'utils/tests/peg',
|
| @@ -102,8 +102,6 @@ main() {
|
| for (String key in selectors.getKeys()) {
|
| if (key == 'samples') {
|
| queue.addTestSuite(new SamplesTestSuite(conf));
|
| - } else if (key == 'standalone') {
|
| - queue.addTestSuite(new StandaloneTestSuite(conf));
|
| } else if (key == 'co19') {
|
| queue.addTestSuite(new Co19TestSuite(conf));
|
| } else if (conf['runtime'] == 'vm' && key == 'vm') {
|
|
|