Skip to content

Commit 626b7f8

Browse files
dotnet-maestro[bot]Mike McLaughlin
andauthored
[main] Update dependencies from dotnet/runtime (#2498)
* Update dependencies from https://github.com/dotnet/runtime build 20210811.2 Microsoft.NETCore.App.Runtime.win-x64 , VS.Redist.Common.NetCore.SharedFramework.x64.6.0 From Version 6.0.0-rc.1.21406.5 -> To Version 6.0.0-rc.1.21411.2 * Fix SOS test failures with new runtime Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com> Co-authored-by: Mike McLaughlin <[email protected]>
1 parent 19c7e8d commit 626b7f8

File tree

5 files changed

+20
-8
lines changed

5 files changed

+20
-8
lines changed

eng/Version.Details.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,13 @@
4040
<Uri>https://github.com/dotnet/aspnetcore</Uri>
4141
<Sha>a671f9652808921d6bbe74994c16065372bec6f6</Sha>
4242
</Dependency>
43-
<Dependency Name="Microsoft.NETCore.App.Runtime.win-x64" Version="6.0.0-rc.1.21406.5">
43+
<Dependency Name="Microsoft.NETCore.App.Runtime.win-x64" Version="6.0.0-rc.1.21411.2">
4444
<Uri>https://github.com/dotnet/runtime</Uri>
45-
<Sha>58efa4b79751a2dad08d9bf7ca67930f8160afe3</Sha>
45+
<Sha>c0662e8129beaf93b8050d39a863cc6d16a0308c</Sha>
4646
</Dependency>
47-
<Dependency Name="VS.Redist.Common.NetCore.SharedFramework.x64.6.0" Version="6.0.0-rc.1.21406.5">
47+
<Dependency Name="VS.Redist.Common.NetCore.SharedFramework.x64.6.0" Version="6.0.0-rc.1.21411.2">
4848
<Uri>https://github.com/dotnet/runtime</Uri>
49-
<Sha>58efa4b79751a2dad08d9bf7ca67930f8160afe3</Sha>
49+
<Sha>c0662e8129beaf93b8050d39a863cc6d16a0308c</Sha>
5050
</Dependency>
5151
</ToolsetDependencies>
5252
</Dependencies>

eng/Versions.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
<MicrosoftNETCoreApp50Version>5.0.6</MicrosoftNETCoreApp50Version>
1818
<MicrosoftAspNetCoreApp50Version>$(MicrosoftNETCoreApp50Version)</MicrosoftAspNetCoreApp50Version>
1919
<!-- Latest shared runtime version updated by darc -->
20-
<VSRedistCommonNetCoreSharedFrameworkx6460Version>6.0.0-rc.1.21406.5</VSRedistCommonNetCoreSharedFrameworkx6460Version>
21-
<MicrosoftNETCoreAppRuntimewinx64Version>6.0.0-rc.1.21406.5</MicrosoftNETCoreAppRuntimewinx64Version>
20+
<VSRedistCommonNetCoreSharedFrameworkx6460Version>6.0.0-rc.1.21411.2</VSRedistCommonNetCoreSharedFrameworkx6460Version>
21+
<MicrosoftNETCoreAppRuntimewinx64Version>6.0.0-rc.1.21411.2</MicrosoftNETCoreAppRuntimewinx64Version>
2222
<!-- Latest shared aspnetcore version updated by darc -->
2323
<MicrosoftAspNetCoreAppRefInternalVersion>6.0.0-rc.1.21410.16</MicrosoftAspNetCoreAppRefInternalVersion>
2424
<MicrosoftAspNetCoreAppRefVersion>6.0.0-rc.1.21410.16</MicrosoftAspNetCoreAppRefVersion>

src/SOS/SOS.UnitTests/SOSRunner.cs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1192,6 +1192,14 @@ private HashSet<string> GetEnabledDefines()
11921192
{
11931193
defines.Add("MAJOR_RUNTIME_VERSION_GE_5");
11941194
}
1195+
if (major >= 6)
1196+
{
1197+
defines.Add("MAJOR_RUNTIME_VERSION_GE_6");
1198+
}
1199+
if (major >= 7)
1200+
{
1201+
defines.Add("MAJOR_RUNTIME_VERSION_GE_7");
1202+
}
11951203
}
11961204
catch (SkipTestException)
11971205
{

src/SOS/SOS.UnitTests/Scripts/OtherCommands.script

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,13 @@ ENDIF:DESKTOP
3535
SOSCOMMAND:bpmd SymbolTestApp.dll SymbolTestApp.Program.Foo4
3636
ENDIF:DESKTOP
3737

38-
IFDEF:PROJECTK
38+
!IFDEF:MAJOR_RUNTIME_VERSION_GE_6
39+
!IFDEF:DESKTOP
3940
CONTINUE
4041
SOSCOMMAND:ClrStack
4142
VERIFY:\s+<HEXVAL>\s+<HEXVAL>\s+SymbolTestApp\.Program\.Main\(.*\)\s+\[(?i:.*[\\|/]SymbolTestApp\.cs) @ 16\]\s*
42-
ENDIF:PROJECTK
43+
ENDIF:DESKTOP
44+
ENDIF:MAJOR_RUNTIME_VERSION_GE_6
4345

4446
CONTINUE
4547
SOSCOMMAND:ClrStack

src/SOS/SOS.UnitTests/Scripts/StackAndOtherTests.script

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,13 @@ ENDIF:DESKTOP
3636
SOSCOMMAND:bpmd SymbolTestApp.dll SymbolTestApp.Program.Foo4
3737
ENDIF:DESKTOP
3838

39+
!IFDEF:MAJOR_RUNTIME_VERSION_GE_6
3940
!IFDEF:DESKTOP
4041
CONTINUE
4142
SOSCOMMAND:ClrStack
4243
VERIFY:\s+<HEXVAL>\s+<HEXVAL>\s+SymbolTestApp\.Program\.Main\(.*\)\s+\[(?i:.*[\\|/]SymbolTestApp\.cs) @ 16\]\s*
4344
ENDIF:DESKTOP
45+
ENDIF:MAJOR_RUNTIME_VERSION_GE_6
4446

4547
CONTINUE
4648
SOSCOMMAND:ClrStack

0 commit comments

Comments
 (0)