Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion cvm.mk
Original file line number Diff line number Diff line change
Expand Up @@ -356,6 +356,10 @@ endif
$(call overlay_single,jdk8u,langtools/test/tools/javac/annotations/8218152/MalformedAnnotationProcessorTests.java, $(JDK8_SRCROOT))
$(call overlay_single,jdk8u,langtools/test/tools/javac/6508981/TestInferBinaryName.java, $(JDK8_SRCROOT))

-overlay-hotspot8:
$(call overlay_single,jdk8u,hotspot/test/testlibrary/com/oracle/java/testlibrary/Platform.java, $(JDK8_SRCROOT))
$(call overlay_single,jdk8u,hotspot/test/testlibrary/com/oracle/java/testlibrary/cli/CommandLineOptionTest.java, $(JDK8_SRCROOT))

-overlay-jtreg:
$(call overlay_single,jdk8u,test/jtreg-ext/requires/VMProps.java, $(JDK8_SRCROOT))

Expand All @@ -376,7 +380,7 @@ test_jtreg8_jdk_core: -setup_jtreg8 -overlay-jdk8
$(eval JT_TEST = ":jdk_core")
$(call run_jtreg8_test,$(JDK8_SRCROOT)/jdk/test,$(JT_TEST),$(JT_OPTS_EXCLUDE))

test_jtreg8_hotspot8: -setup_jtreg8 -overlay-jtreg
test_jtreg8_hotspot8: -setup_jtreg8 -overlay-jtreg -overlay-hotspot8
$(eval JT_REPO = hotspot)
$(call run_jtreg8_test,$(JDK8_SRCROOT)/$(JT_REPO)/test,$(JT_TEST),$(JT_OPTS_EXCLUDE))

Expand Down
1 change: 0 additions & 1 deletion cvm/conf/jtreg_hotspot8_excludes_aarch64.list
Original file line number Diff line number Diff line change
Expand Up @@ -186,4 +186,3 @@ compiler/7184394/TestAESMain.java
compiler/intrinsics/sha/cli/TestUseSHA1IntrinsicsOptionOnSupportedCPU.java
compiler/intrinsics/sha/cli/TestUseSHA256IntrinsicsOptionOnSupportedCPU.java
compiler/intrinsics/sha/cli/TestUseSHA512IntrinsicsOptionOnSupportedCPU.java
compiler/intrinsics/sha/cli/TestUseSHAOptionOnSupportedCPU.java
9 changes: 1 addition & 8 deletions cvm/conf/jtreg_hotspot8_excludes_x64.list
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,9 @@ compiler/profiling/spectrapredefineclass/Launcher.java
compiler/rangechecks/TestRangeCheckSmearing.java
compiler/rtm/cli/TestPrintPreciseRTMLockingStatisticsOptionOnUnsupportedConfig.java
compiler/rtm/cli/TestRTMAbortRatioOptionOnUnsupportedConfig.java
compiler/rtm/cli/TestRTMAbortThresholdOption.java
compiler/rtm/cli/TestRTMLockingCalculationDelayOption.java
compiler/rtm/cli/TestRTMLockingThresholdOption.java
compiler/rtm/cli/TestRTMRetryCountOption.java
compiler/rtm/cli/TestRTMSpinLoopCountOption.java
compiler/rtm/cli/TestRTMTotalCountIncrRateOptionOnUnsupportedConfig.java
compiler/rtm/cli/TestUseRTMDeoptOptionOnUnsupportedConfig.java
compiler/rtm/cli/TestUseRTMForStackLocksOptionOnUnsupportedConfig.java
compiler/rtm/cli/TestUseRTMXendForLockBusyOption.java
compiler/stable/TestStableBoolean.java
compiler/stable/TestStableChar.java
compiler/stable/TestStableByte.java
Expand Down Expand Up @@ -175,7 +169,6 @@ testlibrary/ctw/test/JarDirTest.java
testlibrary/ctw/test/JarsTest.java
testlibrary_tests/whitebox/vm_flags/DoubleTest.java
testlibrary_tests/whitebox/vm_flags/IntxTest.java
runtime/NMT/MallocStressTest.java
testlibrary_tests/TestMutuallyExclusivePlatformPredicates.java
vmTestbase/nsk/jdb/monitor/monitor002/monitor002.java

