[master] Update dependencies from dotnet/coreclr (dotnet/core-setup#6633)
authordotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Tue, 4 Jun 2019 09:28:16 +0000 (09:28 +0000)
committerGitHub <noreply@github.com>
Tue, 4 Jun 2019 09:28:16 +0000 (09:28 +0000)
* Update dependencies from https://github.com/dotnet/coreclr build 20190603.1

- Microsoft.NETCore.Runtime.CoreCLR - 3.0.0-preview7.19303.1

* Update dependencies from https://github.com/dotnet/coreclr build 20190603.4

- Microsoft.NETCore.Runtime.CoreCLR - 3.0.0-preview7.19303.4

* React to changes in error message from CoreCLR.

Commit migrated from https://github.com/dotnet/core-setup/commit/25dfd8f69d4ea54a39aa9df6008748ee89cd5a09

src/installer/test/HostActivationTests/NativeHostApis.cs

index 17be4a2..1826a19 100644 (file)
@@ -124,7 +124,7 @@ namespace Microsoft.DotNet.CoreSetup.Test.HostActivation
                 .CaptureStdErr()
                 .Execute(fExpectedToFail: true)
                 .Should().Fail()
-                .And.HaveStdErrContaining("Unhandled Exception: System.Exception: Goodbye World")
+                .And.HaveStdErrContaining("Unhandled exception. System.Exception: Goodbye World")
                 // The breadcrumb thread does not wait since destructors are not called when an exception is thrown.
                 // However, destructors will be called when the caller (such as a custom host) is compiled with SEH Exceptions (/EHa) and has a try\catch.
                 // Todo: add a native host test app so we can verify this behavior.