1 /*
2 * Copyright (c) 2017, 2020, Red Hat, Inc. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation.
8 *
9 * This code is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12 * version 2 for more details (a copy is included in the LICENSE file that
13 * accompanied this code).
14 *
15 * You should have received a copy of the GNU General Public License version
16 * 2 along with this work; if not, write to the Free Software Foundation,
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20 * or visit www.oracle.com if you need additional information or have any
21 * questions.
22 *
28 * @requires vm.gc.Shenandoah
29 * @library /test/lib
30 * @run driver TestPeriodicGC
31 */
32
33 import java.util.*;
34
35 import jdk.test.lib.Asserts;
36 import jdk.test.lib.process.ProcessTools;
37 import jdk.test.lib.process.OutputAnalyzer;
38
39 public class TestPeriodicGC {
40
41 public static void testWith(String msg, boolean periodic, String... args) throws Exception {
42 String[] cmds = Arrays.copyOf(args, args.length + 2);
43 cmds[args.length] = TestPeriodicGC.class.getName();
44 cmds[args.length + 1] = "test";
45 OutputAnalyzer output = ProcessTools.executeLimitedTestJava(cmds);
46
47 output.shouldHaveExitValue(0);
48 if (periodic && !output.getOutput().contains("Trigger: Time since last GC")) {
49 throw new AssertionError(msg + ": Should have periodic GC in logs");
50 }
51 if (!periodic && output.getOutput().contains("Trigger: Time since last GC")) {
52 throw new AssertionError(msg + ": Should not have periodic GC in logs");
53 }
54 }
55
56 public static void main(String[] args) throws Exception {
57 if (args.length > 0 && args[0].equals("test")) {
58 Thread.sleep(5000); // stay idle
59 return;
60 }
61
62 String[] enabled = new String[] {
63 "adaptive",
64 "compact",
65 "static",
66 };
67
68 for (String h : enabled) {
69 testWith("Zero interval with " + h,
70 false,
71 "-Xlog:gc",
72 "-XX:+UnlockDiagnosticVMOptions",
139
140 testWith("Zero interval with passive",
141 false,
142 "-Xlog:gc",
143 "-XX:+UnlockDiagnosticVMOptions",
144 "-XX:+UnlockExperimentalVMOptions",
145 "-XX:+UseShenandoahGC",
146 "-XX:ShenandoahGCMode=passive",
147 "-XX:ShenandoahGuaranteedGCInterval=0"
148 );
149
150 testWith("Short interval with passive",
151 false,
152 "-Xlog:gc",
153 "-XX:+UnlockDiagnosticVMOptions",
154 "-XX:+UnlockExperimentalVMOptions",
155 "-XX:+UseShenandoahGC",
156 "-XX:ShenandoahGCMode=passive",
157 "-XX:ShenandoahGuaranteedGCInterval=1000"
158 );
159 }
160
161 }
|
1 /*
2 * Copyright (c) 2017, 2020, Red Hat, Inc. All rights reserved.
3 * Copyright Amazon.com Inc. or its affiliates. All Rights Reserved.
4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 *
6 * This code is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License version 2 only, as
8 * published by the Free Software Foundation.
9 *
10 * This code is distributed in the hope that it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
13 * version 2 for more details (a copy is included in the LICENSE file that
14 * accompanied this code).
15 *
16 * You should have received a copy of the GNU General Public License version
17 * 2 along with this work; if not, write to the Free Software Foundation,
18 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
19 *
20 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
21 * or visit www.oracle.com if you need additional information or have any
22 * questions.
23 *
29 * @requires vm.gc.Shenandoah
30 * @library /test/lib
31 * @run driver TestPeriodicGC
32 */
33
34 import java.util.*;
35
36 import jdk.test.lib.Asserts;
37 import jdk.test.lib.process.ProcessTools;
38 import jdk.test.lib.process.OutputAnalyzer;
39
40 public class TestPeriodicGC {
41
42 public static void testWith(String msg, boolean periodic, String... args) throws Exception {
43 String[] cmds = Arrays.copyOf(args, args.length + 2);
44 cmds[args.length] = TestPeriodicGC.class.getName();
45 cmds[args.length + 1] = "test";
46 OutputAnalyzer output = ProcessTools.executeLimitedTestJava(cmds);
47
48 output.shouldHaveExitValue(0);
49 if (periodic) {
50 output.shouldContain("Trigger (GLOBAL): Time since last GC");
51 }
52 if (!periodic) {
53 output.shouldNotContain("Trigger (GLOBAL): Time since last GC");
54 }
55 }
56
57 public static void testGenerational(boolean periodic, String... args) throws Exception {
58 String[] cmds = Arrays.copyOf(args, args.length + 2);
59 cmds[args.length] = TestPeriodicGC.class.getName();
60 cmds[args.length + 1] = "test";
61 ProcessBuilder pb = ProcessTools.createLimitedTestJavaProcessBuilder(cmds);
62
63 OutputAnalyzer output = new OutputAnalyzer(pb.start());
64 output.shouldHaveExitValue(0);
65 if (periodic) {
66 output.shouldContain("Trigger (YOUNG): Time since last GC");
67 output.shouldContain("Trigger (OLD): Time since last GC");
68 } else {
69 output.shouldNotContain("Trigger (YOUNG): Time since last GC");
70 output.shouldNotContain("Trigger (OLD): Time since last GC");
71 }
72 }
73
74 public static void main(String[] args) throws Exception {
75 if (args.length > 0 && args[0].equals("test")) {
76 Thread.sleep(5000); // stay idle
77 return;
78 }
79
80 String[] enabled = new String[] {
81 "adaptive",
82 "compact",
83 "static",
84 };
85
86 for (String h : enabled) {
87 testWith("Zero interval with " + h,
88 false,
89 "-Xlog:gc",
90 "-XX:+UnlockDiagnosticVMOptions",
157
158 testWith("Zero interval with passive",
159 false,
160 "-Xlog:gc",
161 "-XX:+UnlockDiagnosticVMOptions",
162 "-XX:+UnlockExperimentalVMOptions",
163 "-XX:+UseShenandoahGC",
164 "-XX:ShenandoahGCMode=passive",
165 "-XX:ShenandoahGuaranteedGCInterval=0"
166 );
167
168 testWith("Short interval with passive",
169 false,
170 "-Xlog:gc",
171 "-XX:+UnlockDiagnosticVMOptions",
172 "-XX:+UnlockExperimentalVMOptions",
173 "-XX:+UseShenandoahGC",
174 "-XX:ShenandoahGCMode=passive",
175 "-XX:ShenandoahGuaranteedGCInterval=1000"
176 );
177
178 testGenerational(true,
179 "-Xlog:gc",
180 "-XX:+UnlockDiagnosticVMOptions",
181 "-XX:+UnlockExperimentalVMOptions",
182 "-XX:+UseShenandoahGC",
183 "-XX:ShenandoahGCMode=generational",
184 "-XX:ShenandoahGuaranteedYoungGCInterval=1000",
185 "-XX:ShenandoahGuaranteedOldGCInterval=1500"
186 );
187
188 testGenerational(false,
189 "-Xlog:gc",
190 "-XX:+UnlockDiagnosticVMOptions",
191 "-XX:+UnlockExperimentalVMOptions",
192 "-XX:+UseShenandoahGC",
193 "-XX:ShenandoahGCMode=generational",
194 "-XX:ShenandoahGuaranteedYoungGCInterval=0",
195 "-XX:ShenandoahGuaranteedOldGCInterval=0"
196 );
197 }
198
199 }
|