Skip to content

Commit 7430d9f

Browse files
committed
Skip failing IIS tests
1 parent 8acff15 commit 7430d9f

File tree

5 files changed

+8
-1
lines changed

5 files changed

+8
-1
lines changed

src/Servers/IIS/IIS/test/Common.FunctionalTests/Inprocess/ClientDisconnectTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ await connection.Send(
6666
await _fixture.Client.RetryRequestAsync("/WaitingRequestCount", async message => await message.Content.ReadAsStringAsync() == "0");
6767
}
6868

69-
[ConditionalFact]
69+
[ConditionalFact(Skip = "https://github.com/dotnet/aspnetcore/issues/24695")]
7070
public async Task ClientDisconnectCallbackStress()
7171
{
7272
// Fixture initialization fails if inside of the Task.Run, so send an

src/Servers/IIS/IIS/test/IIS.FunctionalTests/IIS.FunctionalTests.csproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
<TestGroupName>IIS.FunctionalTests</TestGroupName>
66
<DisableFastUpToDateCheck>True</DisableFastUpToDateCheck>
77
<SkipTests Condition=" '$(SkipIISTests)' == 'true' ">true</SkipTests>
8+
<!-- Unskipping tracked via https://github.com/dotnet/aspnetcore/issues/24695 -->
9+
<SkipTests>true</SkipTests>
810
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
911
</PropertyGroup>
1012

src/Servers/IIS/IIS/test/IIS.NewHandler.FunctionalTests/IIS.NewHandler.FunctionalTests.csproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
<TestGroupName>IISNewHandler.FunctionalTests</TestGroupName>
66
<DisableFastUpToDateCheck>True</DisableFastUpToDateCheck>
77
<SkipTests Condition=" '$(SkipIISNewHandlerTests)' == 'true' ">true</SkipTests>
8+
<!-- Unskipping tracked via https://github.com/dotnet/aspnetcore/issues/24695 -->
9+
<SkipTests>true</SkipTests>
810
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
911
</PropertyGroup>
1012

src/Servers/IIS/IIS/test/IIS.NewShim.FunctionalTests/IIS.NewShim.FunctionalTests.csproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
<TestGroupName>IISNewShim.FunctionalTests</TestGroupName>
66
<DisableFastUpToDateCheck>True</DisableFastUpToDateCheck>
77
<SkipTests Condition=" '$(SkipIISNewShimTests)' == 'true' ">true</SkipTests>
8+
<!-- Unskipping tracked via https://github.com/dotnet/aspnetcore/issues/24695 -->
9+
<SkipTests>true</SkipTests>
810
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
911
</PropertyGroup>
1012

src/Servers/IIS/IIS/test/IIS.Tests/IIS.Tests.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
<PropertyGroup>
66
<TargetFramework>$(DefaultNetCoreTargetFramework)</TargetFramework>
77
<InProcessTestSite>true</InProcessTestSite>
8+
<SkipTests>true</SkipTests>
89
</PropertyGroup>
910

1011
<Import Project="../FunctionalTest.props" />

0 commit comments

Comments
 (0)