Skip to content
This repository has been archived by the owner on Dec 13, 2024. It is now read-only.

Commit

Permalink
Merge pull request #453 from LongyuZhang/smoke6
Browse files Browse the repository at this point in the history
Add vm.continuations and vm.openj9 value
  • Loading branch information
JasonFengJ9 authored Jun 10, 2022
2 parents a94388c + ce68180 commit 332135c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 2 additions & 0 deletions closed/test/jtreg-ext/requires/OpenJ9PropsExt.java
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,13 @@ public Map<String, String> call() {
try {
map.put("vm.bits", vmBits());
map.put("vm.compiler2.enabled", "false");
map.put("vm.continuations", "false");
map.put("vm.gc.Z", "false");
map.put("vm.graal.enabled", "false");
map.put("vm.hasJFR", "false");
map.put("vm.jvmti", "true");
map.put("vm.musl", "false");
map.put("vm.openj9", "true");
}
catch (Exception e) {
e.printStackTrace();
Expand Down
3 changes: 2 additions & 1 deletion test/jdk/TEST.ROOT
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# ===========================================================================
# Portions Copyright 2018, 2018 IBM Corporation.
# Portions Copyright 2018, 2022 IBM Corporation.
# ===========================================================================
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
Expand Down Expand Up @@ -86,6 +86,7 @@ requires.properties= \
vm.hasSA \
vm.hasJFR \
vm.jvmci \
vm.openj9 \
docker.support \
release.implementor \
jdk.containerized
Expand Down
2 changes: 1 addition & 1 deletion test/jdk/jdk/internal/vm/Continuation/HumongousStack.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* @requires vm.continuations
* @modules java.base/jdk.internal.vm
*
* @requires vm.gc.G1
* @requires vm.openj9 | vm.gc.G1
* @run main/othervm --enable-preview -XX:+IgnoreUnrecognizedVMOptions -XX:-VerifyContinuations -Xms2g -Xmx2g -XX:+UseG1GC -XX:G1HeapRegionSize=1m -Xss10m -Xint HumongousStack 5000
* @run main/othervm --enable-preview -XX:+IgnoreUnrecognizedVMOptions -XX:-VerifyContinuations -Xms2g -Xmx2g -XX:+UseG1GC -XX:G1HeapRegionSize=1m -Xss10m -Xcomp -XX:TieredStopAtLevel=3 -XX:CompileOnly=jdk/internal/vm/Continuation,HumongousStack HumongousStack 10000
* @run main/othervm --enable-preview -XX:+IgnoreUnrecognizedVMOptions -XX:-VerifyContinuations -Xms2g -Xmx2g -XX:+UseG1GC -XX:G1HeapRegionSize=1m -Xss10m -Xcomp -XX:-TieredCompilation -XX:CompileOnly=jdk/internal/vm/Continuation,HumongousStack HumongousStack 10000
Expand Down

0 comments on commit 332135c

Please sign in to comment.