Disabling openidconnect coreclr variation temporarily

OpenIdconnect fails on latest coreclr. Until this is fixed disabling the coreclr variation.
https://github.com/aspnet/Security/issues/223
This commit is contained in:
Praburaj 2015-04-21 12:48:46 -07:00
parent 0929aa23df
commit cedfd88254
1 changed files with 2 additions and 1 deletions

View File

@ -15,7 +15,8 @@ namespace E2ETests
[ConditionalTheory, Trait("E2Etests", "E2Etests")]
[FrameworkSkipCondition(RuntimeFrameworks.Mono)]
[InlineData(ServerType.IISExpress, RuntimeFlavor.Clr, RuntimeArchitecture.x86, "http://localhost:5040/")]
[InlineData(ServerType.IISExpress, RuntimeFlavor.CoreClr, RuntimeArchitecture.x64, "http://localhost:5041/")]
// https://github.com/aspnet/Security/issues/223
// [InlineData(ServerType.IISExpress, RuntimeFlavor.CoreClr, RuntimeArchitecture.x64, "http://localhost:5041/")]
public async Task OpenIdConnect_OnX86(ServerType serverType, RuntimeFlavor runtimeFlavor, RuntimeArchitecture architecture, string applicationBaseUrl)
{
await OpenIdConnectTestSuite(serverType, runtimeFlavor, architecture, applicationBaseUrl);