< prev index next >

test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/general_functions/GF08/gf08t001/TestDriver.java

Print this page
*** 1,7 ***
  /*
!  * Copyright (c) 2018, 2022, 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
   * under the terms of the GNU General Public License version 2 only, as
   * published by the Free Software Foundation.
--- 1,7 ---
  /*
!  * Copyright (c) 2018, 2026, 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
   * under the terms of the GNU General Public License version 2 only, as
   * published by the Free Software Foundation.

*** 72,15 ***
          boolean isUseG1GCon = GC.G1.isSelected();
          boolean isUseZGCon = GC.Z.isSelected();
          boolean isShenandoahGCon = GC.Shenandoah.isSelected();
          boolean isUseEpsilonGCon = GC.Epsilon.isSelected();
  
-         if (Compiler.isGraalEnabled() &&
-             (isUseZGCon || isUseEpsilonGCon || isShenandoahGCon)) {
-             return; // Graal does not support these GCs
-         }
- 
          String keyPhrase;
          if ((isExplicitGCInvokesConcurrentOn && isUseG1GCon) || isUseZGCon || isShenandoahGCon) {
              keyPhrase = "GC";
          } else {
              keyPhrase = "Pause Full";
--- 72,10 ---
< prev index next >