jdk/test/java/lang/instrument/PremainClass/InheritAgent0111.java
author shurailine
Tue, 27 Oct 2015 20:06:02 -0700
changeset 33402 1156d495a525
parent 30376 2ccf2cf7ea48
permissions -rw-r--r--
8140336: Add @modules for exported dependencies to jdk_core tests Reviewed-by: alanb, mchung
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
274
d0ca9ee56273 6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff changeset
     1
/*
30376
2ccf2cf7ea48 8078896: Add @modules as needed to the jdk_svc tests
ykantser
parents: 5506
diff changeset
     2
 * Copyright (c) 2008, 2015, Oracle and/or its affiliates. All rights reserved.
274
d0ca9ee56273 6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
d0ca9ee56273 6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff changeset
     4
 *
d0ca9ee56273 6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
d0ca9ee56273 6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
d0ca9ee56273 6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff changeset
     7
 * published by the Free Software Foundation.
d0ca9ee56273 6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff changeset
     8
 *
d0ca9ee56273 6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
d0ca9ee56273 6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
d0ca9ee56273 6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
d0ca9ee56273 6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
d0ca9ee56273 6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff changeset
    13
 * accompanied this code).
d0ca9ee56273 6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff changeset
    14
 *
d0ca9ee56273 6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
d0ca9ee56273 6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
d0ca9ee56273 6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
d0ca9ee56273 6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff changeset
    18
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 274
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 274
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 274
diff changeset
    21
 * questions.
274
d0ca9ee56273 6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff changeset
    22
 */
d0ca9ee56273 6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff changeset
    23
d0ca9ee56273 6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff changeset
    24
/**
d0ca9ee56273 6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff changeset
    25
 * @test
d0ca9ee56273 6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff changeset
    26
 * @bug 6289149
d0ca9ee56273 6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff changeset
    27
 * @summary test config (0,1,1,1): inherited 1-arg, declared 2-arg and declared 1-arg in agent class
d0ca9ee56273 6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff changeset
    28
 * @author Daniel D. Daugherty, Sun Microsystems
d0ca9ee56273 6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff changeset
    29
 *
d0ca9ee56273 6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff changeset
    30
 * @run shell ../MakeJAR3.sh InheritAgent0111
d0ca9ee56273 6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff changeset
    31
 * @run main/othervm -javaagent:InheritAgent0111.jar DummyMain
d0ca9ee56273 6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff changeset
    32
 */
d0ca9ee56273 6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff changeset
    33
d0ca9ee56273 6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff changeset
    34
import java.lang.instrument.*;
d0ca9ee56273 6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff changeset
    35
d0ca9ee56273 6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff changeset
    36
class InheritAgent0111 extends InheritAgent0111Super {
d0ca9ee56273 6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff changeset
    37
d0ca9ee56273 6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff changeset
    38
    //
d0ca9ee56273 6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff changeset
    39
    // This agent has a single argument premain() method which
d0ca9ee56273 6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff changeset
    40
    // is NOT the one that should be called.
d0ca9ee56273 6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff changeset
    41
    //
d0ca9ee56273 6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff changeset
    42
    public static void premain (String agentArgs) {
d0ca9ee56273 6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff changeset
    43
        System.out.println("Hello from Single-Arg InheritAgent0111!");
d0ca9ee56273 6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff changeset
    44
        throw new Error("ERROR: THIS AGENT SHOULD NOT HAVE BEEN CALLED.");
d0ca9ee56273 6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff changeset
    45
    }
d0ca9ee56273 6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff changeset
    46
d0ca9ee56273 6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff changeset
    47
    //
d0ca9ee56273 6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff changeset
    48
    // This agent has a double argument premain() method which
d0ca9ee56273 6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff changeset
    49
    // is the one that should be called.
d0ca9ee56273 6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff changeset
    50
    //
d0ca9ee56273 6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff changeset
    51
    public static void premain (String agentArgs, Instrumentation instArg) {
d0ca9ee56273 6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff changeset
    52
        System.out.println("Hello from Double-Arg InheritAgent0111!");
d0ca9ee56273 6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff changeset
    53
    }
d0ca9ee56273 6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff changeset
    54
d0ca9ee56273 6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff changeset
    55
}
d0ca9ee56273 6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff changeset
    56
d0ca9ee56273 6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff changeset
    57
class InheritAgent0111Super {
d0ca9ee56273 6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff changeset
    58
d0ca9ee56273 6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff changeset
    59
    //
d0ca9ee56273 6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff changeset
    60
    // This agent has a single argument premain() method which
d0ca9ee56273 6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff changeset
    61
    // is NOT the one that should be called.
d0ca9ee56273 6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff changeset
    62
    //
d0ca9ee56273 6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff changeset
    63
    public static void premain (String agentArgs) {
d0ca9ee56273 6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff changeset
    64
        System.out.println("Hello from Single-Arg InheritAgent0111Super!");
d0ca9ee56273 6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff changeset
    65
        throw new Error("ERROR: THIS AGENT SHOULD NOT HAVE BEEN CALLED.");
d0ca9ee56273 6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff changeset
    66
    }
d0ca9ee56273 6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff changeset
    67
d0ca9ee56273 6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff changeset
    68
    // This agent does NOT have a double argument premain() method.
d0ca9ee56273 6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff changeset
    69
}