Fix pkgbuild tests after adding a pubspec on pkg/compiler (fix #23750)
BUG= R=whesse@google.com Review URL: https://codereview.chromium.org//1217353002.
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
name: compiler
|
||||
#version: do-not-upload
|
||||
dependencies:
|
||||
package_config: ^0.0.4
|
||||
package_config: ^0.1.1
|
||||
js_ast:
|
||||
path: ../js_ast
|
||||
js_runtime:
|
||||
|
||||
+2
-5
@@ -8,20 +8,17 @@ pkg/docgen: Pass, Slow
|
||||
|
||||
[ $use_repository_packages ]
|
||||
pkg/analyzer: PubGetError
|
||||
pkg/compiler: PubGetError # Issue 23750
|
||||
samples/third_party/angular_todo: Fail # angular needs to be updated
|
||||
samples/third_party/todomvc_performance: Skip # dependencies are not in the repo
|
||||
third_party/pkg/package_config: PubGetError # Issue 23750
|
||||
|
||||
[ $use_public_packages ]
|
||||
pkg/compiler: PubGetError # Issue 23750
|
||||
pkg/compiler: SkipByDesign # js_ast is not published
|
||||
samples/third_party/angular_todo: Pass, Slow
|
||||
third_party/pkg/async_await: Skip # Uses expect package.
|
||||
samples/third_party/todomvc_performance: Pass, Slow
|
||||
|
||||
[ $builder_tag == russian ]
|
||||
samples/third_party/angular_todo: Fail # Issue 16356
|
||||
samples/third_party/dromaeo: Fail # Issue 23750
|
||||
samples/third_party/dromaeo: Fail # Issue 23760
|
||||
|
||||
[ $use_public_packages && $system == windows ]
|
||||
samples/third_party/todomvc_performance: Fail # Issue 18086
|
||||
|
||||
@@ -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 = {};
|
||||
|
||||
Reference in New Issue
Block a user