Skip to content

Commit 4050c12

Browse files
stabilize quic tests on server 2022 (#65097)
Co-authored-by: wfurt <[email protected]>
1 parent f00f038 commit 4050c12

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

src/libraries/System.Net.Quic/tests/FunctionalTests/MsQuicTests.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,7 @@ public async Task ConnectWithCertificateChain()
104104
}
105105

106106
[Fact]
107+
[ActiveIssue("https://github.com/dotnet/runtime/issues/64944", TestPlatforms.Windows)]
107108
public async Task UntrustedClientCertificateFails()
108109
{
109110
var listenerOptions = new QuicListenerOptions();
@@ -331,6 +332,7 @@ public async Task ConnectWithCertificateForLoopbackIP_IndicatesExpectedError(str
331332
[Theory]
332333
[InlineData(true)]
333334
// [InlineData(false)] [ActiveIssue("https://github.com/dotnet/runtime/issues/57308")]
335+
[ActiveIssue("https://github.com/dotnet/runtime/issues/64944", TestPlatforms.Windows)]
334336
public async Task ConnectWithClientCertificate(bool sendCerttificate)
335337
{
336338
bool clientCertificateOK = false;

src/libraries/System.Net.Quic/tests/FunctionalTests/QuicTestBase.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,7 @@ internal QuicListener CreateQuicListener(IPEndPoint endpoint)
167167
if (retry == 0)
168168
{
169169
Debug.Fail($"ConnectAsync to {clientConnection.RemoteEndPoint} failed with {ex.Message}");
170+
throw ex;
170171
}
171172
}
172173
}

0 commit comments

Comments
 (0)