diff options
author | Jiangtao Li <jiangtao@google.com> | 2018-01-29 13:59:34 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-29 13:59:34 -0800 |
commit | ff3a8f188181a8dbef60749a043daa6c2ecbf1a3 (patch) | |
tree | e05d23933528760c9f86ecb702a5e902438e2096 /test | |
parent | 123547c9625c56fdf5cb4ddd1df55ae0c785fa60 (diff) | |
parent | faa74228d717dcebfb1daf81e894c7c612942948 (diff) |
Merge pull request #14218 from jiangtaoli2016/disable_failed_ssl_test
Disable failing ssl_transport_security_tests when using OpenSSL lib
Diffstat (limited to 'test')
-rw-r--r-- | test/core/tsi/ssl_transport_security_test.cc | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/test/core/tsi/ssl_transport_security_test.cc b/test/core/tsi/ssl_transport_security_test.cc index 8939c0434b..bf54383c54 100644 --- a/test/core/tsi/ssl_transport_security_test.cc +++ b/test/core/tsi/ssl_transport_security_test.cc @@ -667,9 +667,15 @@ int main(int argc, char** argv) { ssl_tsi_test_do_handshake_with_server_name_indication_wild_star_domain(); ssl_tsi_test_do_handshake_with_bad_server_cert(); ssl_tsi_test_do_handshake_with_bad_client_cert(); - ssl_tsi_test_do_handshake_alpn_client_no_server(); + // TODO: BoringSSL and OpenSSL have different behaviors on handling mismatched + // ALPN. Re-enable this test if we can detect in the runtime which SSL library + // is used. + // ssl_tsi_test_do_handshake_alpn_client_no_server(); ssl_tsi_test_do_handshake_alpn_server_no_client(); - ssl_tsi_test_do_handshake_alpn_client_server_mismatch(); + // TODO: BoringSSL and OpenSSL have different behaviors on handling mismatched + // ALPN. Re-enable this test if we can detect in the runtime which SSL library + // is used. + // ssl_tsi_test_do_handshake_alpn_client_server_mismatch(); ssl_tsi_test_do_handshake_alpn_client_server_ok(); ssl_tsi_test_do_round_trip_for_all_configs(); ssl_tsi_test_do_round_trip_odd_buffer_size(); |