Skip to content

Commit 5bd1052

Browse files
committedOct 17, 2023
8317317: G1: Make TestG1RemSetFlags use createTestJvm
Reviewed-by: mli, tschatzl
1 parent c64bd3d commit 5bd1052

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎test/hotspot/jtreg/gc/arguments/TestG1RemSetFlags.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2021, 2022, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2021, 2023, 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
@@ -25,7 +25,7 @@
2525

2626
/*
2727
* @test TestG1RemSetFlags
28-
* @requires vm.gc.G1
28+
* @requires vm.gc.G1 & vm.opt.UnlockExperimentalVMOptions == null & vm.opt.G1RemSetHowlNumBuckets == null & vm.opt.G1RemSetHowlMaxNumBuckets == null
2929
* @summary Verify that the remembered set flags are updated as expected
3030
* @modules java.base/jdk.internal.misc
3131
* @modules java.management/sun.management
@@ -48,7 +48,7 @@ private static void checkG1RemSetFlags(String[] flags, int exitValue) throws Exc
4848
flagList.add("-XX:+PrintFlagsFinal");
4949
flagList.add("-version");
5050

51-
ProcessBuilder pb = GCArguments.createJavaProcessBuilder(flagList);
51+
ProcessBuilder pb = GCArguments.createTestJvm(flagList);
5252
OutputAnalyzer output = new OutputAnalyzer(pb.start());
5353
output.shouldHaveExitValue(exitValue);
5454
}

0 commit comments

Comments
 (0)
Please sign in to comment.