@@ -6141,13 +6141,6 @@ TEST_P(SslSocketTest, RevokedIntermediateCertificate) {
61416141 testUtil (complete_revoked_test_options.setExpectedServerStats (" ssl.fail_verify_error" )
61426142 .setExpectedVerifyErrorCode (X509_V_ERR_CERT_REVOKED));
61436143
6144- // On OpenSSL, the following check fails due to https://github.com/openssl/openssl/issues/5081.
6145- // To make it pass, we have to temporarily set the enable_intermediate_ca feature flag to false.
6146- // This ensures that the X509_V_FLAG_PARTIAL_CHAIN option doesn't get applied to the trust store,
6147- // which ensures that full cert chain & CRL processing occurs, which allows this check to pass.
6148- TestScopedRuntime scoped_runtime;
6149- scoped_runtime.mergeValues ({{" envoy.reloadable_features.enable_intermediate_ca" , " false" }});
6150-
61516144 // Ensure that complete crl chains succeed with unrevoked certificates.
61526145 TestUtilOptions complete_unrevoked_test_options (unrevoked_client_ctx_yaml,
61536146 complete_server_ctx_yaml, true , version_);
@@ -6234,13 +6227,6 @@ TEST_P(SslSocketTest, RevokedIntermediateCertificateCRLInTrustedCA) {
62346227 testUtil (complete_revoked_test_options.setExpectedServerStats (" ssl.fail_verify_error" )
62356228 .setExpectedVerifyErrorCode (X509_V_ERR_CERT_REVOKED));
62366229
6237- // On OpenSSL, the following check fails due to https://github.com/openssl/openssl/issues/5081.
6238- // To make it pass, we have to temporarily set the enable_intermediate_ca feature flag to false.
6239- // This ensures that the X509_V_FLAG_PARTIAL_CHAIN option doesn't get applied to the trust store,
6240- // which ensures that full cert chain & CRL processing occurs, which allows this check to pass.
6241- TestScopedRuntime scoped_runtime;
6242- scoped_runtime.mergeValues ({{" envoy.reloadable_features.enable_intermediate_ca" , " false" }});
6243-
62446230 // Ensure that complete crl chains succeed with unrevoked certificates.
62456231 TestUtilOptions complete_unrevoked_test_options (unrevoked_client_ctx_yaml,
62466232 complete_server_ctx_yaml, true , version_);
0 commit comments