|
24 | 24 | package gc;
|
25 | 25 |
|
26 | 26 | /*
|
27 |
| - * @test TestPLABAdaptToMinTLABSize |
| 27 | + * @test TestPLABAdaptToMinTLABSizeG1 |
28 | 28 | * @bug 8289137
|
29 | 29 | * @summary Make sure that Young/OldPLABSize adapt to MinTLABSize setting.
|
30 |
| - * @requires vm.gc.Parallel | vm.gc.G1 |
| 30 | + * @requires vm.gc.G1 |
31 | 31 | * @library /test/lib
|
32 | 32 | * @modules java.base/jdk.internal.misc
|
33 | 33 | * 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 |
35 | 46 | */
|
36 | 47 |
|
37 | 48 | import java.util.ArrayList;
|
| 49 | +import java.util.Arrays; |
38 | 50 | import java.util.Collections;
|
39 | 51 |
|
40 | 52 | import jdk.test.lib.process.OutputAnalyzer;
|
@@ -68,9 +80,10 @@ private static void runTest(boolean shouldSucceed, String... extraArgs) throws E
|
68 | 80 | }
|
69 | 81 |
|
70 | 82 | 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"); |
72 | 85 | // 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"); |
75 | 88 | }
|
76 | 89 | }
|
0 commit comments