1
1
/*
2
- * Copyright (c) 2023, 2024 , Oracle and/or its affiliates. All rights reserved.
2
+ * Copyright (c) 2023, 2025 , Oracle and/or its affiliates. All rights reserved.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
34
34
* @modules java.base/sun.security.x509
35
35
* java.base/sun.security.provider.certpath
36
36
* java.base/sun.security.util
37
- * @library ../../../../../java/security/testlibrary
38
- * @build CertificateBuilder SimpleOCSPServer
37
+ * @library /test/lib
39
38
* @run main/othervm -Djava.security.debug=certpath OCSPTimeout 1000 true
40
39
* @run main/othervm -Djava.security.debug=certpath
41
40
* -Dcom.sun.security.ocsp.readtimeout=5 OCSPTimeout 1000 true
59
58
import java .security .cert .*;
60
59
import java .util .concurrent .TimeUnit ;
61
60
62
- import sun . security . testlibrary .SimpleOCSPServer ;
63
- import sun . security . testlibrary .CertificateBuilder ;
61
+ import jdk . test . lib . security .SimpleOCSPServer ;
62
+ import jdk . test . lib . security .CertificateBuilder ;
64
63
65
64
import static java .security .cert .PKIXRevocationChecker .Option .*;
66
65
@@ -84,7 +83,7 @@ public class OCSPTimeout {
84
83
85
84
public static void main (String [] args ) throws Exception {
86
85
int ocspTimeout = 15000 ;
87
- boolean expected = false ;
86
+ boolean expected ;
88
87
89
88
createPKI ();
90
89
@@ -195,7 +194,6 @@ private static void createPKI() throws Exception {
195
194
rootOcsp = new SimpleOCSPServer (rootKeystore , passwd , ROOT_ALIAS , null );
196
195
rootOcsp .enableLog (debug );
197
196
rootOcsp .setNextUpdateInterval (3600 );
198
- rootOcsp .setDisableContentLength (true );
199
197
rootOcsp .start ();
200
198
201
199
// Wait 60 seconds for server ready
0 commit comments