test/jdk/java/lang/instrument/appendToClassLoaderSearch/ClassUnloadTest.sh
author hseigel
Wed, 20 Feb 2019 13:21:36 -0500
changeset 53853 7ca9e625d6b2
parent 47216 71c04702a3d5
permissions -rw-r--r--
8214719: Deprecate -Xverify:none option Summary: Deprecate -Xverify:none and -noverify and remove them from tests Reviewed-by: dholmes, mikael
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
#
53853
7ca9e625d6b2 8214719: Deprecate -Xverify:none option
hseigel
parents: 47216
diff changeset
     2
# Copyright (c) 2005, 2019, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
# This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
# under the terms of the GNU General Public License version 2 only, as
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
# published by the Free Software Foundation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
# This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
# version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
# accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
# You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
# 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
#
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 715
diff changeset
    19
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 715
diff changeset
    20
# or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 715
diff changeset
    21
# questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
# @test
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
# @bug 6173575
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
# @summary Unit tests for appendToBootstrapClassLoaderSearch and
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
#   appendToSystemClasLoaderSearch methods.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
# @build ClassUnloadTest
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
# @run shell ClassUnloadTest.sh
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
if [ "${TESTSRC}" = "" ]
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
then
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
  echo "TESTSRC not set.  Test cannot execute.  Failed."
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
  exit 1
90ce3da70b43 Initial load
duke
parents:
diff changeset
    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
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
. ${TESTSRC}/CommonSetup.sh
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
90ce3da70b43 Initial load
duke
parents:
diff changeset
    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
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
# a NoClassDefFoundError will be thrown when Foo tries to
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
# resolve the reference to Bar
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
OTHERDIR="${TESTCLASSES}"/other
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
mkdir "${OTHERDIR}"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
FOO="${OTHERDIR}"/Foo.java
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
BAR="${OTHERDIR}"/Bar.java
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
rm -f "${FOO}" "${BAR}"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
cat << EOF > "${FOO}"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
  public class Foo {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
      public static boolean doSomething() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    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
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
      }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
EOF
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
echo "public class Bar { }" > "${BAR}"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
(cd "${OTHERDIR}"; \
15254
3997a6f357cb 8005978: shell tests need to use the $COMPILEJDK for javac, jar and other tools
alanb
parents: 5506
diff changeset
    68
  $JAVAC ${TESTJAVACOPTS} ${TESTTOOLVMOPTS} Foo.java Bar.java; \
3997a6f357cb 8005978: shell tests need to use the $COMPILEJDK for javac, jar and other tools
alanb
parents: 5506
diff changeset
    69
  $JAR ${TESTTOOLVMOPTS} cf "${OTHERDIR}"/Bar.jar Bar.class; \
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
  rm -f Bar.class)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
# Create the manifest
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
MANIFEST="${TESTCLASSES}"/agent.mf
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
rm -f "${MANIFEST}"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
echo "Premain-Class: ClassUnloadTest" > "${MANIFEST}"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
# Setup test case as an agent
15254
3997a6f357cb 8005978: shell tests need to use the $COMPILEJDK for javac, jar and other tools
alanb
parents: 5506
diff changeset
    78
$JAR ${TESTTOOLVMOPTS} -cfm "${TESTCLASSES}"/ClassUnloadTest.jar "${MANIFEST}" \
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
  -C "${TESTCLASSES}" ClassUnloadTest.class
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
# Finally we run the test
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
(cd "${TESTCLASSES}"; \
53853
7ca9e625d6b2 8214719: Deprecate -Xverify:none option
hseigel
parents: 47216
diff changeset
    83
  $JAVA ${TESTVMOPTS} -Xlog:class+unload \
276
57cf064fc997 6491461: 3/3 TEST: java/lang/instrument .sh tests need to use $TESTVMOPTS in their java commands
dcubed
parents: 2
diff changeset
    84
    -javaagent:ClassUnloadTest.jar ClassUnloadTest "${OTHERDIR}" Bar.jar)