Skip to content

Commit c200b4f

Browse files
author
Harold Seigel
committedAug 5, 2020
8139875: [TESTBUG] Improve nsk/stress/stack/* tests
Use -Xss200k to limit the stack size, avoid running with -Xcomp, and, in one test, reduce iterations. Reviewed-by: dholmes, lfoltan
1 parent 1066357 commit c200b4f

File tree

5 files changed

+29
-30
lines changed

5 files changed

+29
-30
lines changed
 

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

+4-6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2000, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -26,8 +26,7 @@
2626
* @key stress
2727
*
2828
* @summary converted from VM testbase nsk/stress/stack/stack008.
29-
* VM testbase keywords: [stress, stack, nonconcurrent, exclude]
30-
* VM testbase comments: 8139875
29+
* VM testbase keywords: [stress, stack, nonconcurrent]
3130
* VM testbase readme:
3231
* DESCRIPTION
3332
* This test provokes multiple stack overflows in the same thread
@@ -46,9 +45,8 @@
4645
* See the bug:
4746
* 4366625 (P4/S4) multiple stack overflow causes HS crash
4847
*
49-
* @ignore 8139875
50-
* @requires vm.opt.DeoptimizeALot != true
51-
* @run main/othervm/timeout=900 nsk.stress.stack.stack008
48+
* @requires (vm.opt.DeoptimizeALot != true & vm.compMode != "Xcomp")
49+
* @run main/othervm/timeout=900 -Xss200K nsk.stress.stack.stack008
5250
*/
5351

5452
package nsk.stress.stack;

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

+5-5
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,7 @@
2626
* @key stress
2727
*
2828
* @summary converted from VM testbase nsk/stress/stack/stack016.
29-
* VM testbase keywords: [stress, diehard, stack, nonconcurrent, exclude]
30-
* VM testbase comments: 8139875
29+
* VM testbase keywords: [stress, diehard, stack, nonconcurrent]
3130
* VM testbase readme:
3231
* DESCRIPTION
3332
* The test provokes second stack overflow from within the
@@ -49,9 +48,10 @@
4948
* See the bug:
5049
* 4366625 (P4/S4) multiple stack overflow causes HS crash
5150
*
52-
* @ignore 8139875
53-
* @requires vm.opt.DeoptimizeALot != true
54-
* @run main/othervm/timeout=900 nsk.stress.stack.stack016 -eager
51+
* @requires (vm.opt.DeoptimizeALot != true & vm.compMode != "Xcomp")
52+
* @library /vmTestbase
53+
* @build nsk.share.Terminator
54+
* @run main/othervm/timeout=900 -Xss200K nsk.stress.stack.stack016 -eager
5555
*/
5656

5757
package nsk.stress.stack;

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

+6-6
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,7 @@
2626
* @key stress
2727
*
2828
* @summary converted from VM testbase nsk/stress/stack/stack017.
29-
* VM testbase keywords: [stress, diehard, stack, nonconcurrent, exclude]
30-
* VM testbase comments: 8139875
29+
* VM testbase keywords: [stress, diehard, stack, nonconcurrent]
3130
* VM testbase readme:
3231
* DESCRIPTION
3332
* The test invokes infinitely recursive method from within stack
@@ -42,9 +41,10 @@
4241
* See the bug:
4342
* 4366625 (P4/S4) multiple stack overflow causes HS crash
4443
*
45-
* @ignore 8139875
46-
* @requires vm.opt.DeoptimizeALot != true
47-
* @run main/othervm/timeout=900 nsk.stress.stack.stack017 -eager
44+
* @requires (vm.opt.DeoptimizeALot != true & vm.compMode != "Xcomp")
45+
* @library /vmTestbase
46+
* @build nsk.share.Terminator
47+
* @run main/othervm/timeout=900 -Xss200K nsk.stress.stack.stack017 -eager
4848
*/
4949

5050
package nsk.stress.stack;
@@ -154,7 +154,7 @@ private void trickyRecurse(int depth) {
154154
throw error;
155155

156156
//
157-
// Stack problem caugth: provoke it again,
157+
// Stack problem caught: provoke it again,
158158
// if current stack is enough deep:
159159
//
160160
if (depth < depthToTry - PROBES)

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

+5-5
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,7 @@
2626
* @key stress
2727
*
2828
* @summary converted from VM testbase nsk/stress/stack/stack018.
29-
* VM testbase keywords: [stress, diehard, stack, nonconcurrent, exclude]
30-
* VM testbase comments: 8139875
29+
* VM testbase keywords: [stress, diehard, stack, nonconcurrent]
3130
* VM testbase readme:
3231
* DESCRIPTION
3332
* This test provokes multiple stack overflows by invocations via
@@ -47,9 +46,10 @@
4746
* See the bug:
4847
* 4366625 (P4/S4) multiple stack overflow causes HS crash
4948
*
50-
* @ignore 8139875
51-
* @requires vm.opt.DeoptimizeALot != true
52-
* @run main/othervm/timeout=900 nsk.stress.stack.stack018 -eager
49+
* @requires (vm.opt.DeoptimizeALot != true & vm.compMode != "Xcomp")
50+
* @library /vmTestbase
51+
* @build nsk.share.Terminator
52+
* @run main/othervm/timeout=900 -Xss200K nsk.stress.stack.stack018 -eager
5353
*/
5454

5555
package nsk.stress.stack;

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

+9-8
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,7 @@
2626
* @key stress
2727
*
2828
* @summary converted from VM testbase nsk/stress/stack/stack019.
29-
* VM testbase keywords: [stress, diehard, stack, nonconcurrent, exclude]
30-
* VM testbase comments: 8139875
29+
* VM testbase keywords: [stress, diehard, stack, nonconcurrent]
3130
* VM testbase readme:
3231
* DESCRIPTION
3332
* The test invokes infinitely recursive method from within stack
@@ -40,9 +39,11 @@
4039
* See the bug:
4140
* 4366625 (P4/S4) multiple stack overflow causes HS crash
4241
*
43-
* @ignore 8139875
44-
* @requires vm.opt.DeoptimizeALot != true
45-
* @run main/othervm/timeout=900 nsk.stress.stack.stack019 -eager
42+
* @requires (vm.opt.DeoptimizeALot != true & vm.compMode != "Xcomp")
43+
* @requires os.family != "windows"
44+
* @library /vmTestbase
45+
* @build nsk.share.Terminator
46+
* @run main/othervm/timeout=900 -Xss200K nsk.stress.stack.stack019 -eager
4647
*/
4748

4849
package nsk.stress.stack;
@@ -53,8 +54,8 @@
5354
import java.io.PrintStream;
5455

5556
public class stack019 {
56-
private final static int CYCLES = 100;
57-
private final static int PROBES = 100;
57+
private final static int CYCLES = 50;
58+
private final static int PROBES = 50;
5859

5960
public static void main(String[] args) {
6061
int exitCode = run(args, System.out);
@@ -123,7 +124,7 @@ private static void trickyRecurse(int depth) {
123124
throw error;
124125

125126
//
126-
// Stack problem caugth: provoke it again,
127+
// Stack problem caught: provoke it again,
127128
// if current stack is enough deep:
128129
//
129130
if (depth < depthToTry - PROBES)

0 commit comments

Comments
 (0)
Please sign in to comment.