test/jdk/sun/security/ssl/SSLContextImpl/IllegalProtocolProperty.java
changeset 59302 24e8cdead5f3
parent 47216 71c04702a3d5
--- a/test/jdk/sun/security/ssl/SSLContextImpl/IllegalProtocolProperty.java	Thu Nov 28 07:05:13 2019 +0100
+++ b/test/jdk/sun/security/ssl/SSLContextImpl/IllegalProtocolProperty.java	Wed Nov 27 22:11:08 2019 -0800
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2013, 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
@@ -26,7 +26,7 @@
 
 /*
  * @test
- * @bug 7093640
+ * @bug 7093640 8234725
  * @summary Enable TLS 1.1 and TLS 1.2 by default in client side of SunJSSE
  * @run main/othervm -Djdk.tls.client.protocols="XSLv3,TLSv1"
  *      IllegalProtocolProperty
@@ -43,7 +43,8 @@
         TLS_CV_04("TLSv1", "TLSv1", "TLSv1.2", false),
         TLS_CV_05("TLSv1.1", "TLSv1.1", "TLSv1.2", false),
         TLS_CV_06("TLSv1.2", "TLSv1.2", "TLSv1.2", false),
-        TLS_CV_07("Default", "TLSv1", "TLSv1.2", true);
+        TLS_CV_07("Default", "TLSv1", "TLSv1.2", true),
+        TLS_CV_08("TLSv1.3", "TLSv1.3", "TLSv1.3", false);
 
         final String contextVersion;
         final String defaultProtocolVersion;