summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2018-08-13Disable System.Linq.Expressions.Tests against #19457Bruce Forstall1-0/+1
2018-08-13Remove unused local from List<T>.RemoveRange (dotnet/corefx#31727)Robin Sue1-1/+0
`int i` appears to be unused so i removed it. Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
2018-08-12non shared changes and feedback addressedAnipik3-13/+23
Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
2018-08-12Fix a couple of apartment state issues (#19384)Koundinya Veluri5-12/+28
* Fix a couple of apartment state issues Fix for https://github.com/dotnet/coreclr/issues/17822 - The apartment state now defaults to MTA for the main thread along with a CoInitialize - Calling `Thread.SetApartmentState` with STA now fails as expected (different behavior from previous netcore, same behavior as netfx) Fix for https://github.com/dotnet/coreclr/issues/17787 - `WaitHandle.WaitAll` for multiple handles is not supported on an STA thread due to issues described in https://github.com/dotnet/coreclr/issues/17787#issuecomment-385117537 - It now throws `NotSupportedException` as expected (different behavior from previous netcore, same behavior as netfx) Fix for https://github.com/dotnet/coreclr/issues/19225 * Temporarily exclude invalid CoreFX test
2018-08-12Create Microsoft.IO.Redist (dotnet/corefx#31679)Jeremy Kuhne7-36/+69
* Create Microsoft.Internal.IO Includes all of Path, Directory, *Info, etc. from System.IO with targets of NetFX 4.6.1 and NetCore 2.1. * Tweaks / minor fixes * Remove netstandard build. * Add package Update to build for 4.7.2 only * Rename folder to prepare for project rename * Change the name to Microsoft.IO.Redist * Namespace tweaks * Use open key, tweak references * More tweaks on feedback Also grab latest build tools for 4.7.x RIDs Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
2018-08-12Silence WinRT type assert in crossgen (#19442)Simon Nattress1-1/+0
Disable type loader assert that fires when resolving a type from a WinMD. Instead, compilation should fail gracefully, or at runtime a type load exception will be thrown.
2018-08-11[local gc] disable feature redhawk (#17769)David Mason11-55/+30
2018-08-11Make RuntimeType sealed and deleted support for introspection only loads ↵Jan Kotas67-867/+182
(#19427) - Sealed Runtime makes `is RuntimeType` and similar checks faster. These checks are fairly common in reflection. - Delete support for introspection only loads from the runtime. We do not plan to use in .NET Core. The support for introspection loads inherited from RuntimeType and thus it is incompatible with sealed RuntimeType.
2018-08-11moved to shared (#19419)Anirudh Agnihotry6-18/+27
2018-08-10Moved SpinLock.cs to shared (#19391)Anirudh Agnihotry3-60/+60
* m removed from names, spaces after \\ and braces added * Moved to shared
2018-08-10Don't early terminate on null for 64bit NR HashCode (#19331)Ben Adams3-45/+28
* Don't early terminate on null for 64bit NR HashCode * Improved GetNonRandomizedHashCode * Update message on GetNonRandomizedHashCode * Consume null terminator rather than special case odd lengths
2018-08-10Merge pull request #19434 from BruceForstall/DisableR2rDumpTest2Bruce Forstall1-0/+5
Disable R2RDumpTest for JIT stress modes
2018-08-10Disable R2RDumpTest for JIT stress modesBruce Forstall1-0/+5
2018-08-10Merge pull request #19433 from BruceForstall/UpdateTriggerPhrasesBruce Forstall1-362/+746
Update existing trigger phrases documentation
2018-08-10Update existing trigger phrases documentationBruce Forstall1-362/+746
2018-08-10CORDbgSetInstruction: clear thumb bit of the address before flushing icache ↵Konstantin Baladurin1-1/+1
(#19409) We should clear thumb bit of the address before flushing icache otherwise we may not flush the cache for the first byte of the instruction.
2018-08-10Moved to shared (#19399)Anirudh Agnihotry3-122/+92
2018-08-10update order of locks so jitstress is unblocked (#19401)David Mason2-174/+174
2018-08-10Merge pull request #19344 from adityamandaleeka/aa64_vm_callconv_changesAditya Mandaleeka14-40/+134
CallDescr/TransitionBlock changes for ARM64 calling convention
2018-08-10Add SoA raytracer as a CQ test for Intel hardware intrinsicFei Peng22-0/+1399
2018-08-10Merge pull request #19414 from BruceForstall/ReduceCorefxInnerloopTestingBruce Forstall1-2/+7
Reduce the number of innerloop CoreFX jobs
2018-08-10Reduce the number of innerloop CoreFX jobsBruce Forstall1-2/+7
1. Stop doing any OSX CoreFX jobs; they're too unreliable. 2. Stop running Debug jobs.
2018-08-10Merge pull request #19387 from dotnetrt/parallel-test-buildBruce Forstall1-1/+1
Reenable parallel msbuild execution - 2x faster test build
2018-08-10Align the Contents of EventPipeBuffers (#19375)Brian Robbins3-9/+27
2018-08-10Updating the ilproj-sdk to also copy native dependencies from ↵Tanner Gooding1-0/+3
Microsoft.NETCore.JIT
2018-08-09Update DynamicHelper for Unix to match Win.Aditya Mandaleeka2-1/+2
2018-08-09Merge pull request #19385 from BruceForstall/WhichCoreFxCommitBruce Forstall1-0/+9
Print out the checked out commit hash
2018-08-09Adding the Avx.MaskStore testsTanner Gooding12-0/+2086
2018-08-09Implementing the Avx.MaskStore intrinsicsTanner Gooding7-20/+118
2018-08-09Reenable parallel msbuild execution - 2x faster test buildJacek Blaszczynski1-1/+1
2018-08-09Print out the checked out commit hashBruce Forstall1-0/+9
This is useful to see exactly which version of CoreFX you are testing against.
2018-08-09Updating init-tools to be inline with the CoreFX copyTanner Gooding1-0/+6
2018-08-09Update CheckProjects to support `DebugType=Embedded` for RelType projectsTanner Gooding1-1/+2
2018-08-09Updating the x86 HWIntrinsic tests to include embedded pdbsTanner Gooding379-379/+379
2018-08-09Merge pull request #19350 from dotnet/dev/unix_test_workflowBruce Forstall1-407/+237
Simplify PR trigger creation; fix related bugs
2018-08-09Merge pull request #19382 from BruceForstall/FixSwitchBruce Forstall1-1/+2
Fix `--` application to managed tests build command-line
2018-08-09Fix `--` application to managed tests build comamnd-lineBruce Forstall1-1/+2
2018-08-08Change CoreLib native image to be R2R by default on all platforms (#19359)Jan Kotas1-16/+5
* Change CoreLib native image to be R2R by default on all platforms * Delete unused argument
2018-08-08Updating init-tools.cmd to pass through PACKAGES_DIRTanner Gooding1-8/+8
2018-08-08Update BuildTools, CoreSetup to preview1-03108-01, preview1-26808-05, ↵dotnet-maestro-bot2-5/+5
respectively
2018-08-08Move methodbody and exceptionHandlingClause to shared (#19364)Anirudh Agnihotry16-210/+246
* Changing names and making runtime files * Movel methodbody and exceptionHandlingClause to shared * Fixing build error
2018-08-08Merge pull request #19363 from nattress/crossgen_skip_windowsruntimeBruce Forstall4-0/+4
Skip Crossgen of S.R.WindowsRuntime.dll
2018-08-08Merge pull request #19367 from BruceForstall/RestorePassThroughArgBruce Forstall1-6/+8
Restore handling of __PassThroughArg for `--`
2018-08-08Fix R2R DynamicHelper to use the correct offset to x0 reg.Aditya Mandaleeka2-3/+6
2018-08-08ReNaming and rearranging the variables to reduce the diff (#19338)Anirudh Agnihotry3-176/+133
* Names changes in managed side and native side * name changes in native side * Removing serialization field * lower case corrected
2018-08-08Restore handling of __PassThroughArg for `--`Bruce Forstall1-6/+8
2018-08-08Merge pull request #19275 from dotnetrt/test-warnings-msbuildBruce Forstall2106-8311/+7338
build-test - fix ~ 2.1k MSBuild warnings due to bad framework and bad project references
2018-08-08JIT: update lvaGrabTemp for new minopts/debug ref counting approach (#19351)Andy Ayers1-5/+14
If the jit has started normal ref counting and is in minopts or debug, set all new temps to be implicitly referenced by default. Closes #19346.
2018-08-08Skip Crossgen of S.R.WindowsRuntime.dllSimon Nattress4-0/+4
System.Runtime.WindowsRuntime contains assembly refs to Windows platform WinMD types which are not available on Unix and required to crossgen the assembly.
2018-08-08Update BuildTools, CoreClr, CoreFx, CoreSetup, PgoData to preview1-03107-02, ↵dotnet-maestro-bot3-13/+13
preview1-26808-04, preview1-26807-04, preview1-26807-04, master-20180808-0056, respectively (#19329)