From bc833edb16d79355d71b85db1a621014214ae76b Mon Sep 17 00:00:00 2001 From: Tim Du Date: Mon, 13 Jun 2016 00:47:32 -0700 Subject: [PATCH] 8158620: Enable debug option for sun/security/ec/TestEC.java Reviewed-by: mullan, xuelei --- jdk/test/sun/security/ec/TestEC.java | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/jdk/test/sun/security/ec/TestEC.java b/jdk/test/sun/security/ec/TestEC.java index 9418fb81da6..43599ab5af4 100644 --- a/jdk/test/sun/security/ec/TestEC.java +++ b/jdk/test/sun/security/ec/TestEC.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2009, 2015, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2009, 2016, 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 @@ -59,12 +59,21 @@ import java.security.Security; public class TestEC { + /* + * Turn on SSL debugging + */ + private static final boolean debug = true; + public static void main(String[] args) throws Exception { // reset security properties to make sure that the algorithms // and keys used in this test are not disabled. Security.setProperty("jdk.tls.disabledAlgorithms", ""); Security.setProperty("jdk.certpath.disabledAlgorithms", ""); + if (debug) { + System.setProperty("javax.net.debug", "all"); + } + ProvidersSnapshot snapshot = ProvidersSnapshot.create(); try { main0(args);