8158620: Enable debug option for sun/security/ec/TestEC.java

Reviewed-by: mullan, xuelei
This commit is contained in:
Tim Du 2016-06-13 00:47:32 -07:00 committed by Frank Yuan
parent 5c046950ce
commit bc833edb16

View File

@ -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);