Skip to content

Commit ac1cd31

Browse files
committedFeb 1, 2024
8325096: Test java/security/cert/CertPathBuilder/akiExt/AKISerialNumber.java is failing
Reviewed-by: weijun
1 parent 8e45182 commit ac1cd31

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed
 

‎test/jdk/java/security/cert/CertPathBuilder/akiExt/AKISerialNumber.java

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2014, 2024, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -118,6 +118,8 @@ public static void main(String[] args) throws Exception {
118118
PKIXBuilderParameters params = new PKIXBuilderParameters
119119
(Collections.singleton(anchor), sel);
120120
params.setRevocationEnabled(false);
121+
// Set date to 2024-01-01 to satisfy cert constraints
122+
params.setDate(new java.util.Date(1704067200000l));
121123

122124
ArrayList<X509Certificate> certs = new ArrayList<>();
123125
certs.add(intCert);

0 commit comments

Comments
 (0)
Please sign in to comment.