Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-12-27Fixes https://github.com/mono/mono/issues/18291Steve Pfister
Backport of https://github.com/dotnet/runtime/commit/db671a853e3c7a3eea5016b2dedf7b1977a17002
2019-12-09Backport FixPathLength 255 PRSteve Pfister
Fixes https://github.com/mono/mono/issues/17948 Pulled in upstream change https://github.com/dotnet/corefx/pull/34389
2019-10-31Backport of https://github.com/dotnet/corefx/pull/34560Steve Pfister
Fixes https://github.com/mono/mono/issues/17304
2019-08-23Disable DanglingSymlinkMove/Copy tests on TVOS (#336)Alexander Köplinger
symlink() doesn't work on TVOS devices.
2019-08-20Use the proper method for getting fully resolved temporary file paths (#332)Alexis Christoforides
This was a bug in the tests from mono/mono#15616 Fixes https://github.com/mono/mono/issues/16360
2019-07-30Allow copying/moving/replacing broken symlinksAlexis Christoforides
2019-05-27Exclude another pinvokeAlexander Köplinger
2019-05-27Remove Windows-specific p/invokes from tests (#288)Alexander Köplinger
They cause issues on iOS where all p/invokes need to be resolved.
2019-04-30Disable some more new System.IO tests on monodroidAlexis Christoforides
2019-04-30Fix copy/paste typosAlexis Christoforides
2019-04-30Disable some System.IO tests on monodroidAlexis Christoforides
2019-04-30Disable some System.IO tests on monodroidAlexis Christoforides
2019-02-01Using FUTIMENS instead of FUTIMES (#34271)Anirudh Agnihotry
* test added * rearranging order for if statements * reducing thread sleep time and reverting millisecond test change * adding comment * removing comment, adding tick equality check, failing if not able to create file with non-zero nano or milli second * correcting test for hfs system * NanoSeconds -> Nanoseconds, Millisec -> milliseconds HFs assert converted to false
2019-02-01Disable a testAlexis Christoforides
2019-02-01MilliSecond Granualrity added to Copy operation on unix (#30996)Anirudh Agnihotry
* test added * Test Modified * Adding Implementation * tabs removed * modifyingTest * Fixing build on HFS * Space around arithemetic operator
2018-12-13Merged with dotnet/release/2.2.Martin Baulig
2018-12-05Throw IOException if Dir.Move file onto existing filejbhensley
2018-12-05[corlib] Import FileSystemInfo and family from CoreFXAlexis Christoforides
2018-11-15Re-initialize DirectoryInfo.Name after a MoveTo() operationAlexis Christoforides
Fixes https://github.com/dotnet/corefx/issues/33490
2018-05-25Merge remote-tracking branch 'upstream/release/2.1' into 2.1-mergeMarek Safar
2018-05-02Port #29413 to release branchJeremy Kuhne
Enumerating strings should retain trailing separators (#29413) This is a regression introduced by the enumeration overhaul. We didn't have tests that covered trailing separators in the specified root directory when enumerating. They should be retained as is.
2018-04-22Merge remote-tracking branch 'upstream/release/2.1'Marek Safar
2018-04-11Accessing an accessible drive (#29010)Anirudh Agnihotry
2018-04-10Merge remote-tracking branch 'upstream/release/2.1' into 2.1-mergeMarek Safar
2018-04-03Existing Directory ReadOnlyVolume Disabled for alpine (#28783)Anirudh Agnihotry
2018-04-03Tests for Directory Exists (#28732)Anirudh Agnihotry
2018-04-02Merge remote-tracking branch 'upstream/release/2.1' into 2.1-mergeMarek Safar
2018-03-31Split OwnedMemory into MemoryManager and IMemoryOwner (#28640)Ahson Khan
* Update IRetainable, OwnedMemory, and MemoryHandle APIs * Split OwnedMemory into MemoryManager and IMemoryOwner * Update ReadOnlySequence, ArrayMemoryPool, and BufferSegment * Update System.Memory and System.IO.Pipeline tests * Temporarily skipping the failing Pipelines tests until impl is corrected. * Update the reference assembly to match implementation and cleanup * Update API compat baseline for UAPAOT and add GenFacadesIgnoreMissingTypes * Fix the System.Runtime ref * Add back the Pin methods to the uapaot api compat baseline * Clone the API compat baseline from uapaot and add it for uap as well. * Update BuildTools, CoreClr, CoreFx, CoreSetup, ProjectNTfs, ProjectNTfsTestILC to preview3-02630-01, preview3-26330-08, preview3-26330-06, preview3-26330-04, beta-26330-00, beta-26330-00, respectively * Fix pipelines tests and update the api compat baseline shim for uapaot * Add empty Unpin override to pipe pool test. * Fix the System.Net.Http Functional tests
2018-03-29Prevent CMake 2.8 tests failing for unused variable (causing millisec to be ↵Dan Moseley
dropped from stat calls) (#28573) * Prevent CMake 2.8 tests failing for unused variable * Make sterror_r test fail as it should * Reenable tests
2018-03-27Refactor FileSystem recursive directory tests (#28421)Anirudh Agnihotry
2018-03-23Fixed netfx System.IO.FileSystem.Tests fails on non-English Windows (#28313)Alexander Radchenko
2018-03-23Disabling test on alpine (#28401)Anirudh Agnihotry
* Disabling test on alpine * Alpine Detection added to platformDetection * ref and win updated
2018-03-23perf tests for create and delete directory (#28381)Anirudh Agnihotry
2018-03-23Fix File.ReadAllBytes{Async} for virtual file system files (#28388)Stephen Toub
Some file systems, like procfs, can return 0 for a file's length, even though it actually contains on-demand computed contents. This breaks File.ReadAllBytes{Async}, which currently assumes that a length of 0 means the file is empty. This commit fixes it by changing the assumption to mean that a length of 0 means we can't depend on the Length and instead need to read until EOF.
2018-03-22Disable Millisec test on Linux (#28345)Dan Moseley
* Disable Millisec test on Linux * Feedback
2018-03-21WIP: Enable TimesIncludeMillisecondPart on selected filesystems only (#28242)Jan Kotas
* Enable TimesIncludeMillisecondPart on selected filesystems only Use filesystem name to suppress the test failure * Make the test fail * Break out tests
2018-03-15Fixing NonBreakingSpace test on OSX using FSAssert (#28094)Anirudh Agnihotry
2018-03-13Fix unbounded stackalloc in System.IO.FileSystem (#28004)Jan Kotas
2018-03-12More FileSystem tests (#27955)Jeremy Kuhne
- Fix #27244 validation - Add more enumerable tests Fixes #27244
2018-03-11Add more alternate data stream tests (#27945)Jeremy Kuhne
2018-03-11Start adding alternate data stream tests (#27931)Jeremy Kuhne
* Start adding alternate data stream tests Also fill out ExampleTests. * Skip on NetFX
2018-03-10Test changes for System.IO.FileSystem (#27923)Jeremy Kuhne
* Test changes - Add new tests for more coverage on enumeration - Re-enable tests * Add missing assert
2018-03-08WhiteSpace and PrefixParent subdirectory names throw exception (#27810)Anirudh Agnihotry
2018-03-08Test for enumerateDirectories NonBreaking space (#27762)Anirudh Agnihotry
2018-03-08Dial back `\\?\ ` insertion (#27827)Jeremy Kuhne
Only premptively adding for FileSystemInfo if we end in period or space. Long path is taken care of later. Clean up code a little and add test for DirectoryInfo.Move.
2018-03-07Support trimmed paths in FileInfo (#27809)Jeremy Kuhne
* Support trimmed paths in FileInfo Some paths are not creatable in Windows without special syntax. Notably paths with trailing spaces and periods. As GetFullPath() (and GetFullPathName()) trim these we would lose the correct file name as we passed the path around. With the enumeration changes we now populate FileInfo correctly- this change allows the other methods to work when wrapped around such a path. * Tweak comments. Remove NotSupported and SecurityException from Exists as these are no longer thrown. Add a test fix I hadn't staged correctly.
2018-03-05enable failing tests due to paths (#27681)Anirudh Agnihotry
2018-03-01Stop FileSystem WriteAsync test from writing too much data to disk (#27387)William Godbe
* Stop FileSystem WriteAsync test from writing too much data to disk * Fix TotalBytesWritten * Move bytes written cap to inner loop * Fix do/while syntax, add cancellation token back * Remove token
2018-03-01Logging for TimesIncludeMillisecondPart test and reenable for Linux (#27559)Dan Moseley
* Logging for TimesIncludeMillisecondPart test * Enable test for Linux * Formatting
2018-02-28Fix a bug in TranslateWin32Expression (#27539)Jeremy Kuhne
Add test coverage.