| Index: tests/standalone/io/resolve_symbolic_links_test.dart
|
| diff --git a/tests/standalone/io/resolve_symbolic_links_test.dart b/tests/standalone/io/resolve_symbolic_links_test.dart
|
| index 252e65f5e362a6c3a10c82838d88d53f41c513c6..690cbc522908062abb8a6bc7d7a9a4ab8e7f2f6c 100644
|
| --- a/tests/standalone/io/resolve_symbolic_links_test.dart
|
| +++ b/tests/standalone/io/resolve_symbolic_links_test.dart
|
| @@ -23,7 +23,6 @@ main() {
|
| asyncTest(() => testDir(join(testsDir, 'standalone', 'io')));
|
| asyncTest(() => testDir(join(testsDir, 'lib', '..', 'standalone', 'io')));
|
| // Test a relative path.
|
| - asyncTest(() => testDir('.'));
|
| if (Platform.isWindows) {
|
| asyncTest(() =>testFile(join('\\\\?\\$testsDir', 'standalone', 'io',
|
| 'resolve_symbolic_links_test.dart')));
|
| @@ -37,7 +36,8 @@ main() {
|
| testFile(join(temp, 'link1', 'file2')),
|
| testDir(join(temp, 'dir1', 'dir2', '..', '.', '..', 'dir1')),
|
| testDir(join(temp, 'dir1', 'dir2', '..', '.', '..', 'dir1')),
|
| - testLink(join(temp, 'link1'))]))
|
| + testLink(join(temp, 'link1')),
|
| + testDir('.')]))
|
| .then((_) {
|
| if (Platform.isWindows) {
|
| // Windows applies '..' to a link without resolving the link first.
|
|
|