| Index: tools/test.dart
|
| diff --git a/tools/test.dart b/tools/test.dart
|
| index bd0a3e5e72bb14ef3d4cb29d5dac1e4f2e96f372..0db2214c450a35a1dd0a71d6175c2ad143f8308b 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("../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");
|
| @@ -90,6 +91,9 @@ main() {
|
| if (selectors.containsKey('await')) {
|
| queue.addTestSuite(new AwaitTestSuite(conf));
|
| }
|
| + if (selectors.containsKey('client')) {
|
| + queue.addTestSuite(new ClientTestSuite(conf));
|
| + }
|
|
|
| return true;
|
| }
|
|
|