Stephen Toub [Thu, 21 Nov 2019 03:26:30 +0000 (22:26 -0500)]
Disable TestZeroTimeout test
Fadi Hanna [Thu, 21 Nov 2019 03:09:43 +0000 (19:09 -0800)]
Use precompiled PInvoke stubs from R2R image without the shared IL stub (#101)
* Use precompiled PInvoke stubs from R2R image without a shared IL stub
This is only for images compiled with crossgen2.
Changes include some refactoring work around the signature parsing to compute marshalling requirements. We had two separate implementations after pulling the PInvoke work from the single-exe branch. Consolidated into one implementation.
David Wrighton [Thu, 21 Nov 2019 02:59:03 +0000 (18:59 -0800)]
Implement instantiating and unboxing through portable stublinker code… (#106)
* Implement instantiating and unboxing through portable stublinker code
- Handle only the cases with register to register moves
- Shares abi processing logic with delegate shuffle thunk creation
- Architecture specific logic is relatively simple
- Do not permit use of HELPERREG in computed instantiating stubs
- Fix GetArgLoc such that it works on all architectures and OS combinations
Add a JIT stress test case for testing all of the various combinations
- Use the same calling convention test architecture that was used as part of tail call work
Rename secure delegates to wrapper delegates
- Secure delegates are no longer a feature of the runtime
- But the wrapper delegate lives on as a workaround for a weird detail of the ARM32 abi
Vladimir Sadov [Thu, 21 Nov 2019 02:50:56 +0000 (18:50 -0800)]
Merge pull request #158 from VSadov/volFloat
fix volatile float/double on win-arm64 (make sure compiler does not do numeric casts)
Maryam Ariyan [Thu, 21 Nov 2019 00:58:03 +0000 (16:58 -0800)]
Merge pull request #145 from maryamariyan/area-owners
Move combined area owners to issue-guide
vsadov [Wed, 20 Nov 2019 22:23:35 +0000 (14:23 -0800)]
fix volatile float/double on win-arm64 (make sure compiler does not do numeric casts)
Stephen Toub [Wed, 20 Nov 2019 21:06:32 +0000 (16:06 -0500)]
Fix HashSet.Remove to use provided comparer (#154)
Egor Chesakov [Wed, 20 Nov 2019 20:50:52 +0000 (12:50 -0800)]
Use git bundles (#132)
Jarret Shook [Wed, 20 Nov 2019 20:49:31 +0000 (12:49 -0800)]
Use artifacts dir for workload directory (#151)
Maryam Ariyan [Wed, 20 Nov 2019 20:26:11 +0000 (12:26 -0800)]
Remove old note
Eirik Tsarpalis [Wed, 20 Nov 2019 19:31:53 +0000 (19:31 +0000)]
Merge pull request #152 from dotnet/dockerignore-do-not-ignore-git
.dockerignore: remove .git from blacklist
Eric StJohn [Wed, 20 Nov 2019 18:50:18 +0000 (10:50 -0800)]
Merge pull request #136 from ericstj/ericstj-buildVSbootstrapCLI
Use SDK from bootstrapped CLI rather than testhost
Santiago Fernandez Madero [Wed, 20 Nov 2019 18:49:29 +0000 (10:49 -0800)]
Move platform-matrix to common and add an extra common layer for all jobs to define common variables (#120)
* Add an extra common layer for all jobs to define common variables
* Move platform-matrix.yml to a common location
* PR Feedback
Eirik Tsarpalis [Wed, 20 Nov 2019 18:27:18 +0000 (18:27 +0000)]
.dockerignore: do not ignore .git
Eirik Tsarpalis [Wed, 20 Nov 2019 16:57:10 +0000 (16:57 +0000)]
Merge pull request #148 from eiriktsarpalis/update-dockerignore
Update .dockerignore to match .gitignore
Eirik Tsarpalis [Wed, 20 Nov 2019 16:37:46 +0000 (16:37 +0000)]
Update .dockerignore to match .gitignore
Maryam Ariyan [Wed, 20 Nov 2019 11:41:02 +0000 (03:41 -0800)]
update issue-guide
Maryam Ariyan [Wed, 20 Nov 2019 10:35:17 +0000 (02:35 -0800)]
Add remaining Description info from issue-guide
Maryam Ariyan [Wed, 20 Nov 2019 10:06:55 +0000 (02:06 -0800)]
Add Description column
Maryam Ariyan [Wed, 20 Nov 2019 09:54:43 +0000 (01:54 -0800)]
Add combined area owners (#144)
* Add combined area owners
Davis Goodin [Wed, 20 Nov 2019 08:54:28 +0000 (02:54 -0600)]
Set installer tasks proj to AnyCPU for output path (#135)
Jarret Shook [Wed, 20 Nov 2019 08:49:58 +0000 (00:49 -0800)]
Fix path in crossgen comparison job (#138)
Eric StJohn [Tue, 19 Nov 2019 22:57:54 +0000 (14:57 -0800)]
Use SDK from bootstrapped CLI rather than testhost
Port https://github.com/dotnet/corefx/commit/
dd2ad4367bc4e070f3e8ca81ca6421db5733e731
This also removes copying the SDK to the testhost directory
since that is no longer needed.
Jarret Shook [Tue, 19 Nov 2019 21:17:29 +0000 (13:17 -0800)]
Disable test based on #129 (#130)
**NO_CI**
Santiago Fernandez Madero [Tue, 19 Nov 2019 21:10:40 +0000 (13:10 -0800)]
Fix coreclr release build on windows to not use unknown switch (#128)
Jarret Shook [Tue, 19 Nov 2019 20:54:56 +0000 (12:54 -0800)]
Disable tests based on https://github.com/dotnet/runtime/issues/84 (#85)
* Disable tests based on https://github.com/dotnet/runtime/issues/84
* Add missing tests
Egor Chesakov [Tue, 19 Nov 2019 17:44:37 +0000 (09:44 -0800)]
Implement Crc32 Isa on Arm64 (#117)
* Define Crc32 intrinsics in jit/hwintrinsiclistarm64.h
* Add Crc32 instructions in jit/emitarm64.cpp jit/instrsarm64.h
* Add entry to InstructionSet enum corresponding to Crc32 64-bit Isa in jit/instr.h
* Implement Crc32 and Crc32_Arm64 instruction sets in jit/hwintrinsicarm64.cpp
* Port ScalarBinOpTest.template to Arm in src/coreclr/tests/src/JIT/HardwareIntrinsics/Arm/Shared/ScalarBinOpTest.template
* Add Crc32 ComputeCrc32 tests in tests\src\JIT\HardwareIntrinsics\Arm
* Implement ComputeCrc32 in CodeGen::genSpecialIntrinsic in jit/hwintrinsiccodegenarm64.cpp
* Implement ComputeCrc32 in Compiler::impSpecialIntrinsic in jit/hwintrinsicarm64.cpp
* Make LeadingZeroCount and LeadingSignCount as HW_Flag_BaseTypeFromFirstArg in jit/hwintrinsiclistarm64.h
Carlos Sanchez Lopez [Tue, 19 Nov 2019 17:37:42 +0000 (09:37 -0800)]
Merge pull request #111 from carlossanlop/AnonymousPipeServerStreamAcl
Add AnonymousPipeServerStream method that takes an ACL
The original corefx PR was already signed off, but the CI did not finish on time before the 5pm deadline: dotnet/corefx#42392
Approved API proposal: dotnet/corefx#41657
We don't currently have a way to create a pipe with a given ACL in .NET Core. We can modify the ACL, but it would be more secure to have the proper ACL on the pipe from the start.
This PR adds a new static class and method that can create an AnonymousPipeServerStream taking a PipeSecurity object, reusing code that can already perform this task.
Viktor Hofer [Tue, 19 Nov 2019 16:37:12 +0000 (17:37 +0100)]
Fix race in installer tasks build (#122)
Eirik Tsarpalis [Tue, 19 Nov 2019 16:10:10 +0000 (16:10 +0000)]
Merge pull request #125 from dotnet/eirik/fix-httpstress
HttpStress: Fix windows stress runs
Eirik Tsarpalis [Tue, 19 Nov 2019 14:34:08 +0000 (14:34 +0000)]
httpstress: fix load-corefx-testhost.ps1
dotnet-maestro[bot] [Tue, 19 Nov 2019 10:12:54 +0000 (11:12 +0100)]
[master] Update dependencies from dotnet/standard (#105)
* Update dependencies from https://github.com/dotnet/standard build
20191114.1
- NETStandard.Library - 2.2.0-prerelease.19564.1
* Update stable versions for packages
Tomáš Rylek [Mon, 18 Nov 2019 23:55:22 +0000 (00:55 +0100)]
Remove duplicate job.yml (#86)
To simplify repo consolidation I temporarily kept a copy of the
job.yml file under eng/pipelines/coreclr/templates. Now that we
no longer need to maintain compatible YAML code across
non-consolidated CoreCLR vs. consolidated runtime, we can finally
remove this duplication.
Thanks
Tomas
Dan Moseley [Mon, 18 Nov 2019 23:54:04 +0000 (15:54 -0800)]
Merge pull request #113 from danmosemsft/readme1
Update readme
Viktor Hofer [Mon, 18 Nov 2019 23:50:26 +0000 (00:50 +0100)]
Use Server Windows queues for 19H1 (#107)
danmosemsft [Mon, 18 Nov 2019 22:53:09 +0000 (14:53 -0800)]
move links up
danmosemsft [Mon, 18 Nov 2019 22:50:06 +0000 (14:50 -0800)]
dev guide
danmosemsft [Mon, 18 Nov 2019 22:47:11 +0000 (14:47 -0800)]
local links
danmosemsft [Mon, 18 Nov 2019 22:43:19 +0000 (14:43 -0800)]
update
danmosemsft [Mon, 18 Nov 2019 22:37:58 +0000 (14:37 -0800)]
Update readme
carlossanlop [Mon, 18 Nov 2019 21:51:48 +0000 (13:51 -0800)]
Add AnonymousPipeServerStream method that takes an ACL
Santiago Fernandez Madero [Mon, 18 Nov 2019 19:09:31 +0000 (11:09 -0800)]
Allow passing down an upper case subset category (#104)
dotnet-maestro[bot] [Mon, 18 Nov 2019 19:07:12 +0000 (20:07 +0100)]
[master] Update dependencies from dotnet/arcade mono/linker (#91)
* Update dependencies from https://github.com/dotnet/arcade build
20191117.2
- Microsoft.DotNet.XUnitExtensions - 5.0.0-beta.19567.2
- Microsoft.DotNet.XUnitConsoleRunner - 2.5.1-beta.19567.2
- Microsoft.DotNet.VersionTools.Tasks - 5.0.0-beta.19567.2
- Microsoft.DotNet.ApiCompat - 5.0.0-beta.19567.2
- Microsoft.DotNet.Arcade.Sdk - 5.0.0-beta.19567.2
- Microsoft.DotNet.Build.Tasks.Configuration - 5.0.0-beta.19567.2
- Microsoft.DotNet.Build.Tasks.Feed - 5.0.0-beta.19567.2
- Microsoft.DotNet.Build.Tasks.Packaging - 5.0.0-beta.19567.2
- Microsoft.DotNet.Build.Tasks.SharedFramework.Sdk - 5.0.0-beta.19567.2
- Microsoft.DotNet.CodeAnalysis - 5.0.0-beta.19567.2
- Microsoft.DotNet.CoreFxTesting - 5.0.0-beta.19567.2
- Microsoft.DotNet.GenAPI - 5.0.0-beta.19567.2
- Microsoft.DotNet.Helix.Sdk - 5.0.0-beta.19567.2
- Microsoft.DotNet.RemoteExecutor - 5.0.0-beta.19567.2
- Microsoft.DotNet.GenFacades - 5.0.0-beta.19567.2
* Update dependencies from https://github.com/mono/linker build
20191117.1
- ILLink.Tasks - 0.1.6-prerelease.19567.1
Viktor Hofer [Mon, 18 Nov 2019 17:47:58 +0000 (18:47 +0100)]
Add -vs switch to build.ps1 for libraries (#102)
* Add -vs switch to build.ps1 for libraries
* Update build.ps1
Jarret Shook [Mon, 18 Nov 2019 17:21:36 +0000 (09:21 -0800)]
Update the Coreclr docs (#83)
* coreclr docs overhaul
* Address feedback
Eirik Tsarpalis [Mon, 18 Nov 2019 15:41:36 +0000 (15:41 +0000)]
Add windows support for build.sh (#94)
Eirik Tsarpalis [Mon, 18 Nov 2019 12:48:22 +0000 (12:48 +0000)]
Update windows-requirements.md (#90)
Viktor Hofer [Mon, 18 Nov 2019 12:14:50 +0000 (13:14 +0100)]
Update REAMDE.md build badge (#88)
Viktor Hofer [Mon, 18 Nov 2019 12:06:29 +0000 (13:06 +0100)]
Update windows-requirements.md (#87)
Anton Lapounov [Mon, 18 Nov 2019 10:55:05 +0000 (02:55 -0800)]
Move helixpublishwitharcade.proj one directory higher (#69)
* Move to armarch queue
* Address pr feedback
* Remove open for internal queues
* Move helixpublishwitharcade.proj one directory higher
jashook [Thu, 14 Nov 2019 22:26:46 +0000 (14:26 -0800)]
Use artifacts layout in place of bin dir
Tomáš Rylek [Sun, 17 Nov 2019 20:55:56 +0000 (21:55 +0100)]
Add convenience scripts coreclr.sh / cmd for local user workflow (#81)
Stephen Toub [Sun, 17 Nov 2019 20:18:47 +0000 (15:18 -0500)]
Move and t.CoreSetup.sln (#82)
Paths were wrong, and it shouldn't be in the repo root.
Viktor Hofer [Sat, 16 Nov 2019 19:04:44 +0000 (20:04 +0100)]
Use xunit runner fork in coreclr (#77)
dotnet-maestro[bot] [Sat, 16 Nov 2019 15:51:48 +0000 (16:51 +0100)]
[master] Update dependencies from dotnet/arcade mono/linker (#74)
* Update dependencies from https://github.com/dotnet/arcade build
20191115.1
- Microsoft.DotNet.XUnitExtensions - 5.0.0-beta.19565.1
- Microsoft.DotNet.XUnitConsoleRunner - 2.5.1-beta.19565.1
- Microsoft.DotNet.VersionTools.Tasks - 5.0.0-beta.19565.1
- Microsoft.DotNet.ApiCompat - 5.0.0-beta.19565.1
- Microsoft.DotNet.Arcade.Sdk - 5.0.0-beta.19565.1
- Microsoft.DotNet.Build.Tasks.Configuration - 5.0.0-beta.19565.1
- Microsoft.DotNet.Build.Tasks.Feed - 5.0.0-beta.19565.1
- Microsoft.DotNet.Build.Tasks.Packaging - 5.0.0-beta.19565.1
- Microsoft.DotNet.Build.Tasks.SharedFramework.Sdk - 5.0.0-beta.19565.1
- Microsoft.DotNet.CodeAnalysis - 5.0.0-beta.19565.1
- Microsoft.DotNet.CoreFxTesting - 5.0.0-beta.19565.1
- Microsoft.DotNet.GenAPI - 5.0.0-beta.19565.1
- Microsoft.DotNet.Helix.Sdk - 5.0.0-beta.19565.1
- Microsoft.DotNet.RemoteExecutor - 5.0.0-beta.19565.1
- Microsoft.DotNet.GenFacades - 5.0.0-beta.19565.1
* Update dependencies from https://github.com/mono/linker build
20191115.1
- ILLink.Tasks - 0.1.6-prerelease.19565.1
Santiago Fernandez Madero [Sat, 16 Nov 2019 13:33:25 +0000 (05:33 -0800)]
Fix system IO ports native dependency for package testing (#68)
jashook [Fri, 15 Nov 2019 05:13:14 +0000 (21:13 -0800)]
Remove open for internal queues
jashook [Fri, 15 Nov 2019 05:11:52 +0000 (21:11 -0800)]
Address pr feedback
jashook [Thu, 14 Nov 2019 23:55:03 +0000 (15:55 -0800)]
Move to armarch queue
Cheena Malhotra [Fri, 15 Nov 2019 19:05:54 +0000 (11:05 -0800)]
Fixes SqlClient behavior of sending Attention signal for successful Bulk Copy operation (#61)
Cheena Malhotra [Fri, 15 Nov 2019 19:05:09 +0000 (11:05 -0800)]
Fix Connection Resiliency in SqlClient (#62)
dotnet-maestro[bot] [Fri, 15 Nov 2019 18:17:11 +0000 (19:17 +0100)]
[master] Update dependencies from dotnet/arcade mono/linker (#56)
* Update dependencies from https://github.com/dotnet/arcade build
20191114.6
- Microsoft.DotNet.XUnitExtensions - 5.0.0-beta.19564.6
- Microsoft.DotNet.XUnitConsoleRunner - 2.5.1-beta.19564.6
- Microsoft.DotNet.VersionTools.Tasks - 5.0.0-beta.19564.6
- Microsoft.DotNet.ApiCompat - 5.0.0-beta.19564.6
- Microsoft.DotNet.Arcade.Sdk - 5.0.0-beta.19564.6
- Microsoft.DotNet.Build.Tasks.Configuration - 5.0.0-beta.19564.6
- Microsoft.DotNet.Build.Tasks.Feed - 5.0.0-beta.19564.6
- Microsoft.DotNet.Build.Tasks.Packaging - 5.0.0-beta.19564.6
- Microsoft.DotNet.Build.Tasks.SharedFramework.Sdk - 5.0.0-beta.19564.6
- Microsoft.DotNet.CodeAnalysis - 5.0.0-beta.19564.6
- Microsoft.DotNet.CoreFxTesting - 5.0.0-beta.19564.6
- Microsoft.DotNet.GenAPI - 5.0.0-beta.19564.6
- Microsoft.DotNet.Helix.Sdk - 5.0.0-beta.19564.6
- Microsoft.DotNet.RemoteExecutor - 5.0.0-beta.19564.6
- Microsoft.DotNet.GenFacades - 5.0.0-beta.19564.6
* Update dependencies from https://github.com/mono/linker build
20191114.1
- ILLink.Tasks - 0.1.6-prerelease.19564.1
Stephen Toub [Fri, 15 Nov 2019 18:15:37 +0000 (13:15 -0500)]
Fix up a bunch of repo references in docs (#60)
This is just prelminary, as all of the docs need to be rationalized with each other now that they're all in the same repo. But it at least keeps most of the links working for now.
Stephen Toub [Fri, 15 Nov 2019 18:13:31 +0000 (13:13 -0500)]
Fix location of CodeAnalysis.ruleset (#59)
dotnet-maestro[bot] [Fri, 15 Nov 2019 02:28:43 +0000 (03:28 +0100)]
Update dependencies from https://github.com/dotnet/arcade build
20191114.2 (#50)
- Microsoft.DotNet.XUnitExtensions - 5.0.0-beta.19564.2
- Microsoft.DotNet.XUnitConsoleRunner - 2.5.1-beta.19564.2
- Microsoft.DotNet.VersionTools.Tasks - 5.0.0-beta.19564.2
- Microsoft.DotNet.ApiCompat - 5.0.0-beta.19564.2
- Microsoft.DotNet.Arcade.Sdk - 5.0.0-beta.19564.2
- Microsoft.DotNet.Build.Tasks.Configuration - 5.0.0-beta.19564.2
- Microsoft.DotNet.Build.Tasks.Feed - 5.0.0-beta.19564.2
- Microsoft.DotNet.Build.Tasks.Packaging - 5.0.0-beta.19564.2
- Microsoft.DotNet.Build.Tasks.SharedFramework.Sdk - 5.0.0-beta.19564.2
- Microsoft.DotNet.CodeAnalysis - 5.0.0-beta.19564.2
- Microsoft.DotNet.CoreFxTesting - 5.0.0-beta.19564.2
- Microsoft.DotNet.GenAPI - 5.0.0-beta.19564.2
- Microsoft.DotNet.Helix.Sdk - 5.0.0-beta.19564.2
- Microsoft.DotNet.RemoteExecutor - 5.0.0-beta.19564.2
- Microsoft.DotNet.GenFacades - 5.0.0-beta.19564.2
Viktor Hofer [Fri, 15 Nov 2019 00:50:43 +0000 (01:50 +0100)]
Remove IsRuntimeRepository checks (#43)
* Remove IsRuntimeRepository checks
* Remove YAML bits needed for building in core-setup.
* Remove remaining consolidation branches in yml
Jan Kotas [Fri, 15 Nov 2019 00:44:46 +0000 (01:44 +0100)]
Add recently added entries for THIRD-PARTY-NOTICES (#54)
- https://github.com/dotnet/coreclr/pull/27215
- https://github.com/dotnet/coreclr/pull/27299
Santiago Fernandez Madero [Fri, 15 Nov 2019 00:44:27 +0000 (16:44 -0800)]
Fix libraries build by removing freebsd package rid from IO.Ports (#53)
Santiago Fernandez Madero [Fri, 15 Nov 2019 00:03:31 +0000 (16:03 -0800)]
Add exclusion paths for coreclr CI builds (#49)
* Add exclusion paths for coreclr CI builds
* Add CoreLib shared dir to include paths and update pr.yml
Tomáš Rylek [Thu, 14 Nov 2019 20:17:00 +0000 (21:17 +0100)]
R2R pipeline fix (#38)
Santiago Fernandez Madero [Thu, 14 Nov 2019 20:03:07 +0000 (12:03 -0800)]
Fix test build of test project that referenced corefx shared corelib directly and cleanup common path usages (#47)
* Fix test build break and update common path usages to use property
* Use normalize directory for CommonPath and CommonTestPath
* Update instances of CommonPath and CommonTestPath to not use trailing \
Stephen Toub [Thu, 14 Nov 2019 20:02:24 +0000 (15:02 -0500)]
Add CopyTo{Async} func-based overloads to refs (#48)
Viktor Hofer [Thu, 14 Nov 2019 18:58:12 +0000 (19:58 +0100)]
Fix CoreClr adapter project syntax error (#46)
Jarret Shook [Thu, 14 Nov 2019 18:56:00 +0000 (10:56 -0800)]
Merge pull request #42 from jashook/port_corclr_27875
Port corclr 27875
Viktor Hofer [Thu, 14 Nov 2019 18:37:35 +0000 (19:37 +0100)]
Update Versions.props (#44)
jashook [Thu, 14 Nov 2019 18:26:49 +0000 (10:26 -0800)]
Apply format patch and run git out of tempdir
Tomáš Rylek [Thu, 14 Nov 2019 17:44:56 +0000 (18:44 +0100)]
Fix artifact location in build.sh (#36)
* Fix artifact location in build.sh
Stephen Toub [Thu, 14 Nov 2019 17:35:38 +0000 (12:35 -0500)]
Port missing Path changes from old shared source mirror (#41)
It looks like the mirror didn't fully quiesce prior to snapping coreclr/corefx for the runtime consolidation. As a result the libraries build is breaking.
jashook [Thu, 14 Nov 2019 17:20:00 +0000 (09:20 -0800)]
Change template
jashook [Thu, 14 Nov 2019 17:18:36 +0000 (09:18 -0800)]
Add changes to format job location
jashook [Thu, 14 Nov 2019 17:00:46 +0000 (09:00 -0800)]
Port dotnet/coreclr/27875
Viktor Hofer [Thu, 14 Nov 2019 16:30:02 +0000 (17:30 +0100)]
Downgrade coreclr version as well and fixes (#39)
Viktor Hofer [Thu, 14 Nov 2019 16:09:24 +0000 (17:09 +0100)]
Downgrade CoreFx and NetCoreApp versions (#37)
CoreClr is broken as Microsoft.NetCore.App or
Microsoft.Private.CoreFx.NetCoreApp is depending on System.IO.Ports
which is now depending on an unpublished freebsd native package. This
break was probably introduced with
7a4822f323bcaa18e184cf2403eb68cf1f8c9d28
Viktor Hofer [Thu, 14 Nov 2019 14:38:15 +0000 (15:38 +0100)]
Fix CodeAnalysis.ruleset path (#35)
Viktor Hofer [Thu, 14 Nov 2019 14:08:08 +0000 (15:08 +0100)]
Fix CoreLib shared paths (#34)
dotnet-bot [Thu, 14 Nov 2019 04:56:07 +0000 (05:56 +0100)]
Update dependencies from .NET Core 5 Dev
dotnet-bot [Thu, 14 Nov 2019 04:55:30 +0000 (05:55 +0100)]
Update dependencies from .NET Tools - Latest
dotnet-bot [Thu, 14 Nov 2019 04:54:42 +0000 (05:54 +0100)]
Merge branch 'master' of /home/vihofer/consolidation/artifacts/coreclr
Viktor Hofer [Thu, 14 Nov 2019 07:03:43 +0000 (08:03 +0100)]
Remove obsolete benchmark projs (dotnet/coreclr#27869)
* Remove obsolete benchmark projects
* Remove myget feed
Commit migrated from https://github.com/dotnet/coreclr/commit/
a9f3fc16483eecfc47fb79c362811d870be02249
dotnet-bot [Thu, 14 Nov 2019 03:38:27 +0000 (04:38 +0100)]
Merge branch 'master' of /home/vihofer/consolidation/artifacts/corefx
Bruce Forstall [Thu, 14 Nov 2019 02:38:59 +0000 (18:38 -0800)]
Fix format job; build with the same dotnet CLI that jitutils uses (dotnet/coreclr#27871)
Commit migrated from https://github.com/dotnet/coreclr/commit/
0dd1f6cb8c0267f214ace5704ffef7a4a8d055eb
Vladimir Sadov [Thu, 14 Nov 2019 02:22:27 +0000 (18:22 -0800)]
Unifying the type used for number of heaps/locks/threads (dotnet/coreclr#27846)
Unifying the type used for number of heaps/locks/threads
It is the same small number and should be just int.
NOTE: Initial number of allocated blocks per generation is also the same as number of heaps.
Commit migrated from https://github.com/dotnet/coreclr/commit/
7405e434daa7341a87f5d5d046b2cc8b26fbb075
Sergey Andreenko [Thu, 14 Nov 2019 01:15:18 +0000 (01:15 +0000)]
Return compGetTieringName printing. (dotnet/coreclr#27873)
Commit migrated from https://github.com/dotnet/coreclr/commit/
dd02c6d34e054eb6b43a5cadfef1ab107c43bfd1
Tomas Weinfurt [Thu, 14 Nov 2019 00:54:26 +0000 (16:54 -0800)]
disable unstable test (dotnet/corefx#42588)
Commit migrated from https://github.com/dotnet/corefx/commit/
5cee7c97d602f294e27c582d4dab81ec388f1d7b
Tomas Weinfurt [Thu, 14 Nov 2019 00:52:58 +0000 (16:52 -0800)]
initial support for serial port on FreeBSD (dotnet/corefx#42519)
* initial support for serial port on FreeBSD
* adjust port name selection
* update packaging
* feedback from review
* fix PortHelper
* update include with AnyOS
Commit migrated from https://github.com/dotnet/corefx/commit/
7a4822f323bcaa18e184cf2403eb68cf1f8c9d28
marcnet80 [Thu, 14 Nov 2019 00:49:54 +0000 (02:49 +0200)]
DictionaryKeyPolicy not applied to keys that contain non primitive ty… (dotnet/corefx#41691)
* DictionaryKeyPolicy not applied to keys that contain non primitive types dotnet/corefx#41176
https://github.com/dotnet/corefx/issues/41176#event-
2697607085
* dotnet/corefx#41176: DictionaryKeyPolicy not applied to keys that contain non primitive types
https://github.com/dotnet/corefx/issues/41176
* add unit tests
https://github.com/dotnet/corefx/pull/41691
* Remove check for JsonExtensionDataAttribute to avoid reflection.
Commit migrated from https://github.com/dotnet/corefx/commit/
d9dd0dac4285368002740333d6772d4db79d82c1
David Mason [Thu, 14 Nov 2019 00:47:10 +0000 (16:47 -0800)]
Add ability to patch corefx binaries from a locally built enlistment for coreclr tests (dotnet/coreclr#27422)
Adds the "localcorefxpath" argument to build-test.cmd
Commit migrated from https://github.com/dotnet/coreclr/commit/
216a3b7fb55c10cfde63397f9f2ba411a6a61518
dotnet-bot [Thu, 14 Nov 2019 00:31:08 +0000 (01:31 +0100)]
Merge branch 'master' of /home/vihofer/consolidation/artifacts/core-setup
Davis Goodin [Thu, 14 Nov 2019 00:38:25 +0000 (18:38 -0600)]
Add automatic SDL validation (dotnet/core-setup#8846)
Commit migrated from https://github.com/dotnet/core-setup/commit/
130c63e15de3227ddad89f8a9b4a24a249e678e8
dotnet-bot [Thu, 14 Nov 2019 00:26:19 +0000 (01:26 +0100)]
Initial runtime repository structure