8158620: Enable debug option for sun/security/ec/TestEC.java
Reviewed-by: mullan, xuelei
This commit is contained in:
parent
5c046950ce
commit
bc833edb16
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user