< prev index next >

test/compiler/codecache/cli/TestSegmentedCodeCacheOption.java

Print this page
rev 11557 : 8132919: use package in compiler tests
Reviewed-by: duke

*** 18,45 **** * * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ - import jdk.test.lib.ExitCode; - import jdk.test.lib.Platform; - import jdk.test.lib.cli.CommandLineOptionTest; - import common.CodeCacheOptions; - import sun.hotspot.code.BlobType; /** * @test * @bug 8015774 * @summary Verify SegmentedCodeCache option's processing ! * @library /testlibrary /test/lib * @modules java.base/jdk.internal.misc * java.compiler * java.management * jdk.jvmstat/sun.jvmstat.monitor ! * @build TestSegmentedCodeCacheOption jdk.test.lib.* ! * @run main TestSegmentedCodeCacheOption */ public class TestSegmentedCodeCacheOption { private static final String INT_MODE = "-Xint"; private static final String TIERED_COMPILATION = "TieredCompilation"; private static final String SEGMENTED_CODE_CACHE = "SegmentedCodeCache"; private static final String USE_SEGMENTED_CODE_CACHE --- 18,50 ---- * * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ /** * @test * @bug 8015774 * @summary Verify SegmentedCodeCache option's processing ! * @library /testlibrary /test/lib / * @modules java.base/jdk.internal.misc * java.compiler * java.management * jdk.jvmstat/sun.jvmstat.monitor ! * ! * @build jdk.test.lib.* ! * @run driver compiler.codecache.cli.TestSegmentedCodeCacheOption */ + + package compiler.codecache.cli; + + import compiler.codecache.cli.common.CodeCacheOptions; + import jdk.test.lib.ExitCode; + import jdk.test.lib.Platform; + import jdk.test.lib.cli.CommandLineOptionTest; + import sun.hotspot.code.BlobType; + public class TestSegmentedCodeCacheOption { private static final String INT_MODE = "-Xint"; private static final String TIERED_COMPILATION = "TieredCompilation"; private static final String SEGMENTED_CODE_CACHE = "SegmentedCodeCache"; private static final String USE_SEGMENTED_CODE_CACHE
< prev index next >