[OpenSSL] Disable another test (#35461)

This accidentally slipped through the cracks on https://github.com/grpc/grpc/pull/35444

Closes #35461

COPYBARA_INTEGRATE_REVIEW=https://github.com/grpc/grpc/pull/35461 from gtcooke94:fix_ossl102_part2 c8b526cefa
PiperOrigin-RevId: 596135991
pull/35468/head
Gregory Cooke 1 year ago committed by Copybara-Service
parent 8d0c4b7577
commit b5c5b7a264
  1. 3
      test/cpp/end2end/tls_credentials_test.cc

@ -129,6 +129,8 @@ void DoRpc(const std::string& server_addr,
EXPECT_EQ(response.message(), kMessage);
}
// TODO(gregorycooke) - failing with OpenSSL1.0.2
#if OPENSSL_VERSION_NUMBER >= 0x10100000
// How do we test that skipping server certificate verification works as
// expected? Give the server credentials that chain up to a custom CA (that does
// not belong to the default or OS trust store), do not configure the client to
@ -149,6 +151,7 @@ TEST_F(TlsCredentialsTest, SkipServerCertificateVerification) {
DoRpc(server_addr_, tls_options);
}
#endif // OPENSSL_VERSION_NUMBER >= 0x10100000
} // namespace
} // namespace testing

Loading…
Cancel
Save