Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
taoliult committed Dec 4, 2024
1 parent 08ae456 commit 3dd0402
Showing 1 changed file with 20 additions and 20 deletions.
40 changes: 20 additions & 20 deletions closed/test/jdk/openj9/internal/security/TestProviders.java
Original file line number Diff line number Diff line change
Expand Up @@ -47,28 +47,28 @@ private static Stream<Arguments> patternMatches_expectedExitValue0() {
return Stream.of(
// Test strict profile provider list.
Arguments.of("TestBase.Version",
System.getProperty("test.src") + "/provider-java.security",
"(?s)(?=.*Sun)(?=.*\\bSunJCE\\b)(?=.*SunJSSE)"),
// Test default profile provider list.
Arguments.of("TestBase",
System.getProperty("test.src") + "/provider-java.security",
"(?s)(?=.*Sun)(?=.*SunRsaSign)(?=.*SunEC)(?=.*SunJSSE)"
+ "(?=.*SunJCE)(?=.*SunJGSS)(?=.*SunSASL)"
+ "(?=.*XMLDSig)(?=.*SunPCSC)(?=.*JdkLDAP)(?=.*JdkSASL)"),
// Test extended profile provider list.
Arguments.of("TestBase.Version-Extended",
System.getProperty("test.src") + "/provider-java.security",
"(?s)(?=.*Sun)(?=.*SunRsaSign)(?=.*SunEC)(?=.*SunJSSE)"
+ "(?=.*SunJCE)(?=.*SunJGSS)(?=.*SunSASL)"
+ "(?=.*XMLDSig)(?=.*SunPCSC)(?=.*JdkLDAP)(?=.*JdkSASL)"),
// Test update provider list with value.
Arguments.of("Test-Profile.Updated_1",
System.getProperty("test.src") + "/provider-java.security",
"(?s)(?=.*Sun)(?=.*\\bSunJCE\\b)(?=.*SunSASL)"),
// Test update provider list with null.
Arguments.of("Test-Profile.Updated_2",
System.getProperty("test.src") + "/provider-java.security",
"(?s)(?=.*Sun)(?=.*\\bSunJCE\\b)(?=.*SunJSSE)")
// // Test default profile provider list.
// Arguments.of("TestBase",
// System.getProperty("test.src") + "/provider-java.security",
// "(?s)(?=.*Sun)(?=.*SunRsaSign)(?=.*SunEC)(?=.*SunJSSE)"
// + "(?=.*SunJCE)(?=.*SunJGSS)(?=.*SunSASL)"
// + "(?=.*XMLDSig)(?=.*SunPCSC)(?=.*JdkLDAP)(?=.*JdkSASL)"),
// // Test extended profile provider list.
// Arguments.of("TestBase.Version-Extended",
// System.getProperty("test.src") + "/provider-java.security",
// "(?s)(?=.*Sun)(?=.*SunRsaSign)(?=.*SunEC)(?=.*SunJSSE)"
// + "(?=.*SunJCE)(?=.*SunJGSS)(?=.*SunSASL)"
// + "(?=.*XMLDSig)(?=.*SunPCSC)(?=.*JdkLDAP)(?=.*JdkSASL)"),
// // Test update provider list with value.
// Arguments.of("Test-Profile.Updated_1",
// System.getProperty("test.src") + "/provider-java.security",
// "(?s)(?=.*Sun)(?=.*\\bSunJCE\\b)(?=.*SunSASL)"),
// // Test update provider list with null.
// Arguments.of("Test-Profile.Updated_2",
// System.getProperty("test.src") + "/provider-java.security",
// "(?s)(?=.*Sun)(?=.*\\bSunJCE\\b)(?=.*SunJSSE)")
);
}

Expand Down

0 comments on commit 3dd0402

Please sign in to comment.