test/hotspot/jtreg/gc/stress/systemgc/TestSystemGCWithCMS.java
author tschatzl
Tue, 07 Nov 2017 13:51:18 +0100
changeset 47800 df4f4688b13d
parent 47216 71c04702a3d5
child 48883 0f1be3c7b6b2
permissions -rw-r--r--
8190703: TestSystemGCWith* infrequently times out on SPARC Summary: Give the test a timeout after which it ends on its own. Reviewed-by: shade, sjohanss
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
46396
4cca6758a9ee 8178095: Add GC stress test TestSystemGC
ehelin
parents:
diff changeset
     1
/*
4cca6758a9ee 8178095: Add GC stress test TestSystemGC
ehelin
parents:
diff changeset
     2
 * Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
4cca6758a9ee 8178095: Add GC stress test TestSystemGC
ehelin
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4cca6758a9ee 8178095: Add GC stress test TestSystemGC
ehelin
parents:
diff changeset
     4
 *
4cca6758a9ee 8178095: Add GC stress test TestSystemGC
ehelin
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
4cca6758a9ee 8178095: Add GC stress test TestSystemGC
ehelin
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
4cca6758a9ee 8178095: Add GC stress test TestSystemGC
ehelin
parents:
diff changeset
     7
 * published by the Free Software Foundation.
4cca6758a9ee 8178095: Add GC stress test TestSystemGC
ehelin
parents:
diff changeset
     8
 *
4cca6758a9ee 8178095: Add GC stress test TestSystemGC
ehelin
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
4cca6758a9ee 8178095: Add GC stress test TestSystemGC
ehelin
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
4cca6758a9ee 8178095: Add GC stress test TestSystemGC
ehelin
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
4cca6758a9ee 8178095: Add GC stress test TestSystemGC
ehelin
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
4cca6758a9ee 8178095: Add GC stress test TestSystemGC
ehelin
parents:
diff changeset
    13
 * accompanied this code).
4cca6758a9ee 8178095: Add GC stress test TestSystemGC
ehelin
parents:
diff changeset
    14
 *
4cca6758a9ee 8178095: Add GC stress test TestSystemGC
ehelin
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
4cca6758a9ee 8178095: Add GC stress test TestSystemGC
ehelin
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
4cca6758a9ee 8178095: Add GC stress test TestSystemGC
ehelin
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
4cca6758a9ee 8178095: Add GC stress test TestSystemGC
ehelin
parents:
diff changeset
    18
 *
4cca6758a9ee 8178095: Add GC stress test TestSystemGC
ehelin
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
4cca6758a9ee 8178095: Add GC stress test TestSystemGC
ehelin
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
4cca6758a9ee 8178095: Add GC stress test TestSystemGC
ehelin
parents:
diff changeset
    21
 * questions.
4cca6758a9ee 8178095: Add GC stress test TestSystemGC
ehelin
parents:
diff changeset
    22
 *
4cca6758a9ee 8178095: Add GC stress test TestSystemGC
ehelin
parents:
diff changeset
    23
 */
4cca6758a9ee 8178095: Add GC stress test TestSystemGC
ehelin
parents:
diff changeset
    24
4cca6758a9ee 8178095: Add GC stress test TestSystemGC
ehelin
parents:
diff changeset
    25
/*
4cca6758a9ee 8178095: Add GC stress test TestSystemGC
ehelin
parents:
diff changeset
    26
 * @test TestSystemGCWithCMS
47800
df4f4688b13d 8190703: TestSystemGCWith* infrequently times out on SPARC
tschatzl
parents: 47216
diff changeset
    27
 * @bug 8190703
46396
4cca6758a9ee 8178095: Add GC stress test TestSystemGC
ehelin
parents:
diff changeset
    28
 * @key gc
4cca6758a9ee 8178095: Add GC stress test TestSystemGC
ehelin
parents:
diff changeset
    29
 * @key stress
4cca6758a9ee 8178095: Add GC stress test TestSystemGC
ehelin
parents:
diff changeset
    30
 * @requires vm.gc.ConcMarkSweep
4cca6758a9ee 8178095: Add GC stress test TestSystemGC
ehelin
parents:
diff changeset
    31
 * @summary Stress the CMS GC full GC by allocating objects of different lifetimes concurrently with System.gc().
47800
df4f4688b13d 8190703: TestSystemGCWith* infrequently times out on SPARC
tschatzl
parents: 47216
diff changeset
    32
 * @run main/othervm/timeout=300 -Xlog:gc*=info -Xmx512m -XX:+UseConcMarkSweepGC TestSystemGCWithCMS 270
46396
4cca6758a9ee 8178095: Add GC stress test TestSystemGC
ehelin
parents:
diff changeset
    33
 */
4cca6758a9ee 8178095: Add GC stress test TestSystemGC
ehelin
parents:
diff changeset
    34
public class TestSystemGCWithCMS {
47800
df4f4688b13d 8190703: TestSystemGCWith* infrequently times out on SPARC
tschatzl
parents: 47216
diff changeset
    35
    public static void main(String[] args) throws Exception {
46396
4cca6758a9ee 8178095: Add GC stress test TestSystemGC
ehelin
parents:
diff changeset
    36
        TestSystemGC.main(args);
4cca6758a9ee 8178095: Add GC stress test TestSystemGC
ehelin
parents:
diff changeset
    37
    }
4cca6758a9ee 8178095: Add GC stress test TestSystemGC
ehelin
parents:
diff changeset
    38
}