8342958: Use jvmArgs consistently in microbenchmarks

Reviewed-by: ecaspole, jvernee
This commit is contained in:
Claes Redestad 2024-10-28 22:40:25 +00:00
parent d49f21043b
commit 90bd544512
142 changed files with 202 additions and 202 deletions

View file

@ -45,7 +45,7 @@ import java.util.concurrent.TimeUnit;
@OutputTimeUnit(TimeUnit.NANOSECONDS)
@Warmup(iterations = 10, time = 500, timeUnit = TimeUnit.MILLISECONDS)
@Measurement(iterations = 10, time = 500, timeUnit = TimeUnit.MILLISECONDS)
@Fork(value = 3, jvmArgsAppend = {"-Xms1g", "-Xmx1g"})
@Fork(value = 3, jvmArgs = {"-Xms1g", "-Xmx1g"})
public class StringJoinerBenchmark {
@Benchmark