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
path: root/src
AgeCommit message (Collapse)Author
2017-04-25Update netfx baselinesEric St. John
2017-04-25Update project configurationsEric St. John
2017-04-25Replace netfx ifdefs in refs with IsPartialFacadeAssemblyEric St. John
Now that we can automatically generate the reference typeforwards from contracts I can eliminate the ifdef'ing I added with 45b4c71bff924245d8962035bd751d65c45bf31d.
2017-04-25Remove use of IsDesktopFacadeEric St. John
2017-04-21Fix System.Security.Cryptography.Pkcs failures on Uap/Aot (#18727)Atsushi Kanamori
2017-04-21Merge pull request #18714 from jkotas/dead-codeStephen Toub
Delete a few unnecessary files from Common
2017-04-21Delete a few unnecessary files from CommonJan Kotas
2017-04-21XmlTextAttribute test (#18665)Carol Wang
* XmlTextAttribute test * Use generic Assert.Throws method.
2017-04-21Fix building with only VS2017 installed. (#18700)Jeremy Kuhne
We weren't passing the right setting to CMAKE. Also fixes issue with current working directory getting changed during the build. Run.exe currently must be run with the current working directory set to the repo root. One part of this was the config.json file- which I've explicitly specified now. The other (as of yet unfixable) problem is that we specify the location of the binclash logger as a relative path. Afaik there currently is no way to make this happen with run.cmd without making this logger an explicit (as opposed to default) option. Could possibly extend run.exe's parsing to allow specifying environment variables or reference to other parameters... I haven't nailed down who is changing the working directory- while it appears to be a 2017 specific problem I can't guarantee that it isn't some other variable.
2017-04-21Identify suppressed-on-netfx tests with an issueJeremy Barton
2017-04-21Update apicompat baseline files (#18583)Wes Haggard
Started copying netstandars shims for netfx under ref\netfx
2017-04-21Merge pull request #18681 from davidsh/webclient_netfxDavid Shulman
Root cause WebClient test failures on NETFX
2017-04-21Merge pull request #18685 from krwq/signedxml-def-sha256Krzysztof Wicher
Update defaults of SignedXml to use SHA256
2017-04-21Disable all tests for M.W32.Registry on uap (#18648)Alex Perovich
* Disable all tests for M.W32.Registry on uap These tests all need to be disabled because the implementation does nothing but throw PlatformNotSupported on uap * Don't even try to run registry tests on uap
2017-04-21Get 13 more tests passing in System.Runtime.Tests.dll (#18686)Atsushi Kanamori
Every test using PlatformDetection for anything was failing due to a NullReferenceException in PlatformDetection's type initializer (due to Environment.GetEnvironmentVariable() returning null for everything on UWP.) Turn PlatformDetection's properties into non-latched properties to avoid this unnecessary failure multiplication. (I counted over 500 uses of PlatformDetection across the corefx test bed.)
2017-04-21Address PR feedbackDavid Shulman
2017-04-21Use Reference.DefaultDigestMethod instead of hard coded valueKrzysztof Wicher
2017-04-21Root cause WebClient test failures on NETFXDavid Shulman
Finished investigation failures on .NET Framework for WebClient. Added some new tests to clarify the open issues. Added new bugs #18674 and #18680. Fixes #17882.
2017-04-21update SignatureMethod to use SHA256Krzysztof Wicher
2017-04-21update DigestMethod to SHA256Krzysztof Wicher
2017-04-20Adding type-forwards for ValueTuple to desktop 4.7 (#18519)Julien Couvreur
2017-04-20Merge pull request #18650 from bartonjs/validate_derJeremy Barton
Validate the DER components of user-provided data
2017-04-20Merge pull request #18678 from mconnew/XmlSerializerPerfStephen Toub
Move XmlSerializer perf tests into own project with correct naming
2017-04-20Merge pull request #18679 from sepidehMS/DisableQuirkXmlTestOnNetFxStephen Toub
Disable Xml quirk test on NetFx
2017-04-20Issue #18572 Add ReadonlySpan CopyTo test (#18638)Mandar Sahasrabuddhe
* Issue #18572 Add ReadonlySpan CopyTo test * Issue #18572 Fixed missed use of ReadOnlySpan
2017-04-20Merge pull request #18651 from lmolkova/dev/PreciseTimeOnDesktopVance Morrison
Activity: Precise for StartTime and duration on .NET Desktop
2017-04-20Disable Xml quirk test on NetFxsepidehMS
2017-04-20Move XmlSerializer perf tests into own project with correct namingMatt Connew
2017-04-20review: initialize start timestamp and timeLiudmila Molkova
2017-04-20Merge pull request #18502 from lmolkova/dev/ActivityInHttp46Vance Morrison
Start Activity and inject headers in HttpHandlerDiagnosticListener on net46
2017-04-20Merge pull request #18673 from stephentoub/dns_desktopStephen Toub
Fix System.Net.NameResolution tests on desktop
2017-04-20Merge pull request #18672 from stephentoub/security_testsStephen Toub
Fix/disable several System.Net.Security tests on desktop
2017-04-20Fix System.Net.NameResolution tests on desktopStephen Toub
A bunch of the unit tests try to validate that sockets were correctly initialized. They do so with fakes that intercept the calls. But on desktop, the real methods were being used, bypassing that interception. I've fixed it by making the unit tests on desktop compile like core so as to use the fakes.
2017-04-20Fix/disable several System.Net.Security tests on desktopStephen Toub
- SslStream_StreamToStream_WriteAsync_ReadAsync_Pending_Success was hanging / timing out on desktop because it relied on Read/WriteAsync not going through the base Stream's Read/WriteAsync, which serializes the delegated calls to Begin/EndRead/Write. Desktop's implementation calls directly to Begin/EndRead/Write whereas in core (by design) we call Read/WriteAsync (which will in turn use Begin/EndRead/Write if the Async method wasn't overridden), but the VirtualNetworkStream wasn't overriding Begin/EndReadWrite to avoid the serialization, and since the test requires non-serialization, it hung. - SslStream_StreamToStream_FlushAsync_Propagated and NegotiateStream_StreamToStream_FlushAsync_Propagated both rely on FlushAsync being overridden, which it's not in desktop. - NegotiateStream_StreamToStream_Authentication_EmptyCredentials_Fails fails due to a known behavioral difference from desktop for which there's already an open issue.
2017-04-20Fix recently added KeepAlive test on desktopStephen Toub
The WinHTTP implementation sends Connection: "keep-alive", the desktop implementation does not. Just change the test to validate whether Connection: "close" is sent or not.
2017-04-20Another 556 System.Runtime.Test failures down. (#18618)Atsushi Kanamori
No more "Multidimensional arrays of rank 1 are not supported..."
2017-04-20Merge pull request #18658 from hseok-oh/fix_18601Stephen Toub
Modify System.Numerics.Vectors unittest
2017-04-20Fix typoHyeongseok Oh
2017-04-20Merge pull request #18627 from stephentoub/defaultcreds_unixStephen Toub
Add support for UseDefaultCredentials to CurlHandler
2017-04-20Add test for failfast in event of corrupted state exception. Add test… ↵Rahul Kumar
(#18622) * Add test for failfast in event of corrupted state exception. Add test for Assembly.Load by AssemblyName when AssemblyName.CodeBase property is set * update * update
2017-04-20Use precise StartTime and duration on .NET DesktopLiudmila Molkova
2017-04-20XmlSerializer to Support XmlMembersMapping via Reflection (#18238)Shin Mao
* Fixed basic XmlMembersMapping tests. * Add test for HasWrapperElement=true. * Added tests for types having SpecifiedField. Fixed wrting types having SpecifiedField. * Enabled MembersMapping with SpecifiedField. Refactor ReflectionXmlSerializationReader. * Enabled using XmlMembersMapping with arrays. * Removed Unneeded Param: parentMapping. * Removed unused param: arrayName * Renamed variable: parent to container. * Modified the test helper: RoundTripWithXmlMembersMapping * Support Xmlns member. * Support XmlMembersMapping with XmlAnyAttribute. * Test XmlMembersMapping_Member_With_XmlAnyAttribute_Specified* * Support XmlMembersMapping with ChoiceIdentifier. * Make XmlSerializer.FromMappings Use Reflection for Soap. * Support Soap XmlMembersMapping. * Fix rebase conflict. * XmlMembersMapping_Soap_HasWrapperElement * XmlMembersMapping_Soap_MemberSpecified_True * XmlMembersMapping Soap HasWrapperElement Validate * Added a few tests. XmlMembersMapping_MultipleMembers XmlMembersMapping_MultipleMembers_IsReturnValue XmlMembersMapping_Soap_MultipleMembers_IsReturnValue * Replaced two Debug.Assert with exceptions. * XmlMembersMapping_MultipleMembers_XmlAnyElement * Some cleanup. * Fixed some PNSE, and added tests. * Xml_Soap_MyCollection * Fixed a bug with ReadOnly collection using Soap. * Add tests for nullables. * Clean up. Fix styles. * Fixed merge conflicts * Changes based on mconnew's feedback.
2017-04-20Validate the DER components of user-provided dataJeremy Barton
The parameters value for the PublicKey and the generator's SignatureAlgorithm both are supposed to be DER-encoded; so validate that claim. For the most part this isn't necessary, since rehydrating the signed cert is going to fail to parse the certificate anyways; but being defensive is good.
2017-04-20Isolate environment variable theory tests. (#18625)Jeremy Kuhne
2017-04-20Do not send timestamp in the Start/Stop event payloadLiudmila Molkova
2017-04-20SerialPort: Clear fAbortOnError when port opens (#17662)Will Dean
* Added failing test for fAbortOnError not cleared Issue #17396 * Ensure fAbortOnError is clear when opening port
2017-04-20Start Activity and inject headers in HttpHAndlerDiagnosticListener on Net46Liudmila Molkova
2017-04-20Merge pull request #18619 from stephentoub/file_move_fixStephen Toub
Fix UnixFileSystem.MoveFile on macOS when just changing file casing
2017-04-20Remove unneeded property (#18641)Alex Perovich
This property is causing many test failures. The wrong assembly was being included in the ILC input folder
2017-04-20Fix unix time (#18640)Santiago Fernandez Madero
* Change Unix creation time to min(ctime, mtime)