author | dcubed |
Mon, 24 Mar 2008 15:42:37 -0700 | |
changeset 276 | 57cf064fc997 |
parent 2 | 90ce3da70b43 |
child 715 | f16baef3a20e |
permissions | -rw-r--r-- |
2 | 1 |
# |
2 |
# Copyright 2005 Sun Microsystems, Inc. All Rights Reserved. |
|
3 |
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
|
4 |
# |
|
5 |
# This code is free software; you can redistribute it and/or modify it |
|
6 |
# under the terms of the GNU General Public License version 2 only, as |
|
7 |
# published by the Free Software Foundation. |
|
8 |
# |
|
9 |
# This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
# version 2 for more details (a copy is included in the LICENSE file that |
|
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 Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, |
|
20 |
# CA 95054 USA or visit www.sun.com if you need additional information or |
|
21 |
# have any questions. |
|
22 |
# |
|
23 |
||
24 |
# @test |
|
25 |
# @bug 6173575 |
|
26 |
# @summary Unit tests for appendToBootstrapClassLoaderSearch and |
|
27 |
# appendToSystemClasLoaderSearch methods. |
|
28 |
# |
|
29 |
# @build ClassUnloadTest |
|
30 |
# @run shell ClassUnloadTest.sh |
|
31 |
||
32 |
if [ "${TESTSRC}" = "" ] |
|
33 |
then |
|
34 |
echo "TESTSRC not set. Test cannot execute. Failed." |
|
35 |
exit 1 |
|
36 |
fi |
|
276
57cf064fc997
6491461: 3/3 TEST: java/lang/instrument .sh tests need to use $TESTVMOPTS in their java commands
dcubed
parents:
2
diff
changeset
|
37 |
|
2 | 38 |
. ${TESTSRC}/CommonSetup.sh |
39 |
||
40 |
# Create Foo and Bar |
|
276
57cf064fc997
6491461: 3/3 TEST: java/lang/instrument .sh tests need to use $TESTVMOPTS in their java commands
dcubed
parents:
2
diff
changeset
|
41 |
# Foo has a reference to Bar but we deleted Bar so that |
2 | 42 |
# a NoClassDefFoundError will be thrown when Foo tries to |
43 |
# resolve the reference to Bar |
|
44 |
||
45 |
OTHERDIR="${TESTCLASSES}"/other |
|
46 |
mkdir "${OTHERDIR}" |
|
47 |
||
48 |
FOO="${OTHERDIR}"/Foo.java |
|
49 |
BAR="${OTHERDIR}"/Bar.java |
|
50 |
rm -f "${FOO}" "${BAR}" |
|
51 |
||
52 |
cat << EOF > "${FOO}" |
|
53 |
public class Foo { |
|
54 |
public static boolean doSomething() { |
|
55 |
try { |
|
276
57cf064fc997
6491461: 3/3 TEST: java/lang/instrument .sh tests need to use $TESTVMOPTS in their java commands
dcubed
parents:
2
diff
changeset
|
56 |
Bar b = new Bar(); |
57cf064fc997
6491461: 3/3 TEST: java/lang/instrument .sh tests need to use $TESTVMOPTS in their java commands
dcubed
parents:
2
diff
changeset
|
57 |
return true; |
57cf064fc997
6491461: 3/3 TEST: java/lang/instrument .sh tests need to use $TESTVMOPTS in their java commands
dcubed
parents:
2
diff
changeset
|
58 |
} catch (NoClassDefFoundError x) { |
57cf064fc997
6491461: 3/3 TEST: java/lang/instrument .sh tests need to use $TESTVMOPTS in their java commands
dcubed
parents:
2
diff
changeset
|
59 |
return false; |
57cf064fc997
6491461: 3/3 TEST: java/lang/instrument .sh tests need to use $TESTVMOPTS in their java commands
dcubed
parents:
2
diff
changeset
|
60 |
} |
2 | 61 |
} |
62 |
} |
|
63 |
EOF |
|
64 |
||
65 |
echo "public class Bar { }" > "${BAR}" |
|
66 |
||
67 |
(cd "${OTHERDIR}"; \ |
|
68 |
$JAVAC Foo.java Bar.java; $JAR cf "${OTHERDIR}"/Bar.jar Bar.class; \ |
|
69 |
rm -f Bar.class) |
|
70 |
||
71 |
# Create the manifest |
|
72 |
MANIFEST="${TESTCLASSES}"/agent.mf |
|
73 |
rm -f "${MANIFEST}" |
|
74 |
echo "Premain-Class: ClassUnloadTest" > "${MANIFEST}" |
|
75 |
||
76 |
# Setup test case as an agent |
|
77 |
$JAR -cfm "${TESTCLASSES}"/ClassUnloadTest.jar "${MANIFEST}" \ |
|
78 |
-C "${TESTCLASSES}" ClassUnloadTest.class |
|
79 |
||
80 |
# Finally we run the test |
|
81 |
(cd "${TESTCLASSES}"; \ |
|
276
57cf064fc997
6491461: 3/3 TEST: java/lang/instrument .sh tests need to use $TESTVMOPTS in their java commands
dcubed
parents:
2
diff
changeset
|
82 |
$JAVA ${TESTVMOPTS} -Xverify:none -XX:+TraceClassUnloading \ |
57cf064fc997
6491461: 3/3 TEST: java/lang/instrument .sh tests need to use $TESTVMOPTS in their java commands
dcubed
parents:
2
diff
changeset
|
83 |
-javaagent:ClassUnloadTest.jar ClassUnloadTest "${OTHERDIR}" Bar.jar) |