aboutsummaryrefslogtreecommitdiff
path: root/jdk11-jtreg-test.yaml
diff options
context:
space:
mode:
authorStuart Monteith <stuart.monteith@linaro.org>2019-01-10 09:39:22 +0000
committerStuart Monteith <stuart.monteith@linaro.org>2019-01-10 09:41:31 +0000
commitd4ea12823f0a48f5bda90882952794bf72fc9ffd (patch)
treeca7d6a0a764b38d4094996a927cc83f96753e9f6 /jdk11-jtreg-test.yaml
parent9e5b8a0423797d4bd9803840cda25b30b09e78bc (diff)
jdk: hotspot ProblemList.txt file under jtreg dir
Hotspot places jtreg tests, and ProblemList.txt file under an additional directory level. Change-Id: Ibd987067d9181ddfdf2fff1b7cf38014708f7910
Diffstat (limited to 'jdk11-jtreg-test.yaml')
-rw-r--r--jdk11-jtreg-test.yaml8
1 files changed, 7 insertions, 1 deletions
diff --git a/jdk11-jtreg-test.yaml b/jdk11-jtreg-test.yaml
index 526a061c..e8ad1500 100644
--- a/jdk11-jtreg-test.yaml
+++ b/jdk11-jtreg-test.yaml
@@ -101,7 +101,13 @@
mv jdk11u/* ${src_dir}
blacklist=${WORKSPACE}/excludes.txt
- jdk_problem_list=${src_dir}/test/${JTREG_CATEGORY}/ProblemList.txt
+ # Add jtreg directory level for hotspot only.
+ jdk_problem_list=${src_dir}/test/${JTREG_CATEGORY}
+ if [ $JTREG_CATEGORY = "hotspot" ]; then
+ jdk_problem_list=${jdk_problem_list}/jtreg/ProblemList.txt
+ else
+ jdk_problem_list=${jdk_problem_list}/ProblemList.txt
+ fi
if [ -e $jdk_problem_list ]; then
cat $jdk_problem_list > ${blacklist}