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-01-06Merge branch master into dev/engJose Perez Rodriguez
2017-01-05Update LocalAppContext DisableCaching and XmlSchemaSet Tests to fix failure ↵Santiago Fernandez Madero
(#14778) * Update LocalAppContext DisableCaching and XmlSchemaSet Tests
2017-01-05Merge pull request #14863 from sepidehMS/FixTreeManipulationOuterloopFailsSepideh Khoshnood
Fix XLinqTests.TreeManipulation outerloop failures
2017-01-05Merge pull request #14852 from stephentoub/revert_sslstreamStephen Toub
Revert SslStream.WriteAsync, change SslStream to use innerStream.Read/WriteAsync
2017-01-05Fix Console Encoding test (#14862)Tarek Mahmoud Sayed
The test needed to handle the case when having encoding enabled to produce preamble bytes BOM (e.g. UTF8) calling Encoding.GetBytes doesn’t include the BOM while the console stream will include it. The fix is just handling the BOM when we'll have it.
2017-01-05Merge pull request #14861 from ianhays/fsw_debugIan Hays
Remove Debug Failures from FSW Win32
2017-01-04Change expected behavior for reported parameter namesStephen A. Imhoff
2017-01-04Merge pull request #14859 from mellinoe/vectortt-cleanupStephen Toub
Remove an unused using from Vector.tt/cs
2017-01-04Merge pull request #14834 from mellinoe/change-test-referencesEric Mellino
Change how test references are resolved.
2017-01-04Fix XLinqTests.TreeManipulation outerloop failuressepidehMS
2017-01-04Remove Debug Failures from FSW Win32Ian Hays
There are some Debug.Fail calls in the win32 FileSystemWatcher that can be hit in normal operation sometimes. We've already established a behavior for these scenarios (use null as the old/new names when they're not available), so we shouldn't be debug asserting that they're not possible.
2017-01-04Merge pull request #14858 from dotnet-bot/master-UpdateDependenciesStephen Toub
Update CoreClr to beta-24904-03 (master)
2017-01-04Rename RuntimeReferencedAssemblyNames to ReferenceFromRuntimeEric Mellino
2017-01-04Remove an unused using from Vector.tt/csEric Mellino
2017-01-04Merge pull request #14857 from stephentoub/disable_xml_testsStephen Toub
Disable several XLinq tests failing all outerloop runs
2017-01-04Fix XMLdoc for Vector<T> Inequality. (#14809)Gregory Bell
* Fix XMLdoc for Vector<T> Inequality. The != operator claims that it "Returns a value that indicates whether any single pair of elements in the specified vectors is equal." which is a copy-paste error from Vector.EqualsAny<T>(). * Moved changes to tt file and changed text.
2017-01-04Update CoreClr to beta-24904-03dotnet-bot
2017-01-04Disable several XLinq tests failing all outerloop runsStephen Toub
2017-01-04Merge pull request #14840 from dotnet-bot/master-UpdateDependenciesStephen Toub
Update CoreClr, CoreFx, ProjectNTfs to beta-24904-02, beta-24904-01, beta-24904-00, respectively (master)
2017-01-04Change SslStream to use Read/WriteAsync on inner streamStephen Toub
In .NET Core 1.x, SslStream's usage of Begin/EndRead/Write was actually using extension methods that just used TaskToApm.Begin/End with Read/WriteAsync. When the base Stream's Begin/EndRead/Write methods were added back, SslStream's usage of these methods started binding to the base methods, such that it was no longer using the inner stream's Read/WriteAsync. This change explicitly switches all of those calls (for both SslStream and NegotiateStream) to use Read/WriteAsync. A better solution is to actually add SslStream.Read/WriteAsync overrides that use async/await and tasks all the way down, rather than going back and forth between Tasks and APM, but that is a more complicated work item. This addressesses the immediate need (problems related to deadlocks on SslStream when read and writes are issued to run concurrently on the same stream) and can be undone or augmented subsequently when a better solution is available. This is at least as good performance-wise as what we had in .NET Core 1.x, and in some cases is a bit better, as we can avoid creating the IAsyncResult wrapper in some cases if the returned task is already completed.
2017-01-04Change expected behavior for reported parameter namesStephen A. Imhoff
2017-01-04Revert "SslStream WriteAsync"Stephen Toub
This reverts commit 6031c507a0ea912ede85ca9fc3b8afc9a0fe70f0.
2017-01-04[System.IO.Compression] Remove unused (duplicate) CompressionMode.csMarek Safar
2017-01-04Update CoreClr, CoreFx, ProjectNTfs to beta-24904-02, beta-24904-01, ↵dotnet-bot
beta-24904-00, respectively
2017-01-04Console Encoding code Cleanup (#14832)Tarek Mahmoud Sayed
The changes here are just a clean up for previous changes introduced the Console OS Encoding
2017-01-04Fill some gaps in S.L.Expression testing (#14464)Jon Hanna
* Fill some testing gaps related to array expressions. * Test TypeAs expressions between nullables. * Test fault and finally after many such blocks (catch regressions in a non-optimised path hit in this case).
2017-01-04Pass architecturegroup to build-managed (#14836)chcosta
2017-01-04Fix race condition in ↵Cesar Blum Silveira
SslStream_StreamToStream_WriteAsync_ReadAsync_Pending_Success (#14830) * Fix race condition in SslStream_StreamToStream_WriteAsync_ReadAsync_Pending_Success. * Address PR feedback.
2017-01-04Change how test references are resolved.Eric Mellino
* When NoTargetingPackReferences is set to 'true', then no references are added to any assemblies in the targeting pack. * Names in the RuntimeReferencedAssemblyNames item group are now used to add items into the ReferencePath group. Absolute paths of runtime assemblies are added to the list, and AssemblySearchPaths is no longer modified at all when runtime assemblies are referenced. * Fix up System.Diagnostics.Debug.Tests and System.Linq.Expressions.Tests based on the above changes. Linq.Expressions.Tests no longer references its own src project, which should fix some race conditions in the build.
2017-01-04Merge pull request #14604 from hughbe/lightweight-desktopStephen Toub
Support System.Reflection.Emit.ILGeneration tests on the full .NET Framework
2017-01-04Address PR feedback on HttpListener Unix. (#14827)Lakshmi Priya Sekar
* Enable HttpListener tests on Unix. * Remove duplicate resource strings. * Rename Unix impl to Managed, and fix license headers. * Use HttpKnownHeaderNames for Managed http header strings. * Return null instead of a random UriReferrer on Managed HttpListener.
2017-01-04Merge pull request #14537 from jamesqo/more-xml-docsStephen Toub
Add XML docs to some Linq iterators
2017-01-04Merge pull request #14603 from hughbe/ilgeneration-desktopStephen Toub
Support System.Reflection.Emit.ILGeneration tests on the full .NET Framework
2017-01-04Merge pull request #14602 from hughbe/refemit-desktopStephen Toub
Support System.Reflection.Emit tests on the full .NET Framework
2017-01-04Merge pull request #14733 from cakine/UnloadingProcessExitFxStephen Toub
Add test for order of raising AssemblyLoadContext.Unloading and AppDo…
2017-01-04Fix ServiceController native test service project.Eric Mellino
This project was not building correctly after recent changes. It now imports dir.targets, and is marked explicitly as a test assembly so that it does not get binplaced to the runtime or reference assembly folders.
2017-01-04Fix casing for native binaries (#14822)chcosta
* Fix casing for native binaries * Convert native bin dir to 'native' from 'Native'
2017-01-04Merge pull request #14803 from chunseoklee/armelEric Mellino
Use armel instead of arm-softfp
2017-01-04Add Configurations.props files for test projects, include tests in ↵Eric Mellino
build.proj (#14663) * [WIP]Created src\tests.proj which is mostly building all tests * Convert test project .builds to Configuration.props * Fix test paths in targetingpack.props, move test-runtime. * Move test-runtime under external. * Rename RuntimeDir->RuntimePath in targetingpacks.props and Xunit.Runtime.depproj. * Remove test-runtime project.json from the SupplementalTestData list in dir.targets. * Remove XUnit.Runtime.depproj from tests.proj * Convert test .builds files to Configuration.props. * Revert "Convert test project .builds to Configuration.props" This reverts commit 1efc4d9a02d1c2eced0f20a544abcbcd0092f40c. * Fix compilation error in System.Collections.Concurrent.Tests * Fix condition in System.Collections ref project * Fix two more Collections test project issues * Add Configuration.props for System.Collections ref * Fix TargetGroup conditions in System.Collections.Tests.csproj. * Fix compilation problems with NameResoltion.Pal.Tests. * Fix compilation errors in SqlClient Stress tests * Fix IO.Compression.Performance tests compilation * Fix compilation and configurations of System.Net.Http.Unit.Tests.csproj. * Fix compilation issues in System.Private.Xml.Linq tests * Disable XsltScenarios.Tests project, like it was before. * Fix missing DefineConstants for System.Linq ref project. * Fix compilation of System.Net.Primitives.Pal.Tests.csproj * Fix compilation of System.Net.Primitives.UnitTests.Tests.csproj * Fix compilation of System.Security.Cryptography.Cng.Tests.csproj. * Fix compilation of System.Net.Primitives reference project * Fix compilation of System.Net.Security ref project * Fix compilation of SYstem.Net.Security.Tests.csproj * Fix configuration of X509Certificates ref project * Fix compilation errors in System.Net.Http.Unit.Tests.csproj * Fix Common.Tests.csproj * Fix System.Diagnostics.Debug.Tests.csproj * Fix Microsoft.Win32.Registry.Tests.csproj * Add runtime.native.System.Data.SqlClient.sni to external project * Fix System.Diagnostics.TraceSource.Tests.csproj * Fix System.IO.Compression.Performance.Tests.csproj * Move supplemental test data into test-runtime/project.json * Fix System.IO.FileSystem.Watcher.Tests.csproj * Fix System.IO.FileSystem.Tests.csproj * Fix System.IO.Pipes.AccessControl.Tests.csproj * Fix System.IO.MemoryMappedFiles.Tests.csproj * Fix System.IO.Pipes.Tests.csproj * Fix System.Json.Tests.csproj * Add missing supplemental test data for net security tests * Fix resource names in System.Xml.XPath.XDocument.Tests.csproj * Fix Assembly.Location test case * Fix assembly loading paths in DefaultLoadContextTest.cs * Fix issues in System.Runtime.Loader.Tests.csproj * Fix RootNamespace in ResourceManager tests * Mark OpenSSL tests as unsupported on Windows * Fix RootNamespace in System.Xml.XPath.Tests.csproj * Fix RootNamespace in System.Xml.XPath.XmlDocument.Tests.csproj * Fix System.IO.Compression.Tests.csproj * Add missing Configurations.props files for System.Net projects * Fix compilation issues in WinHttpHandler tests * Add fixes and a workaround for Linq.Expressions tests * Add workaround for System.Runtime.Tests * Use extension methods explicitly in Ref.Emit tests * Hook up test projects into build * Fix build configuration of Crypto.Primitives for netcoreapp * Enable VB tests outside Windows * Enable Mail tests outside windows * Don't run Unsafe tests outside windows * Don't build Unsafe tests outside Windows * Don't build WebServer project outside of Windows. * Fix corerun path for Unix tests. * Fix casing of 'Native' directory in NETCoreApp private pkgproj * Remove runtime-specific stuff from Xunit.Runtime.depproj * Move tests into a separate project ('tests.msbuild') which isn't built in build.proj * Remove duplicate types from NameResolution.Pal tests * Skip tests in a project if there is no compatible configuration. * Include internal socket types only on Windows in NameResolution tests * Manually fix S.R.InteropServices configurations * Rename tests.msbuild -> tests.builds * Manually fix System.Text.Encoding.Tests.csproj configuration * Manually fix System.Threading.Tests configuration * Manually clean up System.Runtime.Tests.csproj * Fix System.IO.FileSystem.Tests configurations * Manually fix System.Globalization.Tests configurations * Manually fix System.IO.Pipes.Tests configurations * Manually fix System.IO.Compression.Tests configurations * Manually fix System.Runtime.Extensions.Tests configurations * Manually fix System.IO.MemoryMappedFiles.Tests configurations * Manually fix S.Diagnostics.Process.Tests configurations * Manually fix System.ComponentModel.TypeConverter.Tests configurations * Misc PR feedback. * Use HostRunnerName instead of HostRunner in Process tests * Fix configurations for S.ServiceProcess.ServiceController.Tests * Revert to using ConfigurationErrorMsg to check if tests should be skipped. Configuration still defaults to 'Debug' even if there is no valid configuration.
2017-01-04Merge pull request #14685 from hughbe/binary-dynamic-testStephen Toub
Add regression test for DynamicExpression in BinaryOperationBinder
2017-01-04Merge pull request #14812 from geoffkizer/getlasterrorGeoff Kizer
use SocketPal.GetLastSocketError instead of calling Marshal.GetLastWin32Error directly
2017-01-03Merge pull request #14774 from sepidehMS/AddAsyncXLinqLoadSaveSepideh Khoshnood
Add async XLinq document/element loading and saving
2017-01-03Update CoreClr, CoreFx to beta-24903-03, beta-24903-02, respectively (#14819)dotnet bot
2017-01-03Update CoreClr, CoreFx, ProjectNTfs to beta-24903-02, beta-24903-01, ↵dotnet-bot
beta-24903-00, respectively
2017-01-03use SocketPal.GetLastSocketError instead of calling ↵Geoff Kizer
Marshal.GetLastWin32Error directly
2017-01-03Use armel instead of arm-softfpchunseoklee
Signed-off-by: chunseoklee <chunseok.lee@samsung.com>
2017-01-03Update CoreClr to beta-24903-01dotnet-bot
2017-01-03Merge pull request #14796 from dotnet-bot/master-UpdateDependenciesStephen Toub
Update CoreClr, CoreFx to beta-24902-03, beta-24902-02, respectively (master)
2017-01-03Merge pull request #14795 from justinvp/tzi_serializedstring_testsStephen Toub
Add TimeZoneInfo.ToSerializedString/FromSerializedString tests
2017-01-03Add missing entries to System.Net.Http project.jsonStephen Toub