OpenJDK / jdk / jdk
changeset 54456:a8db7fd22fd1
8222089: [TESTBUG] sun/security/lib/cacerts/VerifyCACerts.java fails due to cert within 90-day expiry window
Reviewed-by: xuelei
author | mullan |
---|---|
date | Mon, 08 Apr 2019 12:19:51 -0400 |
parents | 542735f2a53e |
children | 40dc805f4709 |
files | test/jdk/sun/security/lib/cacerts/VerifyCACerts.java |
diffstat | 1 files changed, 8 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/test/jdk/sun/security/lib/cacerts/VerifyCACerts.java Fri Apr 05 06:48:20 2019 -0700 +++ b/test/jdk/sun/security/lib/cacerts/VerifyCACerts.java Mon Apr 08 12:19:51 2019 -0400 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2017, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -25,7 +25,7 @@ /** * @test * @bug 8189131 8198240 8191844 8189949 8191031 8196141 8204923 8195774 8199779 - * 8209452 8209506 8210432 8195793 + * 8209452 8209506 8210432 8195793 8222089 * @summary Check root CA entries in cacerts file */ import java.io.File; @@ -237,7 +237,12 @@ // Exception list to 90 days expiry policy // No error will be reported if certificate in this list expires - private static final HashSet<String> EXPIRY_EXC_ENTRIES = new HashSet<>(); + private static final HashSet<String> EXPIRY_EXC_ENTRIES = new HashSet<>() { + { + add("certplusclass2primaryca [jdk]"); + add("certplusclass3pprimaryca [jdk]"); + } + }; // Ninety days in milliseconds private static final long NINETY_DAYS = 7776000000L;