Skip to content
Open
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
4 changes: 4 additions & 0 deletions .github/workflows/test-cvm8+17.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ jobs:
test-name:
- 'jdk/tier1'
- 'langtools'
- 'hotspot sanity'

include:
- test-name: 'jdk/tier1'
Expand All @@ -62,6 +63,9 @@ jobs:
- test-name: 'langtools'
test-suite: 'langtools'

- test-name: 'hotspot sanity'
test-suite: 'hotspot_sanity'

steps:
- name: 'Checkout the JDK source'
uses: actions/checkout@v3
Expand Down
5 changes: 5 additions & 0 deletions cvm.mk
Original file line number Diff line number Diff line change
Expand Up @@ -364,6 +364,11 @@ test_jtreg8_hotspot: -setup_jtreg8
$(eval JT_REPO = hotspot)
$(call run_jtreg8_test,$(JDK8_SRCROOT)/$(JT_REPO)/test,$(JT_TEST),$(JT_OPTS_EXCLUDE))

test_jtreg8_hotspot_sanity: -setup_jtreg8
$(eval JT_REPO = hotspot)
$(eval JT_TEST = "sanity")
$(call run_jtreg8_test,$(JDK8_SRCROOT)/$(JT_REPO)/test,$(JT_TEST),$(JT_OPTS_EXCLUDE))

test_jtreg8_langtools: -setup_jtreg8 -overlay-langtools8
$(eval JT_REPO = langtools)
$(call run_jtreg8_test,$(JDK8_SRCROOT)/$(JT_REPO)/test,$(JT_TEST),$(JT_OPTS_EXCLUDE))
Expand Down
Loading