Skip to content

Commit

Permalink
[master] Update dependencies from dotnet/coreclr (dotnet/corefx#41089)
Browse files Browse the repository at this point in the history
* 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 dotnet/corefx@a3dbe06
  • Loading branch information
dotnet-maestro[bot] authored Sep 13, 2019
1 parent c0f4ae9 commit 8e0feec
Showing 1 changed file with 0 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -179,19 +179,11 @@ public void Version_Valid()
}

[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<PlatformNotSupportedException>(() => Environment.WorkingSet);
}

[Trait(XunitConstants.Category, XunitConstants.IgnoreForCI)] // fail fast crashes the process
[OuterLoop]
[Fact]
Expand Down

0 comments on commit 8e0feec

Please sign in to comment.