< prev index next >

test/java/lang/instrument/ManyMethodsBenchmarkAgent.java

Print this page
rev 16783 : 8176176: fix @modules in jdk_svc tests
Reviewed-by: duke


  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 8046246
  27  * @summary Tests and benchmarks the JVMTI RedefineClasses when a
  28  *          single class (and its parent) contains many methods.
  29  *
  30  * @modules jdk.compiler
  31  *          java.instrument
  32  *          jdk.zipfs

  33  * @run build ManyMethodsBenchmarkApp ManyMethodsBenchmarkAgent
  34  * @run shell MakeJAR3.sh ManyMethodsBenchmarkAgent 'Can-Retransform-Classes: true'
  35  * @run main/othervm -javaagent:ManyMethodsBenchmarkAgent.jar ManyMethodsBenchmarkApp
  36  */
  37 import java.lang.instrument.*;
  38 
  39 public class ManyMethodsBenchmarkAgent
  40 {
  41     public  static boolean fail = false;
  42     public  static boolean completed = false;
  43     private static  Instrumentation instrumentation;
  44 
  45     public static void
  46     premain(    String agentArgs,
  47                 Instrumentation instrumentation) {
  48         System.out.println("ManyMethodsBenchmarkAgent started");
  49         ManyMethodsBenchmarkAgent.instrumentation = instrumentation;
  50         System.out.println("ManyMethodsBenchmarkAgent finished");
  51     }
  52 




  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 8046246
  27  * @summary Tests and benchmarks the JVMTI RedefineClasses when a
  28  *          single class (and its parent) contains many methods.
  29  *
  30  * @modules jdk.compiler
  31  *          java.instrument
  32  *          jdk.zipfs
  33  *
  34  * @run build ManyMethodsBenchmarkApp ManyMethodsBenchmarkAgent
  35  * @run shell MakeJAR3.sh ManyMethodsBenchmarkAgent 'Can-Retransform-Classes: true'
  36  * @run main/othervm -javaagent:ManyMethodsBenchmarkAgent.jar ManyMethodsBenchmarkApp
  37  */
  38 import java.lang.instrument.*;
  39 
  40 public class ManyMethodsBenchmarkAgent
  41 {
  42     public  static boolean fail = false;
  43     public  static boolean completed = false;
  44     private static  Instrumentation instrumentation;
  45 
  46     public static void
  47     premain(    String agentArgs,
  48                 Instrumentation instrumentation) {
  49         System.out.println("ManyMethodsBenchmarkAgent started");
  50         ManyMethodsBenchmarkAgent.instrumentation = instrumentation;
  51         System.out.println("ManyMethodsBenchmarkAgent finished");
  52     }
  53 


< prev index next >