Expand All @@ -184,5 +177,5 @@ compiler/intrinsics/sha/cli/TestUseSHA1IntrinsicsOptionOnUnsupportedCPU.java
compiler/intrinsics/sha/cli/TestUseSHA256IntrinsicsOptionOnUnsupportedCPU.java
compiler/intrinsics/sha/cli/TestUseSHA512IntrinsicsOptionOnUnsupportedCPU.java
compiler/intrinsics/sha/cli/TestUseSHAOptionOnUnsupportedCPU.java
runtime/containers/docker/DockerBasicTest.java
compiler/rtm/cli/TestUseRTMLockingOptionOnUnsupportedVM.java
runtime/containers/docker/DockerBasicTest.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,199 @@
// This project is a modified version of OpenJDK, licensed under GPL v2.
// Modifications Copyright (C) 2025 ByteDance Inc.
/*
* Copyright (c) 2013, 2018, 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
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/

package com.oracle.java.testlibrary;

import java.util.regex.Pattern;

import com.oracle.java.testlibrary.Utils;

public class Platform {
private static final String osName = System.getProperty("os.name");
private static final String dataModel = System.getProperty("sun.arch.data.model");
private static final String vmVersion = System.getProperty("java.vm.version");
private static final String osArch = System.getProperty("os.arch");
public static final String vmName = System.getProperty("java.vm.name");
private static final String userName = System.getProperty("user.name");

public static boolean isClient() {
return vmName.endsWith(" Client VM");
}

public static boolean isServer() {
return vmName.endsWith(" Server VM");
}

public static boolean isCVM() {
return vmName.contains("CompoundVM");
}

public static boolean isGraal() {
return vmName.endsWith(" Graal VM");
}

public static boolean isMinimal() {
return vmName.endsWith(" Minimal VM");
}

public static boolean isEmbedded() {
return vmName.contains("Embedded");
}

public static boolean is32bit() {
return dataModel.equals("32");
}

public static boolean is64bit() {
return dataModel.equals("64");
}

public static boolean isAix() {
return isOs("aix");
}

public static boolean isLinux() {
return isOs("linux");
}

public static boolean isOSX() {
return isOs("mac");
}

public static boolean isSolaris() {
return isOs("sunos");
}

public static boolean isWindows() {
return isOs("win");
}

private static boolean isOs(String osname) {
return osName.toLowerCase().startsWith(osname.toLowerCase());
}

public static String getOsName() {
return osName;
}

public static boolean isDebugBuild() {
return vmVersion.toLowerCase().contains("debug");
}

public static String getVMVersion() {
return vmVersion;
}

// Returns true for sparc and sparcv9.
public static boolean isSparc() {
return isArch("sparc.*");
}

public static boolean isARM() {
return isArch("arm.*");
}

public static boolean isPPC() {
return isArch("ppc.*");
}

public static boolean isX86() {
// On Linux it's 'i386', Windows 'x86' without '_64' suffix.
return isArch("(i386)|(x86(?!_64))");
}

public static boolean isX64() {
// On OSX it's 'x86_64' and on other (Linux, Windows and Solaris) platforms it's 'amd64'
return isArch("(amd64)|(x86_64)");
}

public static boolean isAArch64() {
return isArch("aarch64");
}

private static boolean isArch(String archnameRE) {
return Pattern.compile(archnameRE, Pattern.CASE_INSENSITIVE)
.matcher(osArch)
.matches();
}

public static String getOsArch() {
return osArch;
}

/**
* Return a boolean for whether we expect to be able to attach
* the SA to our own processes on this system.
*/
public static boolean shouldSAAttach() throws Exception {

if (isAix()) {
return false; // SA not implemented.
} else if (isLinux()) {
return canPtraceAttachLinux();
} else if (isOSX()) {
return canAttachOSX();
} else {
// Other platforms expected to work:
return true;
}
}

/**
* On Linux, first check the SELinux boolean "deny_ptrace" and return false
* as we expect to be denied if that is "1". Then expect permission to attach
* if we are root, so return true. Then return false for an expected denial
* if "ptrace_scope" is 1, and true otherwise.
*/
public static boolean canPtraceAttachLinux() throws Exception {

// SELinux deny_ptrace:
String deny_ptrace = Utils.fileAsString("/sys/fs/selinux/booleans/deny_ptrace");
if (deny_ptrace != null && deny_ptrace.contains("1")) {
// ptrace will be denied:
return false;
}

if (userName.equals("root")) {
return true;
}

// ptrace_scope:
String ptrace_scope = Utils.fileAsString("/proc/sys/kernel/yama/ptrace_scope");
if (ptrace_scope != null && ptrace_scope.contains("1")) {
// ptrace will be denied:
return false;
}

// Otherwise expect to be permitted:
return true;
}

/**
* On OSX, expect permission to attach only if we are root.
*/
public static boolean canAttachOSX() throws Exception {
return userName.equals("root");
}
}
Loading
Loading