test/hotspot/jtreg/gc/TestMemoryInitializationWithCMS.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:
46607
cbe334268a4c 8178507: co-locate nsk.regression.gc tests
aharlap
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) 2002, 2019, Oracle and/or its affiliates. All rights reserved.
46607
cbe334268a4c 8178507: co-locate nsk.regression.gc tests
aharlap
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
cbe334268a4c 8178507: co-locate nsk.regression.gc tests
aharlap
parents:
diff changeset
     4
 *
cbe334268a4c 8178507: co-locate nsk.regression.gc tests
aharlap
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
cbe334268a4c 8178507: co-locate nsk.regression.gc tests
aharlap
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
cbe334268a4c 8178507: co-locate nsk.regression.gc tests
aharlap
parents:
diff changeset
     7
 * published by the Free Software Foundation.
cbe334268a4c 8178507: co-locate nsk.regression.gc tests
aharlap
parents:
diff changeset
     8
 *
cbe334268a4c 8178507: co-locate nsk.regression.gc tests
aharlap
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
cbe334268a4c 8178507: co-locate nsk.regression.gc tests
aharlap
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
cbe334268a4c 8178507: co-locate nsk.regression.gc tests
aharlap
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
cbe334268a4c 8178507: co-locate nsk.regression.gc tests
aharlap
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
cbe334268a4c 8178507: co-locate nsk.regression.gc tests
aharlap
parents:
diff changeset
    13
 * accompanied this code).
cbe334268a4c 8178507: co-locate nsk.regression.gc tests
aharlap
parents:
diff changeset
    14
 *
cbe334268a4c 8178507: co-locate nsk.regression.gc tests
aharlap
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
cbe334268a4c 8178507: co-locate nsk.regression.gc tests
aharlap
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
cbe334268a4c 8178507: co-locate nsk.regression.gc tests
aharlap
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
cbe334268a4c 8178507: co-locate nsk.regression.gc tests
aharlap
parents:
diff changeset
    18
 *
cbe334268a4c 8178507: co-locate nsk.regression.gc tests
aharlap
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
cbe334268a4c 8178507: co-locate nsk.regression.gc tests
aharlap
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
cbe334268a4c 8178507: co-locate nsk.regression.gc tests
aharlap
parents:
diff changeset
    21
 * questions.
cbe334268a4c 8178507: co-locate nsk.regression.gc tests
aharlap
parents:
diff changeset
    22
 */
cbe334268a4c 8178507: co-locate nsk.regression.gc tests
aharlap
parents:
diff changeset
    23
53523
4c5184c56dc2 8214799: Add package declaration to each JTREG test case in the gc folder
lkorinth
parents: 50455
diff changeset
    24
package gc;
4c5184c56dc2 8214799: Add package declaration to each JTREG test case in the gc folder
lkorinth
parents: 50455
diff changeset
    25
46607
cbe334268a4c 8178507: co-locate nsk.regression.gc tests
aharlap
parents:
diff changeset
    26
/*
cbe334268a4c 8178507: co-locate nsk.regression.gc tests
aharlap
parents:
diff changeset
    27
 * @test TestMemoryInitializationWithCMS
cbe334268a4c 8178507: co-locate nsk.regression.gc tests
aharlap
parents:
diff changeset
    28
 * @key gc
cbe334268a4c 8178507: co-locate nsk.regression.gc tests
aharlap
parents:
diff changeset
    29
 * @bug 4668531
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.debug & vm.gc.ConcMarkSweep & !vm.graal.enabled
46607
cbe334268a4c 8178507: co-locate nsk.regression.gc tests
aharlap
parents:
diff changeset
    32
 * @summary Simple test for -XX:+CheckMemoryInitialization doesn't crash VM
53523
4c5184c56dc2 8214799: Add package declaration to each JTREG test case in the gc folder
lkorinth
parents: 50455
diff changeset
    33
 * @run main/othervm -XX:+UseConcMarkSweepGC -XX:+CheckMemoryInitialization gc.TestMemoryInitializationWithCMS
46607
cbe334268a4c 8178507: co-locate nsk.regression.gc tests
aharlap
parents:
diff changeset
    34
 */
cbe334268a4c 8178507: co-locate nsk.regression.gc tests
aharlap
parents:
diff changeset
    35
cbe334268a4c 8178507: co-locate nsk.regression.gc tests
aharlap
parents:
diff changeset
    36
public class TestMemoryInitializationWithCMS {
cbe334268a4c 8178507: co-locate nsk.regression.gc tests
aharlap
parents:
diff changeset
    37
cbe334268a4c 8178507: co-locate nsk.regression.gc tests
aharlap
parents:
diff changeset
    38
    public static void main(String args[]) {
cbe334268a4c 8178507: co-locate nsk.regression.gc tests
aharlap
parents:
diff changeset
    39
        TestMemoryInitialization.main(args);
cbe334268a4c 8178507: co-locate nsk.regression.gc tests
aharlap
parents:
diff changeset
    40
    }
cbe334268a4c 8178507: co-locate nsk.regression.gc tests
aharlap
parents:
diff changeset
    41
}