IIS ANCM support in test matrix (#1509)
This commit is contained in:
parent
fed2eb1cdf
commit
6efdf78fb5
|
|
@ -252,7 +252,7 @@ namespace Microsoft.AspNetCore.Server.IntegrationTesting
|
|||
}
|
||||
var archSkip = skip ?? SkipIfArchitectureNotSupportedOnCurrentSystem(arch);
|
||||
|
||||
if (server == ServerType.IISExpress)
|
||||
if (server == ServerType.IISExpress || server == ServerType.IIS)
|
||||
{
|
||||
VaryByAncmVersion(variants, server, tfm, type, arch, archSkip);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -22,7 +22,7 @@ namespace Microsoft.AspNetCore.Server.IntegrationTesting
|
|||
{
|
||||
// For debug and test explorer view
|
||||
var description = $"Server: {Server}, TFM: {Tfm}, Type: {ApplicationType}, Arch: {Architecture}";
|
||||
if (Server == ServerType.IISExpress)
|
||||
if (Server == ServerType.IISExpress || Server == ServerType.IIS)
|
||||
{
|
||||
var version = AncmVersion == AncmVersion.AspNetCoreModule ? "V1" : "V2";
|
||||
description += $", ANCM: {version}, Host: {HostingModel}";
|
||||
|
|
|
|||
Loading…
Reference in New Issue