diff --git a/src/Microsoft.AspNetCore.Server.IntegrationTesting/Common/DeploymentParameters.cs b/src/Microsoft.AspNetCore.Server.IntegrationTesting/Common/DeploymentParameters.cs index d662cef8a7..27640090c8 100644 --- a/src/Microsoft.AspNetCore.Server.IntegrationTesting/Common/DeploymentParameters.cs +++ b/src/Microsoft.AspNetCore.Server.IntegrationTesting/Common/DeploymentParameters.cs @@ -35,9 +35,9 @@ namespace Microsoft.AspNetCore.Server.IntegrationTesting throw new DirectoryNotFoundException(string.Format("Application path {0} does not exist.", applicationPath)); } - if (runtimeArchitecture == RuntimeArchitecture.x86) + if (runtimeArchitecture == RuntimeArchitecture.x86 && runtimeFlavor == RuntimeFlavor.CoreClr) { - throw new NotSupportedException("32 bit compilation is not yet supported. Don't remove the tests, just disable them for now."); + throw new NotSupportedException("32 bit deployment is not yet supported for CoreCLR. Don't remove the tests, just disable them for now."); } ApplicationPath = applicationPath;