1/*
2 * Copyright (c) 2014, 2017, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation.
8 *
9 * This code is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12 * version 2 for more details (a copy is included in the LICENSE file that
13 * accompanied this code).
14 *
15 * You should have received a copy of the GNU General Public License version
16 * 2 along with this work; if not, write to the Free Software Foundation,
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20 * or visit www.oracle.com if you need additional information or have any
21 * questions.
22 */
23
24/**
25 * @test
26 * @bug 8015774
27 * @summary Verify that PrintCodeCache option print correct information.
28 * @library /test/lib /
29 * @modules java.base/jdk.internal.misc
30 *          java.compiler
31 *          java.management
32 *          jdk.internal.jvmstat/sun.jvmstat.monitor
33 *
34 * @run main/timeout=240 compiler.codecache.cli.printcodecache.TestPrintCodeCacheOption
35 */
36
37package compiler.codecache.cli.printcodecache;
38
39import compiler.codecache.cli.common.CodeCacheCLITestBase;
40import compiler.codecache.cli.common.CodeCacheCLITestCase;
41import sun.hotspot.code.BlobType;
42
43import java.util.EnumSet;
44
45public class TestPrintCodeCacheOption extends CodeCacheCLITestBase {
46    private static final CodeCacheCLITestCase DISABLED_PRINT_CODE_CACHE
47            = new CodeCacheCLITestCase(new CodeCacheCLITestCase.Description(
48                            options -> true, EnumSet.noneOf(BlobType.class)),
49                    new PrintCodeCacheRunner(false));
50
51    private static final CodeCacheCLITestCase.Runner DEFAULT_RUNNER
52            = new PrintCodeCacheRunner();
53
54    private TestPrintCodeCacheOption() {
55        super(CodeCacheCLITestBase.OPTIONS_SET,
56                new CodeCacheCLITestCase(CodeCacheCLITestCase
57                        .CommonDescriptions.INT_MODE.description,
58                        DEFAULT_RUNNER),
59                new CodeCacheCLITestCase(CodeCacheCLITestCase
60                        .CommonDescriptions.NON_SEGMENTED.description,
61                        DEFAULT_RUNNER),
62                new CodeCacheCLITestCase(CodeCacheCLITestCase
63                        .CommonDescriptions.NON_TIERED.description,
64                        DEFAULT_RUNNER),
65                new CodeCacheCLITestCase(CodeCacheCLITestCase
66                        .CommonDescriptions.TIERED_LEVEL_0.description,
67                        DEFAULT_RUNNER),
68                new CodeCacheCLITestCase(CodeCacheCLITestCase
69                        .CommonDescriptions.TIERED_LEVEL_1.description,
70                        DEFAULT_RUNNER),
71                new CodeCacheCLITestCase(CodeCacheCLITestCase
72                        .CommonDescriptions.TIERED_LEVEL_4.description,
73                        DEFAULT_RUNNER),
74                DISABLED_PRINT_CODE_CACHE);
75    }
76
77    public static void main(String args[]) throws Throwable {
78        new TestPrintCodeCacheOption().runTestCases();
79    }
80}
81