From: dotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Thu, 28 Oct 2021 20:16:13 +0000 (-0700) Subject: [main] Update dependencies from microsoft/clrmd (#2713) X-Git-Tag: submit/tizen/20220302.040122~18^2^2~35 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c1e3b07864ee38bf05aa582ffd0bc5cf093f98dd;p=platform%2Fcore%2Fdotnet%2Fdiagnostics.git [main] Update dependencies from microsoft/clrmd (#2713) * Update dependencies from https://github.com/microsoft/clrmd build 20211027.1 Microsoft.Diagnostics.Runtime , Microsoft.Diagnostics.Runtime.Utilities From Version 2.0.251201 -> To Version 2.0.252701 * Completely disable DebugServicesTests.RuntimeTests Co-authored-by: dotnet-maestro[bot] Co-authored-by: Mike McLaughlin --- diff --git a/NuGet.config b/NuGet.config index f6b7b63ea..266514ee3 100644 --- a/NuGet.config +++ b/NuGet.config @@ -7,11 +7,15 @@ + + + + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 2f622ea17..ac81aa065 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -4,13 +4,13 @@ https://github.com/dotnet/symstore 14e48c616b8579f0c5f4d296c10b2c66e707c297 - + https://github.com/microsoft/clrmd - 58ede2ab2a191fb1aefc840ccb99b8e43f7bb316 + c894500cb373fe8f21d5caa6d4588b3ddcf41e47 - + https://github.com/microsoft/clrmd - 58ede2ab2a191fb1aefc840ccb99b8e43f7bb316 + c894500cb373fe8f21d5caa6d4588b3ddcf41e47 https://github.com/dotnet/source-build-reference-packages diff --git a/eng/Versions.props b/eng/Versions.props index c6b9aad03..a1a6b367c 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -34,8 +34,8 @@ 4.3.0 1.1.0 - 2.0.251201 - 2.0.251201 + 2.0.252701 + 2.0.252701 16.9.0-beta1.21055.5 2.0.64 2.1.1 diff --git a/src/tests/Microsoft.Diagnostics.DebugServices.UnitTests/DebugServicesTests.cs b/src/tests/Microsoft.Diagnostics.DebugServices.UnitTests/DebugServicesTests.cs index dedd8c17e..2b3b1b78a 100644 --- a/src/tests/Microsoft.Diagnostics.DebugServices.UnitTests/DebugServicesTests.cs +++ b/src/tests/Microsoft.Diagnostics.DebugServices.UnitTests/DebugServicesTests.cs @@ -241,6 +241,10 @@ namespace Microsoft.Diagnostics.DebugServices.UnitTests [SkippableTheory, MemberData(nameof(GetConfigurations))] public void RuntimeTests(TestHost host) { + if (OS.Kind == OSKind.Windows) + { + throw new SkipTestException("Test unstable on Windows. Issue: https://github.com/dotnet/diagnostics/issues/2709"); + } // The current Linux test assets are not alpine/musl if (OS.IsAlpine) { @@ -260,11 +264,7 @@ namespace Microsoft.Diagnostics.DebugServices.UnitTests IRuntime runtime = runtimeService.EnumerateRuntimes().FirstOrDefault((r) => r.Id == id); Assert.NotNull(runtime); - // Issue: https://github.com/dotnet/diagnostics/issues/2709 - if (OS.Kind != OSKind.Windows) - { - runtimeData.CompareMembers(runtime); - } + runtimeData.CompareMembers(runtime); ClrInfo clrInfo = runtime.Services.GetService(); Assert.NotNull(clrInfo);