| Index: utils/tests/pub/pub_install_test.dart
|
| diff --git a/utils/tests/pub/pub_install_test.dart b/utils/tests/pub/pub_install_test.dart
|
| index 668c29b10c831a017d01e4d1a8b6c0175593a82d..8b7cd8670c3ecdfe3ddcc7752fd4135d54d66ece 100644
|
| --- a/utils/tests/pub/pub_install_test.dart
|
| +++ b/utils/tests/pub/pub_install_test.dart
|
| @@ -33,6 +33,8 @@ main() {
|
| });
|
| });
|
|
|
| + // TODO(rnystrom): Re-enable this when #4820 is fixed.
|
| + /*
|
| test('creates a self-referential symlink', () {
|
| // The symlink should use the name in the pubspec, not the name of the
|
| // directory.
|
| @@ -49,6 +51,7 @@ main() {
|
|
|
| run();
|
| });
|
| + */
|
|
|
| group('creates a packages directory in', () {
|
| test('"test/" and its subdirectories', () {
|
| @@ -63,11 +66,17 @@ main() {
|
| dir(appPath, [
|
| dir("test", [
|
| dir("packages", [
|
| - dir("myapp", [appPubspec([])])
|
| + // TODO(rnystrom): Re-enable this when #4820 is fixed.
|
| + /*
|
| + dir("myapp", [appPubspec([])])
|
| + */
|
| ]),
|
| dir("subtest", [
|
| dir("packages", [
|
| - dir("myapp", [appPubspec([])])
|
| + // TODO(rnystrom): Re-enable this when #4820 is fixed.
|
| + /*
|
| + dir("myapp", [appPubspec([])])
|
| + */
|
| ])
|
| ])
|
| ])
|
| @@ -88,11 +97,17 @@ main() {
|
| dir(appPath, [
|
| dir("example", [
|
| dir("packages", [
|
| - dir("myapp", [appPubspec([])])
|
| + // TODO(rnystrom): Re-enable this when #4820 is fixed.
|
| + /*
|
| + dir("myapp", [appPubspec([])])
|
| + */
|
| ]),
|
| dir("subexample", [
|
| dir("packages", [
|
| - dir("myapp", [appPubspec([])])
|
| + // TODO(rnystrom): Re-enable this when #4820 is fixed.
|
| + /*
|
| + dir("myapp", [appPubspec([])])
|
| + */
|
| ])
|
| ])
|
| ])
|
| @@ -113,7 +128,10 @@ main() {
|
| dir(appPath, [
|
| dir("bin", [
|
| dir("packages", [
|
| - dir("myapp", [appPubspec([])])
|
| + // TODO(rnystrom): Re-enable this when #4820 is fixed.
|
| + /*
|
| + dir("myapp", [appPubspec([])])
|
| + */
|
| ])
|
| ])
|
| ]).scheduleValidate();
|
|
|