Chromium Code Reviews| Index: tools/test.dart |
| diff --git a/tools/test.dart b/tools/test.dart |
| index 0db2214c450a35a1dd0a71d6175c2ad143f8308b..b3caac1377610cf61481d02d80ad000cefab3010 100755 |
| --- a/tools/test.dart |
| +++ b/tools/test.dart |
| @@ -18,6 +18,7 @@ |
| #import("../samples/tests/samples/test_config.dart"); |
| #import("../client/tests/dartc/test_config.dart"); |
| #import("../client/tests/client/test_config.dart"); |
| +#import("../compiler/tests/dartc/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"); |
| @@ -82,6 +83,9 @@ main() { |
| if (conf['component'] == 'dartc' && selectors.containsKey('dartc')) { |
| queue.addTestSuite(new ClientDartcTestSuite(conf)); |
| } |
| + if (conf['component'] == 'dartc' && selectors.containsKey('dartc')) { |
|
ngeoffray
2011/12/30 10:20:06
This is the same condition than line 83.
Bill Hesse
2011/12/30 16:04:33
Yes, but we want to keep all of the test suites in
|
| + queue.addTestSuite(new JUnitDartcTestSuite(conf)); |
| + } |
| if (selectors.containsKey('css')) { |
| queue.addTestSuite(new CssTestSuite(conf)); |
| } |