< prev index next >

test/java/lang/instrument/appendToClassLoaderSearch/ClassUnloadTest.sh

Print this page




   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 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 # @test
  25 # @bug 6173575
  26 # @summary Unit tests for appendToBootstrapClassLoaderSearch and
  27 #   appendToSystemClasLoaderSearch methods.
  28 #
  29 # @modules java.instrument
  30 # @build ClassUnloadTest
  31 # @run shell ClassUnloadTest.sh
  32 
  33 if [ "${TESTSRC}" = "" ]
  34 then
  35   echo "TESTSRC not set.  Test cannot execute.  Failed."
  36   exit 1
  37 fi
  38 
  39 . ${TESTSRC}/CommonSetup.sh
  40 
  41 # Create Foo and Bar
  42 # Foo has a reference to Bar but we deleted Bar so that
  43 # a NoClassDefFoundError will be thrown when Foo tries to
  44 # resolve the reference to Bar
  45 
  46 OTHERDIR="${TESTCLASSES}"/other
  47 mkdir "${OTHERDIR}"
  48 
  49 FOO="${OTHERDIR}"/Foo.java




   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 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 # @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
  37 
  38 . ${TESTSRC}/CommonSetup.sh
  39 
  40 # Create Foo and Bar
  41 # Foo has a reference to Bar but we deleted Bar so that
  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


< prev index next >