8298785: gc/TestFullGCCount.java fails with "invalid boolean value: null' for expression vm.opt.ExplicitGCInvokesConcurrent'"

Reviewed-by: dcubed
This commit is contained in:
Kim Barrett 2022-12-14 21:57:55 +00:00
parent ebc471040e
commit 80cadd4010

View File

@ -30,7 +30,7 @@ package gc;
* @comment Shenandoah has "ExplicitGCInvokesConcurrent" on by default
* @requires !(vm.gc == "Shenandoah" & vm.opt.ExplicitGCInvokesConcurrent != false)
* @comment G1 has separate counters for STW Full GC and concurrent GC.
* @requires !(vm.gc == "G1" & vm.opt.ExplicitGCInvokesConcurrent)
* @requires !(vm.gc.G1 & vm.opt.ExplicitGCInvokesConcurrent == true)
* @requires vm.gc != "Z"
* @modules java.management
* @run main/othervm -Xlog:gc gc.TestFullGCCount