Skip to content

Commit 43b7e9f

Browse files
Jan KratochvilSendaoYan
Jan Kratochvil
authored and
SendaoYan
committedDec 21, 2024
8346713: [testsuite] NeverActAsServerClassMachine breaks TestPLABAdaptToMinTLABSize.java TestPinnedHumongousFragmentation.java TestPinnedObjectContents.java
Reviewed-by: stefank, tschatzl
1 parent 249f141 commit 43b7e9f

File tree

3 files changed

+22
-8
lines changed

3 files changed

+22
-8
lines changed
 

‎test/hotspot/jtreg/gc/TestPLABAdaptToMinTLABSize.java

+19-6
Original file line numberDiff line numberDiff line change
@@ -24,17 +24,29 @@
2424
package gc;
2525

2626
/*
27-
* @test TestPLABAdaptToMinTLABSize
27+
* @test TestPLABAdaptToMinTLABSizeG1
2828
* @bug 8289137
2929
* @summary Make sure that Young/OldPLABSize adapt to MinTLABSize setting.
30-
* @requires vm.gc.Parallel | vm.gc.G1
30+
* @requires vm.gc.G1
3131
* @library /test/lib
3232
* @modules java.base/jdk.internal.misc
3333
* java.management
34-
* @run driver gc.TestPLABAdaptToMinTLABSize
34+
* @run driver gc.TestPLABAdaptToMinTLABSize -XX:+UseG1GC
35+
*/
36+
37+
/*
38+
* @test TestPLABAdaptToMinTLABSizeParallel
39+
* @bug 8289137
40+
* @summary Make sure that Young/OldPLABSize adapt to MinTLABSize setting.
41+
* @requires vm.gc.Parallel
42+
* @library /test/lib
43+
* @modules java.base/jdk.internal.misc
44+
* java.management
45+
* @run driver gc.TestPLABAdaptToMinTLABSize -XX:+UseParallelGC
3546
*/
3647

3748
import java.util.ArrayList;
49+
import java.util.Arrays;
3850
import java.util.Collections;
3951

4052
import jdk.test.lib.process.OutputAnalyzer;
@@ -68,9 +80,10 @@ private static void runTest(boolean shouldSucceed, String... extraArgs) throws E
6880
}
6981

7082
public static void main(String[] args) throws Exception {
71-
runTest(true, "-XX:MinTLABSize=100k");
83+
String gc = args[0];
84+
runTest(true, gc, "-XX:MinTLABSize=100k");
7285
// Should not succeed when explicitly specifying invalid combination.
73-
runTest(false, "-XX:MinTLABSize=100k", "-XX:OldPLABSize=5k");
74-
runTest(false, "-XX:MinTLABSize=100k", "-XX:YoungPLABSize=5k");
86+
runTest(false, gc, "-XX:MinTLABSize=100k", "-XX:OldPLABSize=5k");
87+
runTest(false, gc, "-XX:MinTLABSize=100k", "-XX:YoungPLABSize=5k");
7588
}
7689
}

‎test/hotspot/jtreg/gc/g1/pinnedobjs/TestPinnedHumongousFragmentation.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
* @build jdk.test.whitebox.WhiteBox
3737
* @run driver jdk.test.lib.helpers.ClassFileInstaller jdk.test.whitebox.WhiteBox
3838
* @run main/othervm -Xlog:gc+region=trace -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions -Xmx1g -Xms1g
39-
* -XX:VerifyGCType=full -XX:+VerifyDuringGC -XX:+VerifyAfterGC -XX:+WhiteBoxAPI -Xbootclasspath/a:.
39+
* -XX:VerifyGCType=full -XX:+VerifyDuringGC -XX:+VerifyAfterGC -XX:+WhiteBoxAPI -XX:+UseG1GC -Xbootclasspath/a:.
4040
* gc.g1.pinnedobjs.TestPinnedHumongousFragmentation
4141
*/
4242

‎test/hotspot/jtreg/gc/g1/pinnedobjs/TestPinnedObjectContents.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@
3333
* java.management
3434
* @build jdk.test.whitebox.WhiteBox
3535
* @run driver jdk.test.lib.helpers.ClassFileInstaller jdk.test.whitebox.WhiteBox
36-
* @run main/othervm -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xbootclasspath/a:. -XX:+ZapUnusedHeapArea -Xlog:gc,gc+ergo+cset=trace gc.g1.pinnedobjs.TestPinnedObjectContents
36+
* @run main/othervm -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -XX:+UseG1GC
37+
* -Xbootclasspath/a:. -XX:+ZapUnusedHeapArea -Xlog:gc,gc+ergo+cset=trace gc.g1.pinnedobjs.TestPinnedObjectContents
3738
*/
3839

3940
package gc.g1.pinnedobjs;

0 commit comments

Comments
 (0)
Please sign in to comment.