| Index: net/url_request/url_request_unittest.cc
|
| diff --git a/net/url_request/url_request_unittest.cc b/net/url_request/url_request_unittest.cc
|
| index f31f368a015af52281bfc932be60da25f15e904a..859f3f57818c4d941158fcf32865f732e39e3def 100644
|
| --- a/net/url_request/url_request_unittest.cc
|
| +++ b/net/url_request/url_request_unittest.cc
|
| @@ -1375,6 +1375,10 @@ TEST_F(HTTPSRequestTest, HTTPSExpiredTest) {
|
| }
|
| }
|
|
|
| +// http://crbug.com/119642 - The Android test server does not support
|
| +// generating OCSP responses on the fly.
|
| +#if !defined(OS_ANDROID)
|
| +
|
| class TestSSLConfigService : public SSLConfigService {
|
| public:
|
| TestSSLConfigService(bool ev_enabled, bool online_rev_checking)
|
| @@ -1684,6 +1688,8 @@ TEST_F(HTTPSCRLSetTest, ExpiredCRLSet) {
|
| EXPECT_FALSE(cert_status & CERT_STATUS_REV_CHECKING_ENABLED);
|
| }
|
|
|
| +#endif // !defined(OS_ANDROID)
|
| +
|
| // This tests that a load of www.google.com with a certificate error sets
|
| // the |certificate_errors_are_fatal| flag correctly. This flag will cause
|
| // the interstitial to be fatal.
|
|
|