Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enable rerun job with langtools_custom target #5876

Merged
merged 2 commits into from
Jan 17, 2025
Merged
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
10 changes: 9 additions & 1 deletion buildenv/jenkins/JenkinsfileBase
Original file line number Diff line number Diff line change
Expand Up @@ -1241,6 +1241,7 @@ def addFailedTestsGrinderLink(paths=""){
def failedTestList = ""
def jdkFailedTestCaseList = ""
def hotspotFailedTestCaseList = ""
def langtoolsFailedTestCaseList = ""
def jckRuntimeFailedTestCaseList = ""
def jckCompilerFailedTestCaseList = ""
def jckDevtoolsFailedTestCaseList = ""
Expand All @@ -1265,7 +1266,7 @@ def addFailedTestsGrinderLink(paths=""){
if (failedtest.startsWith("jdk_")) {
if (!jdkFailedTestCaseList.contains(failedTestCasesInfo)) {
jdkFailedTestCaseList += "${failedTestCasesInfo} "
}
}
} else if (failedtest.startsWith("jck-runtime") || failedtest.startsWith("jckruntime")) {
if (!jckRuntimeFailedTestCaseList.contains(failedTestCasesInfo)) {
jckRuntimeFailedTestCaseList += "${failedTestCasesInfo} "
Expand All @@ -1278,6 +1279,10 @@ def addFailedTestsGrinderLink(paths=""){
if (!jckDevtoolsFailedTestCaseList.contains(failedTestCasesInfo)) {
jckDevtoolsFailedTestCaseList += "${failedTestCasesInfo} "
}
} else if (failedtest.startsWith("langtools_")){
if (!langtoolsFailedTestCaseList.contains(failedTestCasesInfo)) {
langtoolsFailedTestCaseList += "${failedTestCasesInfo} "
}
} else {
if (!hotspotFailedTestCaseList.contains(failedTestCasesInfo)) {
hotspotFailedTestCaseList += "${failedTestCasesInfo} "
Expand Down Expand Up @@ -1305,6 +1310,9 @@ def addFailedTestsGrinderLink(paths=""){
if (hotspotFailedTestCaseList) {
customizedTestCases['hotspot'] = "${hotspotFailedTestCaseList}"
}
if (langtoolsFailedTestCaseList) {
customizedTestCases['langtools'] = "${langtoolsFailedTestCaseList}"
}
if (jckRuntimeFailedTestCaseList) {
customizedTestCases['jckruntime'] = "${jckRuntimeFailedTestCaseList}"
}
Expand Down
Loading