Chromium Code Reviews| Index: tools/test.dart |
| diff --git a/tools/test.dart b/tools/test.dart |
| index aee9f2ff2f6433d217db5c3cd65b222df2335352..72089e4a684ca12756fd73cd1d0d88d51178a05d 100755 |
| --- a/tools/test.dart |
| +++ b/tools/test.dart |
| @@ -29,10 +29,10 @@ |
| #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("../runtime/tests/vm/test_config.dart"); |
| +#import("../samples/tests/dartc/test_config.dart"); |
| #import("../tests/co19/test_config.dart"); |
| /** |
| @@ -109,8 +109,7 @@ main() { |
| // [TEST_SUITE_DIRECTORIES]). |
| queue.addTestSuite(new VMTestSuite(conf)); |
| } else if (conf['compiler'] == 'dartc' && key == 'dartc') { |
| - queue.addTestSuite(new ClientDartcTestSuite(conf)); |
| - } else if (conf['compiler'] == 'dartc' && key == 'dartc') { |
|
Emily Fortuna
2012/05/02 22:34:41
wow, this is kindof hilarious.
|
| + queue.addTestSuite(new SamplesDartcTestSuite(conf)); |
| queue.addTestSuite(new JUnitDartcTestSuite(conf)); |
| } else if (key == 'await') { |
| queue.addTestSuite(new AwaitTestSuite(conf)); |