| Index: tools/test-runtime.dart
|
| ===================================================================
|
| --- tools/test-runtime.dart (revision 6877)
|
| +++ tools/test-runtime.dart (working copy)
|
| @@ -17,6 +17,7 @@
|
| #import("../tests/corelib/test_config.dart");
|
| #import("../tests/isolate/test_config.dart");
|
| #import("../tests/language/test_config.dart");
|
| +#import("../tests/lib/test_config.dart");
|
| #import("../tests/standalone/test_config.dart");
|
| #import("../tests/utils/test_config.dart");
|
| #import("../runtime/tests/vm/test_config.dart");
|
| @@ -70,6 +71,9 @@
|
| if (selectors.containsKey('language')) {
|
| queue.addTestSuite(new LanguageTestSuite(conf));
|
| }
|
| + if (selectors.containsKey('lib')) {
|
| + queue.addTestSuite(new LibTestSuite(conf));
|
| + }
|
| if (selectors.containsKey('isolate')) {
|
| queue.addTestSuite(new IsolateTestSuite(conf));
|
| }
|
|
|