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

Side by Side Diff: utils/tests/pub/install/relative_symlink_test.dart

Issue 12782016: Switch pkg packages, pub, and dartdoc to use package: imports. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Code review changes. Created 7 years, 9 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « utils/tests/pub/install/pub_install_test.dart ('k') | utils/tests/pub/io_test.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 library pub_tests; 5 library pub_tests;
6 6
7 import 'dart:io'; 7 import 'dart:io';
8 8
9 import '../../../../pkg/scheduled_test/lib/scheduled_test.dart'; 9 import 'package:scheduled_test/scheduled_test.dart';
10 10
11 import '../descriptor.dart' as d; 11 import '../descriptor.dart' as d;
12 import '../test_pub.dart'; 12 import '../test_pub.dart';
13 13
14 main() { 14 main() {
15 // Pub uses NTFS junction points to create links in the packages directory. 15 // Pub uses NTFS junction points to create links in the packages directory.
16 // These (unlike the symlinks that are supported in Vista and later) do not 16 // These (unlike the symlinks that are supported in Vista and later) do not
17 // support relative paths. So this test, by design, will not pass on Windows. 17 // support relative paths. So this test, by design, will not pass on Windows.
18 // So just skip it. 18 // So just skip it.
19 if (Platform.operatingSystem == "windows") return; 19 if (Platform.operatingSystem == "windows") return;
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 d.dir("bin", [ 55 d.dir("bin", [
56 d.dir("packages", [ 56 d.dir("packages", [
57 d.dir("myapp", [ 57 d.dir("myapp", [
58 d.file('foo.dart', 'main() => "foo";') 58 d.file('foo.dart', 'main() => "foo";')
59 ]) 59 ])
60 ]) 60 ])
61 ]) 61 ])
62 ]).validate(); 62 ]).validate();
63 }); 63 });
64 } 64 }
OLDNEW
« no previous file with comments | « utils/tests/pub/install/pub_install_test.dart ('k') | utils/tests/pub/io_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698