| Index: tools/test.dart
|
| diff --git a/tools/test.dart b/tools/test.dart
|
| index c373427add3c1dc25e5c4b79c02c24068fdbd31b..de31ebd18b994d1f54c22f5b0093db700f2d85f5 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("../compiler/tests/dartc/test_config.dart");
|
| +#import("../client/tests/client/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");
|
| @@ -95,6 +96,9 @@ main() {
|
| if (selectors.containsKey('await')) {
|
| queue.addTestSuite(new AwaitTestSuite(conf));
|
| }
|
| + if (selectors.containsKey('client')) {
|
| + queue.addTestSuite(new ClientTestSuite(conf));
|
| + }
|
|
|
| return true;
|
| }
|
|
|