< prev index next >

test/compiler/codecache/CheckReservedInitialCodeCacheSizeArgOrder.java

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

*** 25,40 **** * @test * @bug 8013496 * @summary Test checks that the order in which ReversedCodeCacheSize and * InitialCodeCacheSize are passed to the VM is irrelevant. * @library /testlibrary - * * @modules java.base/jdk.internal.misc * java.management */ - import jdk.test.lib.*; public class CheckReservedInitialCodeCacheSizeArgOrder { public static void main(String[] args) throws Exception { ProcessBuilder pb1, pb2; OutputAnalyzer out1, out2; --- 25,45 ---- * @test * @bug 8013496 * @summary Test checks that the order in which ReversedCodeCacheSize and * InitialCodeCacheSize are passed to the VM is irrelevant. * @library /testlibrary * @modules java.base/jdk.internal.misc * java.management + * + * @run driver compiler.codecache.CheckReservedInitialCodeCacheSizeArgOrder */ + package compiler.codecache; + + import jdk.test.lib.OutputAnalyzer; + import jdk.test.lib.ProcessTools; + public class CheckReservedInitialCodeCacheSizeArgOrder { public static void main(String[] args) throws Exception { ProcessBuilder pb1, pb2; OutputAnalyzer out1, out2;
< prev index next >