test/hotspot/jtreg/gc/stress/gcold/TestGCOldWithCMS.java
author lkorinth
Mon, 28 Jan 2019 15:53:56 +0100
changeset 53523 4c5184c56dc2
parent 50455 2b73cce96dce
permissions -rw-r--r--
8214799: Add package declaration to each JTREG test case in the gc folder Reviewed-by: lmesnik, tschatzl
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
46398
a70022fa3ec2 8177967: Move TestGCOld to subdirectory
ehelin
parents:
diff changeset
     1
/*
53523
4c5184c56dc2 8214799: Add package declaration to each JTREG test case in the gc folder
lkorinth
parents: 50455
diff changeset
     2
 * Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved.
46398
a70022fa3ec2 8177967: Move TestGCOld to subdirectory
ehelin
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a70022fa3ec2 8177967: Move TestGCOld to subdirectory
ehelin
parents:
diff changeset
     4
 *
a70022fa3ec2 8177967: Move TestGCOld to subdirectory
ehelin
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
a70022fa3ec2 8177967: Move TestGCOld to subdirectory
ehelin
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
a70022fa3ec2 8177967: Move TestGCOld to subdirectory
ehelin
parents:
diff changeset
     7
 * published by the Free Software Foundation.
a70022fa3ec2 8177967: Move TestGCOld to subdirectory
ehelin
parents:
diff changeset
     8
 *
a70022fa3ec2 8177967: Move TestGCOld to subdirectory
ehelin
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
a70022fa3ec2 8177967: Move TestGCOld to subdirectory
ehelin
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a70022fa3ec2 8177967: Move TestGCOld to subdirectory
ehelin
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
a70022fa3ec2 8177967: Move TestGCOld to subdirectory
ehelin
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
a70022fa3ec2 8177967: Move TestGCOld to subdirectory
ehelin
parents:
diff changeset
    13
 * accompanied this code).
a70022fa3ec2 8177967: Move TestGCOld to subdirectory
ehelin
parents:
diff changeset
    14
 *
a70022fa3ec2 8177967: Move TestGCOld to subdirectory
ehelin
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
a70022fa3ec2 8177967: Move TestGCOld to subdirectory
ehelin
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
a70022fa3ec2 8177967: Move TestGCOld to subdirectory
ehelin
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a70022fa3ec2 8177967: Move TestGCOld to subdirectory
ehelin
parents:
diff changeset
    18
 *
a70022fa3ec2 8177967: Move TestGCOld to subdirectory
ehelin
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
a70022fa3ec2 8177967: Move TestGCOld to subdirectory
ehelin
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
a70022fa3ec2 8177967: Move TestGCOld to subdirectory
ehelin
parents:
diff changeset
    21
 * questions.
a70022fa3ec2 8177967: Move TestGCOld to subdirectory
ehelin
parents:
diff changeset
    22
 *
a70022fa3ec2 8177967: Move TestGCOld to subdirectory
ehelin
parents:
diff changeset
    23
 */
a70022fa3ec2 8177967: Move TestGCOld to subdirectory
ehelin
parents:
diff changeset
    24
53523
4c5184c56dc2 8214799: Add package declaration to each JTREG test case in the gc folder
lkorinth
parents: 50455
diff changeset
    25
package gc.stress.gcold;
4c5184c56dc2 8214799: Add package declaration to each JTREG test case in the gc folder
lkorinth
parents: 50455
diff changeset
    26
46398
a70022fa3ec2 8177967: Move TestGCOld to subdirectory
ehelin
parents:
diff changeset
    27
/*
a70022fa3ec2 8177967: Move TestGCOld to subdirectory
ehelin
parents:
diff changeset
    28
 * @test TestGCOldWithCMS
a70022fa3ec2 8177967: Move TestGCOld to subdirectory
ehelin
parents:
diff changeset
    29
 * @key gc
53523
4c5184c56dc2 8214799: Add package declaration to each JTREG test case in the gc folder
lkorinth
parents: 50455
diff changeset
    30
 * @library /
50455
2b73cce96dce 8202611: [GRAAL] Exclude CMS GC testing from runs with Graal
kvn
parents: 47216
diff changeset
    31
 * @requires vm.gc.ConcMarkSweep & !vm.graal.enabled
46398
a70022fa3ec2 8177967: Move TestGCOld to subdirectory
ehelin
parents:
diff changeset
    32
 * @summary Stress the CMS GC by trying to make old objects more likely to be garbage than young objects.
53523
4c5184c56dc2 8214799: Add package declaration to each JTREG test case in the gc folder
lkorinth
parents: 50455
diff changeset
    33
 * @run main/othervm -Xmx384M -XX:+UseConcMarkSweepGC gc.stress.gcold.TestGCOldWithCMS 50 1 20 10 10000
46398
a70022fa3ec2 8177967: Move TestGCOld to subdirectory
ehelin
parents:
diff changeset
    34
 */
a70022fa3ec2 8177967: Move TestGCOld to subdirectory
ehelin
parents:
diff changeset
    35
public class TestGCOldWithCMS {
a70022fa3ec2 8177967: Move TestGCOld to subdirectory
ehelin
parents:
diff changeset
    36
    public static void main(String[] args) {
a70022fa3ec2 8177967: Move TestGCOld to subdirectory
ehelin
parents:
diff changeset
    37
        TestGCOld.main(args);
a70022fa3ec2 8177967: Move TestGCOld to subdirectory
ehelin
parents:
diff changeset
    38
    }
a70022fa3ec2 8177967: Move TestGCOld to subdirectory
ehelin
parents:
diff changeset
    39
}