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

Unified Diff: tests/standalone/io/resolve_symbolic_links_test.dart

Issue 86073002: Don't run test against '.' while running test that changes current working directory. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 1 month 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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.
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698