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

Unified Diff: tools/testing/dart/test_suite.dart

Issue 1217353002: Fix pkgbuild tests after adding a pubspec on pkg/compiler (fix #23750) (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 6 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
« no previous file with comments | « pkg/pkgbuild.status ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/testing/dart/test_suite.dart
diff --git a/tools/testing/dart/test_suite.dart b/tools/testing/dart/test_suite.dart
index f09f283c6e3aedd956bea19e152cfc3011a5f094..2304b5c5479e8ddd7c8ca8b310c5d39daddb2be4 100644
--- a/tools/testing/dart/test_suite.dart
+++ b/tools/testing/dart/test_suite.dart
@@ -410,9 +410,9 @@ abstract class TestSuite {
* Layout of packages inside the dart repository:
* dart/
* pkg/PACKAGE_NAME
- * pkg/third_party/PACKAGE_NAME
* third_party/pkg/PACKAGE_NAME
* runtime/observatory/PACKAGE_NAME
+ * sdk/lib/_internal/PACKAGE_NAME
*/
// Directories containing "-" are not valid pub packages and we therefore
@@ -425,6 +425,7 @@ abstract class TestSuite {
listDir(dartDir.append('pkg'), isValid),
listDir(dartDir.append('third_party').append('pkg'), isValid),
listDir(dartDir.append('runtime').append('observatory'), isValid),
+ listDir(dartDir.append('sdk').append('lib').append('_internal'), isValid),
];
return Future.wait(futures).then((results) {
var packageDirectories = {};
« no previous file with comments | « pkg/pkgbuild.status ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698