Commit e567bb9e authored by Xing Liu's avatar Xing Liu Committed by Commit Bot

Disable SSLClientSocketTest.SessionResumptionAlpn on Android.

This test is failing on some Android builders. Disable it for now.

TBR=ricea@chromium.org

Bug: 1014556
Change-Id: Iad4dbb959199476e08c90848ebd325143d6eeb23
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1862717Reviewed-by: default avatarXing Liu <xingliu@chromium.org>
Commit-Queue: Xing Liu <xingliu@chromium.org>
Cr-Commit-Position: refs/heads/master@{#706025}
parent 8de9074f
...@@ -3218,7 +3218,13 @@ TEST_F(SSLClientSocketTest, SessionResumption_RSA) { ...@@ -3218,7 +3218,13 @@ TEST_F(SSLClientSocketTest, SessionResumption_RSA) {
} }
// Tests that ALPN works with session resumption. // Tests that ALPN works with session resumption.
TEST_F(SSLClientSocketTest, SessionResumptionAlpn) { // Failed on Android, see https://crbug.com/1014556.
#if defined(OS_ANDROID)
#define MAYBE_SessionResumptionAlpn DISABLED_SessionResumptionAlpn
#else
#define MAYBE_SessionResumptionAlpn SessionResumptionAlpn
#endif
TEST_F(SSLClientSocketTest, MAYBE_SessionResumptionAlpn) {
SpawnedTestServer::SSLOptions ssl_options; SpawnedTestServer::SSLOptions ssl_options;
ssl_options.alpn_protocols.push_back("h2"); ssl_options.alpn_protocols.push_back("h2");
ssl_options.alpn_protocols.push_back("http/1.1"); ssl_options.alpn_protocols.push_back("http/1.1");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment