8319128: sun/security/pkcs11 tests fail on OL 7.9 aarch64
Reviewed-by: mbaesken
This commit is contained in:
parent
9fd855ed47
commit
c2e77e2f17
@ -624,7 +624,6 @@ sun/security/provider/PolicyFile/GrantAllPermToExtWhenNoPolicy.java 8039280 gene
|
||||
sun/security/provider/PolicyParser/PrincipalExpansionError.java 8039280 generic-all
|
||||
|
||||
sun/security/pkcs11/sslecc/ClientJSSEServerJSSE.java 8316183 linux-ppc64le
|
||||
sun/security/pkcs11/Provider/MultipleLogins.sh 8319128 linux-aarch64
|
||||
|
||||
############################################################################
|
||||
|
||||
|
@ -54,10 +54,14 @@ import java.util.Properties;
|
||||
import java.util.ServiceConfigurationError;
|
||||
import java.util.ServiceLoader;
|
||||
import java.util.Set;
|
||||
import java.util.regex.Matcher;
|
||||
import java.util.regex.Pattern;
|
||||
import java.util.stream.Collectors;
|
||||
|
||||
import javax.crypto.SecretKey;
|
||||
import javax.crypto.spec.SecretKeySpec;
|
||||
|
||||
import jdk.test.lib.Platform;
|
||||
import jdk.test.lib.artifacts.Artifact;
|
||||
import jdk.test.lib.artifacts.ArtifactResolver;
|
||||
import jdk.test.lib.artifacts.ArtifactResolverException;
|
||||
@ -743,10 +747,18 @@ public abstract class PKCS11Test {
|
||||
return fetchNssLib(MACOSX_AARCH64.class);
|
||||
|
||||
case "Linux-amd64-64":
|
||||
return fetchNssLib(LINUX_X64.class);
|
||||
if (Platform.isOracleLinux7()) {
|
||||
throw new SkippedException("Skipping Oracle Linux prior to v8");
|
||||
} else {
|
||||
return fetchNssLib(LINUX_X64.class);
|
||||
}
|
||||
|
||||
case "Linux-aarch64-64":
|
||||
throw new SkippedException("Per JDK-8319128, skipping Linux aarch64 platforms.");
|
||||
if (Platform.isOracleLinux7()) {
|
||||
throw new SkippedException("Skipping Oracle Linux prior to v8");
|
||||
} else {
|
||||
return fetchNssLib(LINUX_AARCH64.class);
|
||||
}
|
||||
default:
|
||||
return null;
|
||||
}
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2021, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2021, 2023, 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
|
||||
@ -21,6 +21,7 @@
|
||||
* questions.
|
||||
*/
|
||||
|
||||
|
||||
import sun.security.pkcs11.SunPKCS11;
|
||||
|
||||
import javax.security.auth.Subject;
|
||||
@ -32,12 +33,10 @@ import javax.security.auth.login.LoginException;
|
||||
import java.io.IOException;
|
||||
import java.lang.ref.WeakReference;
|
||||
import java.security.*;
|
||||
import java.util.Iterator;
|
||||
import java.util.PropertyPermission;
|
||||
import java.util.ServiceConfigurationError;
|
||||
import java.util.ServiceLoader;
|
||||
|
||||
import jdk.test.lib.util.ForceGC;
|
||||
import jtreg.SkippedException;
|
||||
|
||||
public class MultipleLogins {
|
||||
private static final String KS_TYPE = "PKCS11";
|
||||
@ -46,7 +45,13 @@ public class MultipleLogins {
|
||||
static final Policy DEFAULT_POLICY = Policy.getPolicy();
|
||||
|
||||
public static void main(String[] args) throws Exception {
|
||||
String nssConfig = PKCS11Test.getNssConfig();
|
||||
String nssConfig = null;
|
||||
try {
|
||||
nssConfig = PKCS11Test.getNssConfig();
|
||||
} catch (SkippedException exc) {
|
||||
System.out.println("Skipping test: " + exc.getMessage());
|
||||
}
|
||||
|
||||
if (nssConfig == null) {
|
||||
// No test framework support yet. Ignore
|
||||
System.out.println("No NSS config found. Skipping.");
|
||||
|
@ -26,6 +26,7 @@
|
||||
# @summary
|
||||
# @library /test/lib/
|
||||
# @build jdk.test.lib.util.ForceGC
|
||||
# jdk.test.lib.Platform
|
||||
# @run shell MultipleLogins.sh
|
||||
|
||||
# set a few environment variables so that the shell-script can run stand-alone
|
||||
|
@ -53,7 +53,7 @@ public class TestMutuallyExclusivePlatformPredicates {
|
||||
IGNORED("isEmulatedClient", "isDebugBuild", "isFastDebugBuild", "isMusl",
|
||||
"isSlowDebugBuild", "hasSA", "isRoot", "isTieredSupported",
|
||||
"areCustomLoadersSupportedForCDS", "isDefaultCDSArchiveSupported",
|
||||
"isHardenedOSX", "hasOSXPlistEntries");
|
||||
"isHardenedOSX", "hasOSXPlistEntries", "isOracleLinux7");
|
||||
|
||||
public final List<String> methodNames;
|
||||
|
||||
|
@ -33,6 +33,7 @@ import java.nio.file.Paths;
|
||||
import java.security.AccessController;
|
||||
import java.security.PrivilegedAction;
|
||||
import java.util.concurrent.TimeUnit;
|
||||
import java.util.regex.Matcher;
|
||||
import java.util.regex.Pattern;
|
||||
|
||||
public class Platform {
|
||||
@ -348,6 +349,20 @@ public class Platform {
|
||||
.matches();
|
||||
}
|
||||
|
||||
public static boolean isOracleLinux7() {
|
||||
if (System.getProperty("os.name").toLowerCase().contains("linux") &&
|
||||
System.getProperty("os.version").toLowerCase().contains("el")) {
|
||||
Pattern p = Pattern.compile("el(\\d+)");
|
||||
Matcher m = p.matcher(System.getProperty("os.version"));
|
||||
if (m.find()) {
|
||||
try {
|
||||
return Integer.parseInt(m.group(1)) <= 7;
|
||||
} catch (NumberFormatException nfe) {}
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns file extension of shared library, e.g. "so" on linux, "dll" on windows.
|
||||
* @return file extension
|
||||
|
Loading…
Reference in New Issue
Block a user