85 * -XX:+ShenandoahVerify
86 * gc.stress.gcold.TestGCOld 50 1 20 10 10000
87 *
88 * @run main/othervm -Xmx384M -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions
89 * -XX:+UseShenandoahGC -XX:ShenandoahGCHeuristics=adaptive
90 * gc.stress.gcold.TestGCOld 50 1 20 10 10000
91 */
92
93 /*
94 * @test id=compact
95 * @key stress randomness
96 * @library / /test/lib
97 * @requires vm.gc.Shenandoah
98 * @summary Stress the GC by trying to make old objects more likely to be garbage than young objects.
99 *
100 * @run main/othervm -Xmx384M -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions
101 * -XX:+UseShenandoahGC -XX:ShenandoahGCHeuristics=compact
102 * gc.stress.gcold.TestGCOld 50 1 20 10 10000
103 */
104
105 /*
106 * @test id=iu-aggressive
107 * @key stress randomness
108 * @library / /test/lib
109 * @requires vm.gc.Shenandoah
110 * @summary Stress the GC by trying to make old objects more likely to be garbage than young objects.
111 *
112 * @run main/othervm -Xmx384M -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions
113 * -XX:+UseShenandoahGC -XX:ShenandoahGCMode=iu -XX:ShenandoahGCHeuristics=aggressive
114 * -XX:+ShenandoahOOMDuringEvacALot
115 * gc.stress.gcold.TestGCOld 50 1 20 10 10000
116 *
117 * @run main/othervm -Xmx384M -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions
118 * -XX:+UseShenandoahGC -XX:ShenandoahGCMode=iu -XX:ShenandoahGCHeuristics=aggressive
119 * -XX:+ShenandoahAllocFailureALot
120 * gc.stress.gcold.TestGCOld 50 1 20 10 10000
121 *
122 * @run main/othervm -Xmx384M -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions
123 * -XX:+UseShenandoahGC -XX:ShenandoahGCMode=iu -XX:ShenandoahGCHeuristics=aggressive
124 * gc.stress.gcold.TestGCOld 50 1 20 10 10000
125 */
126
127 /*
128 * @test id=iu
129 * @key stress randomness
130 * @library / /test/lib
131 * @requires vm.gc.Shenandoah
132 * @summary Stress the GC by trying to make old objects more likely to be garbage than young objects.
133 *
134 * @run main/othervm/timeout=600 -Xmx384M -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions
135 * -XX:+UseShenandoahGC -XX:ShenandoahGCMode=iu
136 * -XX:+ShenandoahVerify
137 * gc.stress.gcold.TestGCOld 50 1 20 10 10000
138 *
139 * @run main/othervm -Xmx384M -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions
140 * -XX:+UseShenandoahGC -XX:ShenandoahGCMode=iu
141 * gc.stress.gcold.TestGCOld 50 1 20 10 10000
142 */
143
144 public class TestGCOldWithShenandoah {
145
146 public static void main(String[] args) {
147 TestGCOld.main(args);
148 }
149 }
|
85 * -XX:+ShenandoahVerify
86 * gc.stress.gcold.TestGCOld 50 1 20 10 10000
87 *
88 * @run main/othervm -Xmx384M -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions
89 * -XX:+UseShenandoahGC -XX:ShenandoahGCHeuristics=adaptive
90 * gc.stress.gcold.TestGCOld 50 1 20 10 10000
91 */
92
93 /*
94 * @test id=compact
95 * @key stress randomness
96 * @library / /test/lib
97 * @requires vm.gc.Shenandoah
98 * @summary Stress the GC by trying to make old objects more likely to be garbage than young objects.
99 *
100 * @run main/othervm -Xmx384M -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions
101 * -XX:+UseShenandoahGC -XX:ShenandoahGCHeuristics=compact
102 * gc.stress.gcold.TestGCOld 50 1 20 10 10000
103 */
104
105 public class TestGCOldWithShenandoah {
106
107 public static void main(String[] args) {
108 TestGCOld.main(args);
109 }
110 }
|