From ee390ff39c95791b3799495f7ddc8565de4b66b3 Mon Sep 17 00:00:00 2001 From: Kevin Jones Date: Sun, 30 Jan 2022 12:09:41 -0500 Subject: [PATCH] Permit longer chain building fetching for dynamic revocation tests This is meant to address the flakiness where chain building can time out for very busy CI machines. The test fixture is already outerloop, so extending the timeout should not adversely affect CI inner loop performance. --- .../tests/RevocationTests/DynamicRevocationTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libraries/System.Security.Cryptography.X509Certificates/tests/RevocationTests/DynamicRevocationTests.cs b/src/libraries/System.Security.Cryptography.X509Certificates/tests/RevocationTests/DynamicRevocationTests.cs index 7c32c3cd7dccf..0976cba08b743 100644 --- a/src/libraries/System.Security.Cryptography.X509Certificates/tests/RevocationTests/DynamicRevocationTests.cs +++ b/src/libraries/System.Security.Cryptography.X509Certificates/tests/RevocationTests/DynamicRevocationTests.cs @@ -15,7 +15,7 @@ namespace System.Security.Cryptography.X509Certificates.Tests.RevocationTests public static partial class DynamicRevocationTests { // The CI machines are doing an awful lot of things at once, be generous with the timeout; - internal static readonly TimeSpan s_urlRetrievalLimit = TimeSpan.FromSeconds(15); + internal static readonly TimeSpan s_urlRetrievalLimit = TimeSpan.FromSeconds(30); private static readonly Oid s_tlsServerOid = new Oid("1.3.6.1.5.5.7.3.1", null);