Skip to content

Commit 7856c1a

Browse files
committedAug 26, 2020
8252108: Modify nsk/stress/stack tests to check page size
Reviewed-by: hseigel, stuefe
1 parent 25af8d8 commit 7856c1a

File tree

5 files changed

+17
-8
lines changed

5 files changed

+17
-8
lines changed
 

‎test/hotspot/jtreg/TEST.ROOT

+1
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ requires.properties= \
5858
vm.jvmci \
5959
vm.emulatedClient \
6060
vm.cpu.features \
61+
vm.pageSize \
6162
vm.debug \
6263
vm.hasSA \
6364
vm.hasJFR \

‎test/hotspot/jtreg/vmTestbase/nsk/stress/stack/stack008.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,10 @@
4444
* and 1.4 on Win32.
4545
* See the bug:
4646
* 4366625 (P4/S4) multiple stack overflow causes HS crash
47-
* The stack size is too small to run on aarch64. Making it bigger
48-
* could cause timeouts on other platform.
47+
* The stack size is too small to run on systems with > 4K page size.
48+
* Making it bigger could cause timeouts on other platform.
4949
*
50-
* @requires (vm.opt.DeoptimizeALot != true & vm.compMode != "Xcomp" & os.arch != "aarch64")
50+
* @requires (vm.opt.DeoptimizeALot != true & vm.compMode != "Xcomp" & vm.pageSize == 4096)
5151
* @run main/othervm/timeout=900 -Xss200K nsk.stress.stack.stack008
5252
*/
5353

‎test/hotspot/jtreg/vmTestbase/nsk/stress/stack/stack018.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,10 @@
4646
* See the bug:
4747
* 4366625 (P4/S4) multiple stack overflow causes HS crash
4848
*
49-
* @requires (vm.opt.DeoptimizeALot != true & vm.compMode != "Xcomp")
49+
* @requires (vm.opt.DeoptimizeALot != true & vm.compMode != "Xcomp" & vm.pageSize == 4096)
5050
* @library /vmTestbase
5151
* @build nsk.share.Terminator
52-
* @run main/othervm/timeout=900 -Xss448K nsk.stress.stack.stack018 -eager
52+
* @run main/othervm/timeout=900 -Xss220K nsk.stress.stack.stack018 -eager
5353
*/
5454

5555
package nsk.stress.stack;

‎test/hotspot/jtreg/vmTestbase/nsk/stress/stack/stack019.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,10 @@
3838
* Solaris and Win32 platforms.
3939
* See the bug:
4040
* 4366625 (P4/S4) multiple stack overflow causes HS crash
41-
* The stack size is too small to run on aarch64. Making it bigger
42-
* could cause timeouts on other platform.
41+
* The stack size is too small to run on systems with > 4K page size.
42+
* Making it bigger could cause timeouts on other platform.
4343
*
44-
* @requires (vm.opt.DeoptimizeALot != true & vm.compMode != "Xcomp" & os.arch != "aarch64")
44+
* @requires (vm.opt.DeoptimizeALot != true & vm.compMode != "Xcomp" & vm.pageSize == 4096)
4545
* @requires os.family != "windows"
4646
* @library /vmTestbase
4747
* @build nsk.share.Terminator

‎test/jtreg-ext/requires/VMProps.java

+8
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,7 @@ public Map<String, String> call() {
101101
map.put("vm.hasJFR", this::vmHasJFR);
102102
map.put("vm.jvmti", this::vmHasJVMTI);
103103
map.put("vm.cpu.features", this::cpuFeatures);
104+
map.put("vm.pageSize", this::vmPageSize);
104105
map.put("vm.rtm.cpu", this::vmRTMCPU);
105106
map.put("vm.rtm.compiler", this::vmRTMCompiler);
106107
map.put("vm.aot", this::vmAOT);
@@ -441,6 +442,13 @@ protected String vmCDSForArchivedJavaHeap() {
441442
return "" + ("true".equals(vmCDS()) && WB.isJavaHeapArchiveSupported());
442443
}
443444

445+
/**
446+
* @return System page size in bytes.
447+
*/
448+
protected String vmPageSize() {
449+
return "" + WB.getVMPageSize();
450+
}
451+
444452
/**
445453
* Check if Graal is used as JIT compiler.
446454
*

0 commit comments

Comments
 (0)
Please sign in to comment.