Skip to content

Commit

Permalink
8319128: sun/security/pkcs11 tests fail on OL 7.9 aarch64
Browse files Browse the repository at this point in the history
8319136: Skip pkcs11 tests on linux-aarch64

Reviewed-by: lucy
Backport-of: 1f9b03e597d87679964e8772c6bea538c74feb2c
  • Loading branch information
Andrew Lu committed Apr 9, 2024
1 parent 2e46aad commit aa16bfe
Show file tree
Hide file tree
Showing 5 changed files with 41 additions and 9 deletions.
Expand Up @@ -52,7 +52,7 @@ private static enum MethodGroup {
MODE("isInt", "isMixed", "isComp"),
IGNORED("isEmulatedClient", "isDebugBuild", "isFastDebugBuild", "isSlowDebugBuild",
"hasSA", "isRoot", "isTieredSupported", "areCustomLoadersSupportedForCDS",
"isHardenedOSX", "hasOSXPlistEntries");
"isHardenedOSX", "hasOSXPlistEntries", "isOracleLinux7");

public final List<String> methodNames;

Expand Down
17 changes: 14 additions & 3 deletions test/jdk/sun/security/pkcs11/PKCS11Test.java
Expand Up @@ -57,7 +57,11 @@
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 jdk.test.lib.Platform;
import jdk.test.lib.artifacts.Artifact;
import jdk.test.lib.artifacts.ArtifactResolver;
import jdk.test.lib.artifacts.ArtifactResolverException;
Expand Down Expand Up @@ -925,11 +929,18 @@ private static String fetchNssLib(String osId) {
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":
return fetchNssLib(LINUX_AARCH64.class);

if (Platform.isOracleLinux7()) {
throw new SkippedException("Skipping Oracle Linux prior to v8");
} else {
return fetchNssLib(LINUX_AARCH64.class);
}
default:
return null;
}
Expand Down
15 changes: 10 additions & 5 deletions test/jdk/sun/security/pkcs11/Provider/MultipleLogins.java
@@ -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
Expand All @@ -21,6 +21,7 @@
* questions.
*/


import sun.security.pkcs11.SunPKCS11;

import javax.security.auth.Subject;
Expand All @@ -32,12 +33,10 @@
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";
Expand All @@ -47,7 +46,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.");
Expand Down
1 change: 1 addition & 0 deletions test/jdk/sun/security/pkcs11/Provider/MultipleLogins.sh
Expand Up @@ -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
Expand Down
15 changes: 15 additions & 0 deletions test/lib/jdk/test/lib/Platform.java
Expand Up @@ -33,6 +33,7 @@
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 {
Expand Down Expand Up @@ -338,6 +339,20 @@ private static boolean isArch(String archnameRE) {
.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
Expand Down

1 comment on commit aa16bfe

@openjdk-notifier
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.