From 8e0feec09dcb7a18beb9ce03c6f104a2d1700e23 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Fri, 13 Sep 2019 19:53:32 +0000 Subject: [PATCH] [master] Update dependencies from dotnet/coreclr (dotnet/corefx#41089) * Update dependencies from https://github.com/dotnet/coreclr build 20190912.7 - Microsoft.NET.Sdk.IL - 5.0.0-alpha1.19462.7 - Microsoft.NETCore.ILAsm - 5.0.0-alpha1.19462.7 - Microsoft.NETCore.Runtime.CoreCLR - 5.0.0-alpha1.19462.7 * Fix Environment.WorkingSet tests for coreclr update Commit migrated from https://github.com/dotnet/corefx/commit/a3dbe06e55084c12450288db4ea12a1e7fd36144 --- .../System.Runtime.Extensions/tests/System/EnvironmentTests.cs | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/libraries/System.Runtime.Extensions/tests/System/EnvironmentTests.cs b/src/libraries/System.Runtime.Extensions/tests/System/EnvironmentTests.cs index 923408c..217e7dd 100644 --- a/src/libraries/System.Runtime.Extensions/tests/System/EnvironmentTests.cs +++ b/src/libraries/System.Runtime.Extensions/tests/System/EnvironmentTests.cs @@ -179,19 +179,11 @@ namespace System.Tests } [Fact] - [SkipOnTargetFramework(TargetFrameworkMonikers.Uap)] // Throws InvalidOperationException in Uap as NtQuerySystemInformation Pinvoke is not available public void WorkingSet_Valid() { Assert.True(Environment.WorkingSet > 0, "Expected positive WorkingSet value"); } - [Fact] - [SkipOnTargetFramework(~TargetFrameworkMonikers.Uap)] - public void WorkingSet_Valid_Uap() - { - Assert.Throws(() => Environment.WorkingSet); - } - [Trait(XunitConstants.Category, XunitConstants.IgnoreForCI)] // fail fast crashes the process [OuterLoop] [Fact] -- 2.7.4