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

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

Issue 23956004: Run testReadAsText wrapped in createTempDirectory, as it uses the shared temp directory. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Marking more tests as async. Created 7 years, 3 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 | « 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/file_test.dart
diff --git a/tests/standalone/io/file_test.dart b/tests/standalone/io/file_test.dart
index 3018f719d7a96ef82f06f9dfef20fc0ea8ac5e00..16001a21c46e6a26597a7bf1a613a7aeef8f2e3b 100644
--- a/tests/standalone/io/file_test.dart
+++ b/tests/standalone/io/file_test.dart
@@ -1263,28 +1263,20 @@ class FileTest {
testRead();
testReadSync();
testReadStream();
- testLength();
testLengthSync();
- testPosition();
testPositionSync();
testOpenDirectoryAsFile();
testOpenDirectoryAsFileSync();
testOpenFile();
- testReadAsBytes();
- testReadAsBytesEmptyFile();
testReadAsBytesSync();
testReadAsBytesSyncEmptyFile();
- testReadAsText();
- testReadAsTextEmptyFile();
testReadAsTextSync();
testReadAsTextSyncEmptyFile();
- testReadAsLines();
testReadAsLinesSync();
- testReadAsErrors();
- testLastModified();
testLastModifiedSync();
createTempDirectory(() {
+ testLength();
testReadWrite();
testReadWriteSync();
testReadWriteNoArgsSync();
@@ -1292,6 +1284,13 @@ class FileTest {
testReadEmptyFileSync();
testReadEmptyFile();
testReadWriteStreamLargeFile();
+ testReadAsBytes();
+ testReadAsBytesEmptyFile();
+ testReadAsText();
+ testReadAsTextEmptyFile();
+ testReadAsLines();
+ testReadAsErrors();
+ testPosition();
testTruncate();
testTruncateSync();
testCloseException();
@@ -1309,6 +1308,7 @@ class FileTest {
testWriteStringUtf8Sync();
testRename();
testRenameSync();
+ testLastModified();
});
}
}
« 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