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

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

Issue 50413005: Reapply "Remove @deprecated features." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Merge to head Created 7 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tests/standalone/io/regress_7679_test.dart ('k') | utils/compiler/create_snapshot.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/standalone/io/skipping_dart2js_compilations_test.dart
diff --git a/tests/standalone/io/skipping_dart2js_compilations_test.dart b/tests/standalone/io/skipping_dart2js_compilations_test.dart
index 17ba2cfd260f9b2178cedf978dab562fcd3372e9..b41dc75a8df4fe6209716f1e4d1d4b3739eecd5e 100644
--- a/tests/standalone/io/skipping_dart2js_compilations_test.dart
+++ b/tests/standalone/io/skipping_dart2js_compilations_test.dart
@@ -107,7 +107,8 @@ class FileUtils {
void _writeToFile(File file, String content) {
if (content != null) {
- var fd = new File(file.fullPathSync()).openSync(mode: FileMode.WRITE);
+ var fd = new File(file.resolveSymbolicLinksSync())
+ .openSync(mode: FileMode.WRITE);
fd.writeStringSync(content);
fd.closeSync();
}
« no previous file with comments | « tests/standalone/io/regress_7679_test.dart ('k') | utils/compiler/create_snapshot.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698