Chromium Code Reviews| Index: tools/test.dart |
| diff --git a/tools/test.dart b/tools/test.dart |
| index 8d5ca761298e1386cac462012fbd59069c5f8c30..6615240cfee9d3145f3fd41135252a876f64d5ec 100755 |
| --- a/tools/test.dart |
| +++ b/tools/test.dart |
| @@ -39,7 +39,6 @@ |
| #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"); |
| #import("../tests/language/test_config.dart"); |
| #import("../tests/lib/test_config.dart"); |
| @@ -55,6 +54,7 @@ |
| */ |
| final TEST_SUITE_DIRECTORIES = const [ |
|
Ivan Posva
2012/04/27 05:20:26
@whesse: Why do we need to list all of the directo
Bill Hesse
2012/04/27 07:14:11
I would like to make this a goal, but there is one
Ivan Posva
2012/04/27 08:49:41
As far as I know standard test suites do not have
|
| 'tests/benchmark_smoke', |
| + 'tests/corelib', |
| 'tests/dom', |
| 'tests/html', |
| 'tests/json', |
| @@ -105,8 +105,6 @@ main() { |
| queue.addTestSuite(new SamplesTestSuite(conf)); |
| } else if (key == 'standalone') { |
| queue.addTestSuite(new StandaloneTestSuite(conf)); |
| - } else if (key == 'corelib') { |
| - queue.addTestSuite(new CorelibTestSuite(conf)); |
| } else if (key == 'co19') { |
| queue.addTestSuite(new Co19TestSuite(conf)); |
| } else if (key == 'language') { |