| Index: tools/test.dart
|
| diff --git a/tools/test.dart b/tools/test.dart
|
| index bd0a3e5e72bb14ef3d4cb29d5dac1e4f2e96f372..47c62b39667e570c9b3d72b0ffada247db62dc29 100755
|
| --- a/tools/test.dart
|
| +++ b/tools/test.dart
|
| @@ -17,6 +17,7 @@
|
| #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("../frog/tests/frog/test_config.dart");
|
| #import("../frog/tests/leg/test_config.dart");
|
| #import("../frog/tests/leg_only/test_config.dart");
|
| @@ -81,6 +82,9 @@ main() {
|
| if (conf['component'] == 'dartc' && selectors.containsKey('dartc')) {
|
| queue.addTestSuite(new ClientDartcTestSuite(conf));
|
| }
|
| + if (conf['component'] == 'dartc' && selectors.containsKey('dartc')) {
|
| + queue.addTestSuite(new JUnitDartcTestSuite(conf));
|
| + }
|
| if (selectors.containsKey('css')) {
|
| queue.addTestSuite(new CssTestSuite(conf));
|
| }
|
|
|