| Index: net/cert/ct_policy_enforcer_unittest.cc
|
| diff --git a/net/cert/ct_policy_enforcer_unittest.cc b/net/cert/ct_policy_enforcer_unittest.cc
|
| index c4f595e0e459ef702fe65f85837369ce26e3154b..c55729220d520606759675e34666c6c8b9d83040 100644
|
| --- a/net/cert/ct_policy_enforcer_unittest.cc
|
| +++ b/net/cert/ct_policy_enforcer_unittest.cc
|
| @@ -171,7 +171,15 @@ TEST_F(CTPolicyEnforcerTest,
|
| chain_.get(), nullptr, scts, NetLogWithSource()));
|
| }
|
|
|
| -TEST_F(CTPolicyEnforcerTest, ConformsToCTEVPolicyIfSCTBeforeEnforcementDate) {
|
| +#if defined(OS_ANDROID)
|
| +#define MAYBE_ConformsToCTEVPolicyIfSCTBeforeEnforcementDate
|
| +DISABLED_ConformsToCTEVPolicyIfSCTBeforeEnforcementDate
|
| +#else
|
| +#define MAYBE_ConformsToCTEVPolicyIfSCTBeforeEnforcementDate \
|
| + ConformsToCTEVPolicyIfSCTBeforeEnforcementDate
|
| +#endif
|
| +TEST_F(CTPolicyEnforcerTest,
|
| + MAYBE_ConformsToCTEVPolicyIfSCTBeforeEnforcementDate) {
|
| ct::SCTList scts;
|
| // |chain_| is valid for 10 years - over 121 months - so requires 5 SCTs.
|
| // All 5 SCTs will be from non-Google logs.
|
|
|