8316973: GC: Make TestDisableDefaultGC use createTestJvm
Reviewed-by: ayang, mli, lmesnik
This commit is contained in:
parent
a949824e98
commit
5f4be8cea9
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2016, 2023, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -40,13 +40,13 @@ import jdk.test.lib.process.OutputAnalyzer;
|
||||
public class TestDisableDefaultGC {
|
||||
public static void main(String[] args) throws Exception {
|
||||
// Start VM, disabling all possible default GCs
|
||||
ProcessBuilder pb = GCArguments.createJavaProcessBuilder("-XX:-UseSerialGC",
|
||||
"-XX:-UseParallelGC",
|
||||
"-XX:-UseG1GC",
|
||||
"-XX:-UseZGC",
|
||||
"-XX:+UnlockExperimentalVMOptions",
|
||||
"-XX:-UseShenandoahGC",
|
||||
"-version");
|
||||
ProcessBuilder pb = GCArguments.createTestJvm("-XX:-UseSerialGC",
|
||||
"-XX:-UseParallelGC",
|
||||
"-XX:-UseG1GC",
|
||||
"-XX:-UseZGC",
|
||||
"-XX:+UnlockExperimentalVMOptions",
|
||||
"-XX:-UseShenandoahGC",
|
||||
"-version");
|
||||
OutputAnalyzer output = new OutputAnalyzer(pb.start());
|
||||
output.shouldMatch("Garbage collector not selected");
|
||||
output.shouldHaveExitValue(1);
|
||||
|
Loading…
Reference in New Issue
Block a user