< prev index next >

test/jdk/jdk/jfr/event/gc/detailed/TestPromotionFailedEventWithParNew.java

Print this page
rev 51054 : imported patch 9000013-aixDisableJFR-requires.patch


   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 package jdk.jfr.event.gc.detailed;
  26 
  27 /*
  28  * @test
  29  * @key jfr

  30  * @requires (vm.gc == "ConcMarkSweep" | vm.gc == null) & !vm.graal.enabled
  31  * @library /test/lib /test/jdk
  32  * @run main/othervm  jdk.jfr.event.gc.detailed.TestPromotionFailedEventWithParNew
  33  */
  34 public class TestPromotionFailedEventWithParNew {
  35 
  36     public static void main(String[] args) throws Throwable {
  37         PromotionFailedEvent.test("TestPromotionFailedEventWithParNew",
  38                 new String[]{"-Xmx32m", "-Xmn30m", "-XX:-UseDynamicNumberOfGCThreads",
  39                     "-XX:ParallelGCThreads=3", "-XX:MaxTenuringThreshold=0",
  40                     "-Xlog:gc*=debug", "-XX:+UseConcMarkSweepGC",
  41                     "-XX:+UnlockExperimentalVMOptions", "-XX:-UseFastUnorderedTimeStamps"});
  42     }
  43 
  44 }


   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 package jdk.jfr.event.gc.detailed;
  26 
  27 /**
  28  * @test
  29  * @key jfr
  30  * @requires vm.hasJFR
  31  * @requires (vm.gc == "ConcMarkSweep" | vm.gc == null) & !vm.graal.enabled
  32  * @library /test/lib /test/jdk
  33  * @run main/othervm  jdk.jfr.event.gc.detailed.TestPromotionFailedEventWithParNew
  34  */
  35 public class TestPromotionFailedEventWithParNew {
  36 
  37     public static void main(String[] args) throws Throwable {
  38         PromotionFailedEvent.test("TestPromotionFailedEventWithParNew",
  39                 new String[]{"-Xmx32m", "-Xmn30m", "-XX:-UseDynamicNumberOfGCThreads",
  40                     "-XX:ParallelGCThreads=3", "-XX:MaxTenuringThreshold=0",
  41                     "-Xlog:gc*=debug", "-XX:+UseConcMarkSweepGC",
  42                     "-XX:+UnlockExperimentalVMOptions", "-XX:-UseFastUnorderedTimeStamps"});
  43     }
  44 
  45 }
< prev index next >