Skip to content

Commit

Permalink
[Misc] Enable CI test
Browse files Browse the repository at this point in the history
Summary: Enable dragonwell8 CI test

Test Plan: CI pipeline

Reviewed-by: joeylee.lz, yuleil

Issue: dragonwell-project/dragonwell8#301
  • Loading branch information
Accelerator1996 committed Mar 3, 2022
1 parent 5e7efab commit 8503e16
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 9 deletions.
36 changes: 27 additions & 9 deletions .github/workflows/check_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,15 @@ jobs:
TEST_JDK_HOME=build/linux-x86_64-normal-server-release/images/j2sdk-image
${TEST_JDK_HOME}/bin/java -version
#- name: Tier1 test
#run: |
#make test TEST="hotspot_tier1 jdk_tier1"
- name: Tier1 test
run: |
cd dragonwell8
make test TEST="jdk_tier1"
- name: Check test result
run: |
cd dragonwell8
if [ "$(cat $(find build -iname jdk_tier1)/faillist.txt | wc -l)" -eq 0 ];then exit 0 ;else exit 1; fi;
build_fastdebug_jdk:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -165,9 +171,15 @@ jobs:
TEST_JDK_HOME=build/linux-x86_64-normal-server-fastdebug/images/j2sdk-image
${TEST_JDK_HOME}/bin/java -version
# - name: Tier1 test
# run: |
# make test TEST="hotspot_tier1 jdk_tier1"
- name: Tier1 test
run: |
cd dragonwell8
make test TEST="jdk_tier1"
- name: Check test result
run: |
cd dragonwell8
if [ "$(cat $(find build -iname jdk_tier1)/faillist.txt | wc -l)" -eq 0 ];then exit 0 ;else exit 1; fi;
build_slowdebug_jdk:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -233,6 +245,12 @@ jobs:
TEST_JDK_HOME=build/linux-x86_64-normal-server-slowdebug/images/j2sdk-image
${TEST_JDK_HOME}/bin/java -version
# - name: Tier1 test
# run: |
# make test TEST="hotspot_tier1 jdk_tier1"
- name: Tier1 test
run: |
cd dragonwell8
make test TEST="jdk_tier1"
- name: Check test result
run: |
cd dragonwell8
if [ "$(cat $(find build -iname jdk_tier1)/faillist.txt | wc -l)" -eq 0 ];then exit 0 ;else exit 1; fi;
7 changes: 7 additions & 0 deletions test/ProblemList.txt
Original file line number Diff line number Diff line change
Expand Up @@ -389,3 +389,10 @@ sun/tools/jps/TestJpsJarRelative.java generic-all

sample/mergesort/MergeSortTest.java 8178912 generic-all
sample/chatserver/ChatTest.java 8178912 generic-all

# temporary_exclude

############################################################################

com/sun/jdi/RedefineCrossEvent.java generic-all
java/util/stream/boottest/java/util/stream/SpinedBufferTest.java generic-all

0 comments on commit 8503e16

Please sign in to comment.