Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(451)

Unified Diff: tools/test.dart

Issue 557563002: Store the async-await compiled pub code directly in the repo. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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'));
}
}

Powered by Google App Engine
This is Rietveld 408576698