HeapDumpAllTest.java revision 12559:d63a92d90bf3
1234353Sdim/*
2193323Sed * Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved.
3193323Sed * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4193323Sed *
5193323Sed * This code is free software; you can redistribute it and/or modify it
6193323Sed * under the terms of the GNU General Public License version 2 only, as
7193323Sed * published by the Free Software Foundation.
8193323Sed *
9193323Sed * This code is distributed in the hope that it will be useful, but WITHOUT
10193323Sed * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11193323Sed * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12193323Sed * version 2 for more details (a copy is included in the LICENSE file that
13193323Sed * accompanied this code).
14193323Sed *
15193323Sed * You should have received a copy of the GNU General Public License version
16193323Sed * 2 along with this work; if not, write to the Free Software Foundation,
17234353Sdim * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18193323Sed *
19193323Sed * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20224145Sdim * or visit www.oracle.com if you need additional information or have any
21224145Sdim * questions.
22224145Sdim */
23193323Sed
24193323Sed/*
25193323Sed * @test
26193323Sed * @summary Test of diagnostic command GC.heap_dump -all=true
27193323Sed * @library /test/lib
28193323Sed * @modules java.base/jdk.internal.misc
29193323Sed *          java.compiler
30193323Sed *          java.management
31193323Sed *          jdk.internal.jvmstat/sun.jvmstat.monitor
32193323Sed * @run testng HeapDumpAllTest
33193323Sed */
34193323Sedpublic class HeapDumpAllTest extends HeapDumpTest {
35193323Sed    public HeapDumpAllTest() {
36193323Sed        super();
37224145Sdim        heapDumpArgs = "-all=true";
38193323Sed    }
39193323Sed
40193323Sed    /* See HeapDumpTest for test cases */
41193323Sed}
42193323Sed
43193323Sed