Skip to content
代码片段 群组 项目
未验证 提交 85180121 编辑于 作者: Safia Abdalla's avatar Safia Abdalla 提交者: GitHub
浏览文件

Quarantine test and fix up conditional check (#34904)

* Update condition check for Visual Studio

* QT Http3TimeoutTests failure

* Fix version check condition

* Add ref comment and clean up code
上级 90c08fe1
No related branches found
No related tags found
无相关合并请求
......@@ -15,7 +15,8 @@
<AnalysisMode>Default</AnalysisMode>
</PropertyGroup>
<PropertyGroup Condition=" '$(BuildingInsideVisualStudio)' == 'true' AND '$(VisualStudioVersion)' == '17.0' ">
<!-- See https://github.com/dotnet/roslyn/issues/54867 for more info. -->
<PropertyGroup Condition="'$(BuildingInsideVisualStudio)' == 'true' AND $([MSBuild]::VersionGreaterThanOrEquals('$(VisualStudioVersion)', '17.0'))">
<RunAnalyzersDuringBuild>false</RunAnalyzersDuringBuild>
<RunAnalyzersDuringLiveAnalysis>false</RunAnalyzersDuringLiveAnalysis>
<RunAnalyzers>false</RunAnalyzers>
......
......@@ -20,7 +20,7 @@
'$(IsImplementationProject)' == 'true' OR
'$(IsAnalyzersProject)' == true OR
'$(IsSpecificationTestProject)' == 'true') ">enable</Nullable>
<!-- Strip out non-public nullable annotations for src projects. This should help with size reduction -->
<Features Condition="
'$(IsImplementationProject)' == 'true' OR
......@@ -36,7 +36,8 @@
<!-- Enable .NET code style analysis during build for src projects. -->
<!-- Workaround bug where turning this on produces warnings in VS -->
<EnforceCodeStyleInBuild Condition="'$(BuildingInsideVisualStudio)' == 'true' AND '$(VisualStudioVersion)' &lt; '17.0'">false</EnforceCodeStyleInBuild>
<!-- See https://github.com/dotnet/roslyn/issues/54867 for more info. -->
<EnforceCodeStyleInBuild Condition="'$(BuildingInsideVisualStudio)' == 'true' AND $([MSBuild]::VersionGreaterThanOrEquals('$(VisualStudioVersion)', '17.0'))">false</EnforceCodeStyleInBuild>
<EnforceCodeStyleInBuild Condition="'$(EnforceCodeStyleInBuild)' == ''">true</EnforceCodeStyleInBuild>
</PropertyGroup>
......
......@@ -486,6 +486,7 @@ namespace Microsoft.AspNetCore.Server.Kestrel.Core.Tests
}
[Fact]
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/34903")]
public async Task DATA_Received_TooSlowlyOnSecondStream_AbortsConnectionAfterNonAdditiveRateTimeout()
{
var mockSystemClock = _serviceContext.MockSystemClock;
......
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册