Fix #11301 - revert workaround for test matrix
I suspect that this workaround is now causing our tests to fail, and we wanted to get rid of it anyway.
This commit is contained in:
parent
ac48ceaab2
commit
5409bd7270
|
|
@ -238,9 +238,6 @@ namespace Microsoft.AspNetCore.Server.IntegrationTesting
|
||||||
VaryByAncmHostingModel(variants, server, tfm, type, arch, archSkip);
|
VaryByAncmHostingModel(variants, server, tfm, type, arch, archSkip);
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: remove this workaround: https://github.com/aspnet/AspNetCore/issues/11301
|
|
||||||
else if (string.IsNullOrEmpty(archSkip))
|
|
||||||
{
|
|
||||||
variants.Add(new TestVariant()
|
variants.Add(new TestVariant()
|
||||||
{
|
{
|
||||||
Server = server,
|
Server = server,
|
||||||
|
|
@ -251,7 +248,6 @@ namespace Microsoft.AspNetCore.Server.IntegrationTesting
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
private string SkipIfArchitectureNotSupportedOnCurrentSystem(RuntimeArchitecture arch)
|
private string SkipIfArchitectureNotSupportedOnCurrentSystem(RuntimeArchitecture arch)
|
||||||
{
|
{
|
||||||
|
|
@ -291,9 +287,6 @@ namespace Microsoft.AspNetCore.Server.IntegrationTesting
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: remove this workaround: https://github.com/aspnet/AspNetCore/issues/11301
|
|
||||||
if (string.IsNullOrEmpty(skipAncm))
|
|
||||||
{
|
|
||||||
variants.Add(new TestVariant()
|
variants.Add(new TestVariant()
|
||||||
{
|
{
|
||||||
Server = server,
|
Server = server,
|
||||||
|
|
@ -305,7 +298,6 @@ namespace Microsoft.AspNetCore.Server.IntegrationTesting
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
private void CheckForSkips(List<TestVariant> variants)
|
private void CheckForSkips(List<TestVariant> variants)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue