Index: tools/test.dart |
diff --git a/tools/test.dart b/tools/test.dart |
index 9832db8535a3c4e7dd415462e2043c2ee48630e7..f85717ae7d86b40409974af04ca815b9b4f04632 100755 |
--- a/tools/test.dart |
+++ b/tools/test.dart |
@@ -70,7 +70,6 @@ final TEST_SUITE_DIRECTORIES = [ |
new Path('tests/utils'), |
new Path('utils/tests/css'), |
new Path('utils/tests/peg'), |
- new Path('sdk/lib/_internal/pub'), |
]; |
void testConfigurations(List<Map> configurations) { |
@@ -219,6 +218,11 @@ void testConfigurations(List<Map> configurations) { |
} |
testSuites.add( |
new PkgBuildTestSuite(conf, 'pkgbuild', 'pkg/pkgbuild.status')); |
+ } else if (key == 'pub') { |
+ // TODO(rnystrom): Move pub back into TEST_SUITE_DIRECTORIES once |
+ // #104 is fixed. |
+ testSuites.add(new StandardTestSuite.forDirectory(conf, |
+ new Path('sdk/lib/_internal/pub_generated'), 'pub')); |
} |
} |