author | ohair |
Tue, 25 May 2010 15:58:33 -0700 | |
changeset 5506 | 202f599c92aa |
parent 274 | d0ca9ee56273 |
child 15254 | 3997a6f357cb |
permissions | -rw-r--r-- |
274
d0ca9ee56273
6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff
changeset
|
1 |
# |
5506 | 2 |
# Copyright (c) 2008, 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 | 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. |
|
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 |
# @test |
d0ca9ee56273
6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff
changeset
|
25 |
# @bug 6289149 |
d0ca9ee56273
6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff
changeset
|
26 |
# @summary test when the agent's class has a zero arg premain() function. |
d0ca9ee56273
6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff
changeset
|
27 |
# @author Daniel D. Daugherty, Sun Microsystems |
d0ca9ee56273
6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff
changeset
|
28 |
# |
d0ca9ee56273
6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff
changeset
|
29 |
# @run build DummyMain |
d0ca9ee56273
6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff
changeset
|
30 |
# @run shell ../MakeJAR3.sh ZeroArgPremainAgent |
d0ca9ee56273
6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff
changeset
|
31 |
# @run shell ZeroArgPremainAgent.sh |
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 |
if [ "${TESTJAVA}" = "" ] |
d0ca9ee56273
6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff
changeset
|
35 |
then |
d0ca9ee56273
6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff
changeset
|
36 |
echo "TESTJAVA not set. Test cannot execute. Failed." |
d0ca9ee56273
6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff
changeset
|
37 |
exit 1 |
d0ca9ee56273
6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff
changeset
|
38 |
fi |
d0ca9ee56273
6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff
changeset
|
39 |
|
d0ca9ee56273
6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff
changeset
|
40 |
if [ "${TESTSRC}" = "" ] |
d0ca9ee56273
6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff
changeset
|
41 |
then |
d0ca9ee56273
6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff
changeset
|
42 |
echo "TESTSRC not set. Test cannot execute. Failed." |
d0ca9ee56273
6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff
changeset
|
43 |
exit 1 |
d0ca9ee56273
6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff
changeset
|
44 |
fi |
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 |
if [ "${TESTCLASSES}" = "" ] |
d0ca9ee56273
6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff
changeset
|
47 |
then |
d0ca9ee56273
6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff
changeset
|
48 |
echo "TESTCLASSES not set. Test cannot execute. Failed." |
d0ca9ee56273
6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff
changeset
|
49 |
exit 1 |
d0ca9ee56273
6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff
changeset
|
50 |
fi |
d0ca9ee56273
6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff
changeset
|
51 |
|
d0ca9ee56273
6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff
changeset
|
52 |
JAVAC="${TESTJAVA}"/bin/javac |
d0ca9ee56273
6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff
changeset
|
53 |
JAVA="${TESTJAVA}"/bin/java |
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 |
"${JAVA}" ${TESTVMOPTS} -javaagent:ZeroArgPremainAgent.jar \ |
d0ca9ee56273
6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff
changeset
|
56 |
-classpath "${TESTCLASSES}" DummyMain > output.log 2>&1 |
d0ca9ee56273
6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff
changeset
|
57 |
cat output.log |
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 |
MESG="java.lang.NoSuchMethodException" |
d0ca9ee56273
6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff
changeset
|
60 |
grep "$MESG" output.log |
d0ca9ee56273
6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff
changeset
|
61 |
result=$? |
d0ca9ee56273
6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff
changeset
|
62 |
if [ "$result" = 0 ]; then |
d0ca9ee56273
6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff
changeset
|
63 |
echo "PASS: found '$MESG' in the test output" |
d0ca9ee56273
6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff
changeset
|
64 |
else |
d0ca9ee56273
6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff
changeset
|
65 |
echo "FAIL: did NOT find '$MESG' in the test output" |
d0ca9ee56273
6289149: 4/4 Java Agent will pick wrong execution path while attaching
dcubed
parents:
diff
changeset
|
66 |
fi |
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 |
exit $result |