File tree 1 file changed +3
-3
lines changed
closed/test/jdk/openj9/internal/security
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 56
56
57
57
public class TestConstraintsSuccess {
58
58
59
- private static void getInstances () throws NoSuchAlgorithmException {
59
+ private static void getInstances () throws Exception {
60
60
CertificateFactory .getInstance ("X.509" );
61
61
CertPathValidator .getInstance ("PKIX" );
62
62
MessageDigest .getInstance ("SHA-256" );
@@ -83,7 +83,7 @@ private static void getInstances() throws NoSuchAlgorithmException {
83
83
}
84
84
85
85
@ Test
86
- public void runWithConstraints () {
86
+ public void runWithConstraints () throws Exception {
87
87
OutputAnalyzer outputAnalyzer = ProcessTools .executeTestJava (
88
88
"-Dsemeru.customprofile=RestrictedSecurity.TestConstraints.Version" ,
89
89
"-Djava.security.properties=" + System .getProperty ("test.src" ) + "/constraints-java.security" ,
@@ -93,7 +93,7 @@ public void runWithConstraints() {
93
93
outputAnalyzer .shouldHaveExitValue (0 );
94
94
}
95
95
96
- public static void main (String [] args ) throws NoSuchAlgorithmException {
96
+ public static void main (String [] args ) throws Exception {
97
97
getInstances ();
98
98
}
99
99
}
You can’t perform that action at this time.
0 commit comments