Skip to content

Commit 29f4069

Browse files
sophia-guoCheng JinMesbah-Alampshiptonbabsingh
authored
(V0.9.6 release) Cherry pick for V0.9.6 release-jdk20 (#4414)
* Set up jdk for jck interactive (#4239) * Set up jdk for jck interactive Signed-off-by: Sophia Guo <[email protected]> * Add parameter SETUP_JCK_RUN explicitely Signed-off-by: Sophia Guo <[email protected]> --------- Signed-off-by: Sophia Guo <[email protected]> * [Jtreg/FFI] Disable FFI related test suite in JDK20 (#4318) The change is to exclude the FFI related test cases in AttachTest.java captured at eclipse-openj9/openj9#16656 given the FFI related code in JDK20 has been disabled for the moment and will be enabled once the code has been updated against the latest APIs. Signed-off-by: ChengJin01 <[email protected]> * Fix if condition for tck interactive setup (#4320) Signed-off-by: Mesbah Alam <[email protected]> * [Jtreg/FFI] update the issue no for FFI test suites in JDK20 (#4324) The change updates the issue no by replacing #16656 with #16565 as #16656 will be closed as duplicate of #16565, in which case #16565 serves as the only issue that keeps track of the excluded FFI test suites in JDK20. Signed-off-by: ChengJin01 <[email protected]> * Add OpenJ9 timeout handler to security and rmi extended tests (#4333) Signed-off-by: Peter Shipton <[email protected]> * Disable GetStackTraceSuspendedStressTest (#4360) Related: eclipse-openj9/openj9#16751 Signed-off-by: Babneet Singh <[email protected]> * Update JDK20 exclude list (#4371) Re-enable Thread related tests fixed in JDK19 Signed-off-by: Jack Lu <[email protected]> * Disable ContinuationTest (#4380) ContinuationTest is being disabled for OpenJ9 since it is specific to the reference implementation and it does not apply to OpenJ9. Signed-off-by: Babneet Singh <[email protected]> * Permanently disable ContinuationTest (#4382) Refer to #1297 to permanently exclude. Related: eclipse-openj9/openj9#16792 Related: #1297 Signed-off-by: Babneet Singh <[email protected]> * Exclude jdk/internal/platform/docker/TestDockerCpuMetrics.java (#4387) Signed-off-by: Jason Feng <[email protected]> * AUTO: auto exclude test jdk_svc_sanity plat=ppc64_aix impl=hotspot (#4389) - related: #4218 (comment) Signed-off-by: GitHub <[email protected]> Co-authored-by: smlambert <[email protected]> --------- Signed-off-by: Sophia Guo <[email protected]> Signed-off-by: ChengJin01 <[email protected]> Signed-off-by: Mesbah Alam <[email protected]> Signed-off-by: Peter Shipton <[email protected]> Signed-off-by: Babneet Singh <[email protected]> Signed-off-by: Jack Lu <[email protected]> Signed-off-by: Jason Feng <[email protected]> Signed-off-by: GitHub <[email protected]> Co-authored-by: Cheng Jin <[email protected]> Co-authored-by: Mesbah Alam <[email protected]> Co-authored-by: Peter Shipton <[email protected]> Co-authored-by: Babneet Singh <[email protected]> Co-authored-by: Jack Lu <[email protected]> Co-authored-by: Jason Feng <[email protected]> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: smlambert <[email protected]>
1 parent 6ee8ea6 commit 29f4069

9 files changed

+93
-41
lines changed

buildenv/jenkins/JenkinsfileBase

+52-3
Original file line numberDiff line numberDiff line change
@@ -422,11 +422,8 @@ def setup() {
422422
CODE_COVERAGE_OPTION = params.CODE_COVERAGE ? "--code_coverage true" : ""
423423

424424
CURL_OPTS = (params.CURL_OPTS) ? "--curl_opts \"${params.CURL_OPTS}\"" : ""
425-
426-
427425
GET_SH_CMD = "./get.sh -s `pwd`/.. -p $PLATFORM -r ${SDK_RESOURCE} ${JDK_VERSION_OPTION} ${JDK_IMPL_OPTION} ${CUSTOMIZED_SDK_URL_OPTION} ${CLONE_OPENJ9_OPTION} ${OPENJ9_REPO_OPTION} ${OPENJ9_BRANCH_OPTION} ${OPENJ9_SHA_OPTION} ${TKG_REPO_OPTION} ${TKG_BRANCH_OPTION} ${VENDOR_TEST_REPOS} ${VENDOR_TEST_BRANCHES} ${VENDOR_TEST_DIRS} ${VENDOR_TEST_SHAS} ${TEST_IMAGES_REQUIRED} ${DEBUG_IMAGES_REQUIRED} ${CODE_COVERAGE_OPTION} ${CURL_OPTS}"
428426
RESOLVED_MAKE = "if [ `uname` = AIX ] || [ `uname` = SunOS ] || [ `uname` = *BSD ]; then MAKE=gmake; else MAKE=make; fi"
429-
430427
dir( WORKSPACE) {
431428
// use sshagent with Jenkins credentials ID for all platforms except zOS
432429
// on zOS use the user's ssh key
@@ -440,6 +437,55 @@ def setup() {
440437
}
441438
}
442439

440+
def setup_jck_interactives() {
441+
def targetDir = "${env.WORKSPACE}/../../jck_run/jdk${JDK_VERSION}/jdk"
442+
if (PLATFORM.contains("windows")) {
443+
targetDir = "c:/Users/jenkins/jck_run/jdk${JDK_VERSION}/jdk"
444+
}
445+
def tarBall = CUSTOMIZED_SDK_URL.tokenize('/').last()
446+
echo "tarBall is ${tarBall}"
447+
def jckRunDirExists = sh(script: """
448+
if [ -d "${targetDir}" ]; then
449+
echo true
450+
else
451+
echo false
452+
fi
453+
""", returnStdout: true).toBoolean()
454+
455+
if (jckRunDirExists) {
456+
def jdkDir = ""
457+
if (PLATFORM.contains("windows")) {
458+
jdkDir = sh(script: "unzip -l `pwd`/openjdkbinary/${tarBall} | head -n 4 | tail -n 1 | xargs -n 1 echo | tail -n 1", returnStdout: true).trim().replaceFirst(".\$","")
459+
if (PLATFORM.contains("x86-32_windows")) {
460+
jdkDir = "${jdkDir}_32"
461+
} else if (PLATFORM.contains("x86-64_windows")) {
462+
jdkDir = "${jdkDir}_64"
463+
}
464+
} else {
465+
jdkDir = sh(script: "tar -tf `pwd`/openjdkbinary/${tarBall} | head -1", returnStdout: true).trim().replaceFirst(".\$","")
466+
}
467+
def jckRunDir = "${targetDir}/${jdkDir}"
468+
def jckRunJDKExists = sh(script: """
469+
if [ -d "${jckRunDir}" ]; then
470+
echo true
471+
else
472+
echo false
473+
fi
474+
""", returnStdout: true).toBoolean()
475+
476+
if (!jckRunJDKExists) {
477+
sh returnStatus: true, script: """
478+
cd ${targetDir}
479+
mkdir ${jdkDir}
480+
cd ${jdkDir}
481+
cp -r ${TEST_JDK_HOME}/* .
482+
chgrp -R jck ${targetDir}/${jdkDir}
483+
chmod -R 775 ${targetDir}/${jdkDir}
484+
"""
485+
}
486+
}
487+
}
488+
443489
def getJobProperties() {
444490
def jobProperties = "./aqa-tests/job.properties"
445491
if (fileExists("${jobProperties}")) {
@@ -469,6 +515,9 @@ def get_sources() {
469515
sh "$GET_SH_CMD"
470516
}
471517
}
518+
if (params.SETUP_JCK_RUN && env.BUILD_LIST.contains('jck') && SDK_RESOURCE.contains('customized')) {
519+
setup_jck_interactives()
520+
}
472521
}
473522
def makeCompileTest(){
474523
String makeTestCmd = "bash ./compile.sh ${USE_TESTENV_PROPERTIES}"

buildenv/jenkins/aqaTestPipeline.groovy

+4-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ def LABEL = (params.LABEL) ?: ""
1515
def LABEL_ADDITION = (params.LABEL_ADDITION) ?: ""
1616
def TEST_FLAG = (params.TEST_FLAG) ?: ""
1717
def APPLICATION_OPTIONS = (params.APPLICATION_OPTIONS) ?: ""
18+
def SETUP_JCK_RUN = params.SETUP_JCK_RUN ?: false
19+
1820

1921
// Use BUILD_USER_ID if set and jdk-JDK_VERSIONS
2022
def DEFAULT_SUFFIX = (env.BUILD_USER_ID) ? "${env.BUILD_USER_ID} - jdk-${params.JDK_VERSIONS}" : "jdk-${params.JDK_VERSIONS}"
@@ -116,7 +118,8 @@ JDK_VERSIONS.each { JDK_VERSION ->
116118
string(name: 'LABEL_ADDITION', value: LABEL_ADDITION),
117119
string(name: 'TEST_FLAG', value: TEST_FLAG),
118120
string(name: 'APPLICATION_OPTIONS', value: APPLICATION_OPTIONS),
119-
booleanParam(name: 'KEEP_REPORTDIR', value: keep_reportdir)
121+
booleanParam(name: 'KEEP_REPORTDIR', value: keep_reportdir),
122+
booleanParam(name: 'SETUP_JCK_RUN', value: SETUP_JCK_RUN)
120123
], wait: true
121124
def result = downstreamJob.getResult()
122125
echo " ${TEST_JOB_NAME} result is ${result}"

buildenv/jenkins/testJobTemplate

+2
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,7 @@ def OPENJ9_REPO = "https://github.com/eclipse-openj9/openj9.git"
139139
def ADOPTOPENJDK_REPO = "https://github.com/adoptium/aqa-tests.git"
140140
def ADOPTOPENJDK_BRANCH = "master"
141141
def USE_TESTENV_PROPERTIES = false
142+
def SETUP_JCK_RUN = false
142143

143144
// Jenkins does not support using Repository URL and Branch build parameters with lightweight checkout together
144145
// (See https://issues.jenkins.io/browse/JENKINS-48431)
@@ -438,6 +439,7 @@ ARCH_OS_LIST.each { ARCH_OS ->
438439
booleanParam('PERSONAL_BUILD', false, "Is this a personal build?")
439440
booleanParam('USE_TESTENV_PROPERTIES', USE_TESTENV_PROPERTIES.toBoolean(), "use properties defined in the testenv.properties")
440441
stringParam('RERUN_ITERATIONS', RERUN_ITERATIONS, "Optional. Number of times to repeat execution of failed test target(s).")
442+
booleanParam('SETUP_JCK_RUN', SETUP_JCK_RUN.toBoolean(), "setup jdk during release for jck interactive run")
441443
}
442444
cpsScm {
443445
scm {

openjdk/excludes/ProblemList_openjdk11-openj9.txt

+3
Original file line numberDiff line numberDiff line change
@@ -373,3 +373,6 @@ sun/nio/ch/TestMaxCachedBufferSize.java https://github.com/eclipse-openj9/openj
373373
vm/verifier/VerifyProtectedConstructor.java https://github.com/eclipse-openj9/openj9/issues/7336 generic-all
374374

375375
############################################################################
376+
377+
# jdk_container
378+
jdk/internal/platform/docker/TestDockerCpuMetrics.java https://github.com/eclipse-openj9/openj9/issues/16462 generic-all

openjdk/excludes/ProblemList_openjdk17-openj9.txt

+3
Original file line numberDiff line numberDiff line change
@@ -425,3 +425,6 @@ java/foreign/TestUnsupportedPlatform.java https://github.com/eclipse-openj9/open
425425
# com_sun_crypto
426426

427427
############################################################################
428+
429+
# jdk_container
430+
jdk/internal/platform/docker/TestDockerCpuMetrics.java https://github.com/eclipse-openj9/openj9/issues/16462 generic-all

openjdk/excludes/ProblemList_openjdk19-openj9.txt

+4
Original file line numberDiff line numberDiff line change
@@ -578,4 +578,8 @@ serviceability/jvmti/vthread/VThreadNotifyFramePopTest/VThreadNotifyFramePopTest
578578
serviceability/jvmti/vthread/VThreadTest/VThreadTest.java https://github.com/eclipse-openj9/openj9/issues/16168 generic-all
579579
serviceability/jvmti/vthread/VThreadUnsupportedTest/VThreadUnsupportedTest.java https://github.com/eclipse-openj9/openj9/issues/16167 generic-all
580580
serviceability/jvmti/vthread/WaitNotifySuspendedVThreadTest/WaitNotifySuspendedVThreadTest.java https://github.com/eclipse-openj9/openj9/issues/16168 generic-all
581+
serviceability/jvmti/stress/StackTrace/Suspended/GetStackTraceSuspendedStressTest.java https://github.com/eclipse-openj9/openj9/issues/16751 generic-all
582+
serviceability/jvmti/vthread/ContinuationTest/ContinuationTest.java https://github.com/adoptium/aqa-tests/issues/1297 generic-all
581583

584+
# jdk_container
585+
jdk/internal/platform/docker/TestDockerCpuMetrics.java https://github.com/eclipse-openj9/openj9/issues/16462 generic-all

openjdk/excludes/ProblemList_openjdk20-openj9.txt

+11-37
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
java/lang/annotation/AnnotationsInheritanceOrderRedefinitionTest.java https://github.com/adoptium/aqa-tests/issues/1297 generic-all
3030
java/lang/annotation/loaderLeak/Main.java https://github.com/eclipse-openj9/openj9/issues/6701 generic-all
3131
java/lang/annotation/LoaderLeakTest.java https://github.com/eclipse-openj9/openj9/issues/13201 generic-all
32-
java/lang/annotation/UnitTest.java https://github.com/eclipse-openj9/openj9/issues/15152 generic-all
3332
java/lang/Class/GetModuleTest.java https://github.com/adoptium/aqa-tests/issues/1297 generic-all
3433
java/lang/ClassLoader/Assert.java https://github.com/eclipse-openj9/openj9/issues/6668 macosx-x64
3534
java/lang/ClassLoader/EndorsedDirs.java https://github.com/eclipse-openj9/openj9/issues/3055 generic-all
@@ -40,7 +39,6 @@ java/lang/ClassLoader/RecursiveSystemLoader.java https://github.com/eclipse-open
4039
java/lang/Enum/ConstantDirectoryOptimalCapacity.java https://github.com/adoptium/aqa-tests/issues/1297 generic-all
4140
java/lang/invoke/condy/CondyNestedResolutionTest.java https://github.com/eclipse-openj9/openj9/issues/7158 aix-all
4241
java/lang/invoke/condy/CondyNestedTest.java https://github.com/eclipse-openj9/openj9/issues/4127 linux-ppc64le
43-
java/lang/invoke/defineHiddenClass/PreviewHiddenClass.java https://github.com/eclipse-openj9/openj9/issues/15152 generic-all
4442
java/lang/invoke/FindAccessTest.java https://github.com/eclipse-openj9/openj9/issues/6868 generic-all
4543
java/lang/invoke/lambda/LambdaStackTrace.java https://github.com/eclipse-openj9/openj9/issues/3394 generic-all
4644
java/lang/invoke/LFCaching/LFMultiThreadCachingTest.java https://github.com/adoptium/aqa-tests/issues/1297 generic-all
@@ -84,7 +82,6 @@ java/lang/reflect/Proxy/ProxyLayerTest.java https://github.com/eclipse-openj9/op
8482
java/lang/reflect/PublicMethods/PublicMethodsTest.java https://github.com/eclipse-openj9/openj9/issues/7897 generic-all
8583
java/lang/StackTraceElement/PublicConstructor.java https://github.com/eclipse-openj9/openj9/issues/6659 generic-all
8684
java/lang/StackTraceElement/SerialTest.java https://github.com/eclipse-openj9/openj9/issues/6659 generic-all
87-
java/lang/StackWalker/AcrossThreads.java https://github.com/eclipse-openj9/openj9/issues/15152 generic-all
8885
java/lang/StackWalker/Basic.java https://github.com/eclipse-openj9/openj9/issues/6698 generic-all
8986
java/lang/StackWalker/EmbeddedStackWalkTest.java https://github.com/eclipse-openj9/openj9/issues/3941 generic-all
9087
java/lang/StackWalker/LocalsAndOperands.java#id0 https://github.com/adoptium/aqa-tests/issues/1297 generic-all
@@ -112,54 +109,29 @@ java/lang/System/LoggerFinder/modules/JDKLoggerForImageTest.java https://github.
112109
java/lang/System/LoggerFinder/modules/LoggerInImageTest.java https://github.com/adoptium/aqa-tests/issues/1267 macosx-all
113110
java/lang/System/LoggerFinder/modules/NamedLoggerForImageTest.java https://github.com/adoptium/aqa-tests/issues/1267 macosx-all
114111
java/lang/System/LoggerFinder/modules/UnnamedLoggerForImageTest.java https://github.com/adoptium/aqa-tests/issues/1267 macosx-all
115-
java/lang/Thread/BuilderTest.java https://github.com/eclipse-openj9/openj9/issues/15152 generic-all
116-
java/lang/Thread/JoinWithDuration.java https://github.com/eclipse-openj9/openj9/issues/15152 generic-all
117-
java/lang/Thread/NullStackTrace.java https://github.com/eclipse-openj9/openj9/issues/15152 generic-all
118-
java/lang/Thread/SleepWithDuration.java https://github.com/eclipse-openj9/openj9/issues/15152 generic-all
119112
java/lang/Thread/UncaughtExceptions.sh https://github.com/eclipse-openj9/openj9/issues/6690 generic-all
120113
java/lang/Thread/UncaughtExceptionsTest.java https://github.com/eclipse-openj9/openj9/issues/11930 generic-all
121-
java/lang/Thread/virtual/Collectable.java https://github.com/eclipse-openj9/openj9/issues/15152 generic-all
122-
java/lang/Thread/virtual/CustomScheduler.java https://github.com/eclipse-openj9/openj9/issues/15152 generic-all
123-
java/lang/Thread/virtual/GetStackTraceWhenRunnable.java https://github.com/eclipse-openj9/openj9/issues/15152 generic-all
124-
java/lang/Thread/virtual/HoldsLock.java https://github.com/eclipse-openj9/openj9/issues/15152 generic-all
125-
java/lang/Thread/virtual/Locking.java https://github.com/eclipse-openj9/openj9/issues/15152 generic-all
126-
java/lang/Thread/virtual/Parking.java https://github.com/eclipse-openj9/openj9/issues/15152 generic-all
127-
java/lang/Thread/virtual/ParkWithFixedThreadPool.java https://github.com/eclipse-openj9/openj9/issues/15152 generic-all
128-
java/lang/Thread/virtual/PreviewFeaturesNotEnabled.java https://github.com/eclipse-openj9/openj9/issues/15152 generic-all
129-
java/lang/Thread/virtual/Reflection.java https://github.com/eclipse-openj9/openj9/issues/15152 generic-all
130-
java/lang/Thread/virtual/ShutdownHook.java https://github.com/eclipse-openj9/openj9/issues/15152 generic-all
131-
java/lang/Thread/virtual/StackTraces.java https://github.com/eclipse-openj9/openj9/issues/15152 generic-all
132-
java/lang/Thread/virtual/stress/GetStackTraceALot.java#id0 https://github.com/eclipse-openj9/openj9/issues/15152 generic-all
133-
java/lang/Thread/virtual/stress/PinALot.java#id0 https://github.com/eclipse-openj9/openj9/issues/15152 generic-all
134-
java/lang/Thread/virtual/stress/PingPong.java https://github.com/eclipse-openj9/openj9/issues/15152 generic-all
135-
java/lang/Thread/virtual/stress/Skynet.java#id0 https://github.com/eclipse-openj9/openj9/issues/15152 generic-all
136-
java/lang/Thread/virtual/stress/SleepALot.java#id0 https://github.com/eclipse-openj9/openj9/issues/15152 generic-all
137-
java/lang/Thread/virtual/stress/TimedGet.java https://github.com/eclipse-openj9/openj9/issues/15152 generic-all
138-
java/lang/Thread/virtual/stress/YieldALot.java#id0 https://github.com/eclipse-openj9/openj9/issues/15152 generic-all
139-
java/lang/Thread/virtual/ThreadLocals.java https://github.com/eclipse-openj9/openj9/issues/15152 generic-all
140-
java/lang/Thread/virtual/TracePinnedThreads.java https://github.com/eclipse-openj9/openj9/issues/15152 generic-all
141-
java/lang/Thread/virtual/WaitNotify.java https://github.com/eclipse-openj9/openj9/issues/15152 generic-all
142-
java/lang/ThreadGroup/Daemon.java https://github.com/eclipse-openj9/openj9/issues/15152 generic-all
143-
java/lang/ThreadGroup/NullThreadName.java https://github.com/eclipse-openj9/openj9/issues/15152 generic-all
114+
java/lang/Thread/virtual/PreviewFeaturesNotEnabled.java https://github.com/eclipse-openj9/openj9/issues/16044 generic-all
115+
java/lang/Thread/virtual/StackTraces.java https://github.com/eclipse-openj9/openj9/issues/16045 generic-all
116+
java/lang/Thread/virtual/stress/Skynet.java#id0 https://github.com/eclipse-openj9/openj9/issues/16728 generic-all
117+
java/lang/Thread/virtual/stress/TimedGet.java https://github.com/eclipse-openj9/openj9/issues/16729 macosx-x64
118+
java/lang/Thread/virtual/TracePinnedThreads.java https://github.com/eclipse-openj9/openj9/issues/15996 generic-all
144119
java/lang/ThreadGroup/SetMaxPriority.java https://github.com/eclipse-openj9/openj9/issues/6691 generic-all
145-
java/lang/ThreadGroup/Stop.java https://github.com/eclipse-openj9/openj9/issues/15152 generic-all
146-
java/lang/ThreadGroup/Suspend.java https://github.com/eclipse-openj9/openj9/issues/15152 generic-all
147-
java/lang/ThreadLocal/TestThreadId.java https://github.com/eclipse-openj9/openj9/issues/15152 generic-all
148120
java/lang/Throwable/SuppressedExceptions.java https://github.com/eclipse-openj9/openj9/issues/6692 generic-all
149121
java/util/stream/test/org/openjdk/tests/java/util/stream/SpliteratorTest.java https://github.com/eclipse-openj9/openj9/issues/11135 generic-all
150122
jdk/internal/loader/NativeLibraries/Main.java https://github.com/adoptium/aqa-tests/issues/1920 generic-all
151-
jdk/internal/misc/ThreadFlock/ThreadFlockTest.java https://github.com/eclipse-openj9/openj9/issues/15152 generic-all
152123
jdk/internal/vm/Continuation/Basic.java#id0 https://github.com/eclipse-openj9/openj9/issues/15163 generic-all
153124
jdk/internal/vm/Continuation/Basic.java#id1 https://github.com/eclipse-openj9/openj9/issues/15163 generic-all
154125
jdk/internal/vm/Continuation/ClassUnloading.java https://github.com/eclipse-openj9/openj9/issues/15152 generic-all
155126
jdk/internal/vm/Continuation/Fuzz.java https://github.com/eclipse-openj9/openj9/issues/15247 generic-all
156127
jdk/internal/vm/Continuation/HumongousStack.java https://github.com/eclipse-openj9/openj9/issues/15189 generic-all
157128
jdk/internal/vm/Continuation/LiveFramesDriver.java https://github.com/eclipse-openj9/openj9/issues/15152 generic-all
158129
jdk/internal/vm/Continuation/Scoped.java https://github.com/eclipse-openj9/openj9/issues/15163 generic-all
159-
jdk/modules/etc/DefaultModules.java https://github.com/eclipse-openj9/openj9/issues/15152 generic-all
160130
jdk/modules/incubator/ImageModules.java https://github.com/adoptium/aqa-tests/issues/1267 macosx-all
161131
jni/nullCaller/NullCallerTest.java https://github.com/eclipse-openj9/openj9/issues/15370 linux-ppc64le,macosx-all
162132

133+
java/lang/Thread/jni/AttachCurrentThread/AttachTest.java#id1 https://github.com/eclipse-openj9/openj9/issues/16565 generic-all
134+
163135
############################################################################
164136

165137
# jdk_internal
@@ -452,10 +424,8 @@ sun/security/krb5/auto/Cleaners.java https://github.com/eclipse-openj9/openj9/is
452424
java/util/Arrays/largeMemory/ParallelPrefix.java https://github.com/eclipse-openj9/openj9/issues/4100 linux-ppc64le
453425
java/util/Arrays/TimSortStackSize2.java https://github.com/eclipse-openj9/openj9/issues/7086 generic-all
454426
java/util/BitSet/stream/BitSetStreamTest.java https://github.com/eclipse-openj9/openj9/issues/4720 linux-all
455-
java/util/concurrent/ExecutorService/CloseTest.java https://github.com/eclipse-openj9/openj9/issues/15152 generic-all
456427
java/util/concurrent/forkjoin/FJExceptionTableLeak.java https://github.com/eclipse-openj9/openj9/issues/3209 generic-all
457428
java/util/concurrent/locks/Lock/TimedAcquireLeak.java https://github.com/eclipse-openj9/openj9/issues/7125 macosx-all,linux-all,aix-all
458-
java/util/concurrent/ThreadPerTaskExecutor/ThreadPerTaskExecutorTest.java https://github.com/eclipse-openj9/openj9/issues/15152 generic-all
459429
java/util/concurrent/TimeUnit/Basic.java https://github.com/adoptium/aqa-tests/issues/1665 windows-all
460430
java/util/logging/CheckZombieLockTest.java https://bugs.openjdk.java.net/browse/JDK-8148972 macosx-all,linux-all
461431
java/util/logging/LogManager/TestLoggerNames.java https://github.com/eclipse-openj9/openj9/issues/4561 generic-all
@@ -610,4 +580,8 @@ serviceability/jvmti/vthread/VThreadNotifyFramePopTest/VThreadNotifyFramePopTest
610580
serviceability/jvmti/vthread/VThreadTest/VThreadTest.java https://github.com/eclipse-openj9/openj9/issues/16168 generic-all
611581
serviceability/jvmti/vthread/VThreadUnsupportedTest/VThreadUnsupportedTest.java https://github.com/eclipse-openj9/openj9/issues/16167 generic-all
612582
serviceability/jvmti/vthread/WaitNotifySuspendedVThreadTest/WaitNotifySuspendedVThreadTest.java https://github.com/eclipse-openj9/openj9/issues/16168 generic-all
583+
serviceability/jvmti/stress/StackTrace/Suspended/GetStackTraceSuspendedStressTest.java https://github.com/eclipse-openj9/openj9/issues/16751 generic-all
584+
serviceability/jvmti/vthread/ContinuationTest/ContinuationTest.java https://github.com/adoptium/aqa-tests/issues/1297 generic-all
613585

586+
# jdk_container
587+
jdk/internal/platform/docker/TestDockerCpuMetrics.java https://github.com/eclipse-openj9/openj9/issues/16462 generic-all

openjdk/excludes/ProblemList_openjdk8-openj9.txt

+3
Original file line numberDiff line numberDiff line change
@@ -390,3 +390,6 @@ javax/imageio/spi/AppletContextTest/BadPluginConfigurationTest.sh https://github
390390
jdk/internal/platform/docker/TestDockerMemoryMetrics.java https://github.com/eclipse-openj9/openj9/issues/16460 generic-all
391391

392392
############################################################################
393+
394+
# jdk_container
395+
jdk/internal/platform/docker/TestDockerCpuMetrics.java https://github.com/eclipse-openj9/openj9/issues/16462 generic-all

0 commit comments

Comments
 (0)