| Index: tools/test.dart
|
| diff --git a/tools/test.dart b/tools/test.dart
|
| index de31ebd18b994d1f54c22f5b0093db700f2d85f5..c776db0c0139b55decc073fc071f3448e58b40e6 100755
|
| --- a/tools/test.dart
|
| +++ b/tools/test.dart
|
| @@ -24,6 +24,7 @@
|
| #import("../frog/tests/leg_only/test_config.dart");
|
| #import("../frog/tests/await/test_config.dart");
|
| #import("../utils/tests/css/test_config.dart");
|
| +#import("../utils/tests/dartdoc/test_config.dart");
|
| #import("../utils/tests/peg/test_config.dart");
|
|
|
| main() {
|
| @@ -90,6 +91,9 @@ main() {
|
| if (selectors.containsKey('css')) {
|
| queue.addTestSuite(new CssTestSuite(conf));
|
| }
|
| + if (selectors.containsKey('dartdoc')) {
|
| + queue.addTestSuite(new DartdocTestSuite(conf));
|
| + }
|
| if (selectors.containsKey('peg')) {
|
| queue.addTestSuite(new PegTestSuite(conf));
|
| }
|
|
|