| 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();
|
| });
|
| }
|
| }
|
|
|