Skip to content

Commit aa0ebee

Browse files
committedSep 18, 2023
8316341: sun/security/pkcs11/PKCS11Test.java needs adjustment on Linux ppc64le Ubuntu 22
Reviewed-by: lucy, clanger
1 parent ca3fe7b commit aa0ebee

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed
 

‎test/jdk/sun/security/pkcs11/PKCS11Test.java

+4-1
Original file line numberDiff line numberDiff line change
@@ -616,7 +616,10 @@ private static Map<String, String[]> getOsMap() {
616616
"/usr/lib/x86_64-linux-gnu/nss/",
617617
"/usr/lib64/"});
618618
osMap.put("Linux-ppc64-64", new String[]{"/usr/lib64/"});
619-
osMap.put("Linux-ppc64le-64", new String[]{"/usr/lib64/"});
619+
osMap.put("Linux-ppc64le-64", new String[]{
620+
"/usr/lib/powerpc64le-linux-gnu/",
621+
"/usr/lib/powerpc64le-linux-gnu/nss/",
622+
"/usr/lib64/"});
620623
osMap.put("Linux-s390x-64", new String[]{"/usr/lib64/"});
621624
osMap.put("Windows-x86-32", new String[]{});
622625
osMap.put("Windows-amd64-64", new String[]{});

0 commit comments

Comments
 (0)
Please sign in to comment.